-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 1.17 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
module.exports = {
content: ["./public/index.html", "./src/**/*.{html,js}"],
darkMode: "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: {
Poppins: ["Poppins", "sans-serif"],
},
},
},
plugins: [],
};