forked from anamdiazs/PlatziTravel
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtailwind.config.js
49 lines (47 loc) · 1.25 KB
/
tailwind.config.js
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
47
48
49
module.exports = {
purge: [
'./src/**/*.html',
],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
backgroundImage: {
'sanFrancisco': "url('../img/sanFrancisco.jpg')",
'sanFranciscoDesktop': "url('../img/sanFranciscoDesktop.jpg')",
'yosemite': "url('../img/yosemite.jpg')",
'LA': "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')",
},
backgroundColor: theme =>({
...theme('colors'),
'principal': '#CC2D4A',
'secondary': '#8FA206',
'tertiary': '#61AEC9',
}),
textColor:{
'principal': '#CC2D4A',
'secondary': '#8FA206',
'tertiary': '#61AEC9',
},
fontFamily: {
Montserrat: ["Montserrat", "sans-serif"],
},
},
},
variants: {
width: ["responsive", "hover", "focus"],
extend: {
},
},
plugins: [],
}