-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
46 lines (46 loc) · 1.29 KB
/
tailwind.config.js
File metadata and controls
46 lines (46 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/**/*.{html,js}"],
darkMode: "class",
theme: {
backgroundColor: theme => ({
...theme('colors'),
'primary':"#CC2D4A",
'secondary':"#8FA206",
'tertiary':"#61AEC9",
}),
textColor: theme => ({
...theme('colors'),
primary: '#CC2D4A',
secondary: '#8FA206',
terciary: '#61AEC9',
}),
fontFamily: {
Nunito: ['Nunito', 'sans-serif'],
},
extend: {
backgroundImage: {
'sanFrancisco': "url('../img/sanFrancisco.jpg')",
'sanFranciscoDesktop': "url('../img/sanFranciscoDesktop.jpg')",
'yosemite': "url('../img/yosemite.jpg')",
'angeles': "url('../img/LA.jpg')",
'seattle': "url('../img/seattle.jpg')",
'new_york': "url('../img/new_york.jpg')",
'norway': "url('../img/norway.jpg')",
'sydney': "url('../img/sydney.jpg')",
'miami': "url('../img/miami.jpg')",
'switzerland': "url('../img/switzerland.jpg')",
'bali': "url('../img/bali.jpg')",
'norway': "url('../img/norway.jpg')",
'chicago': "url('../img/chicago.jpg')",
'europe': "url('../img/europe.jpg')",
'iceland': "url('../img/iceland.jpg')"
}
},
},
variants: {
width: ['responsive', 'hover', 'focus'],
extend: {}
},
plugins: [],
}