-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (49 loc) · 986 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{ts,tsx}",
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js"
],
darkMode: true,
theme: {
extend: {
screens: {
mobile: {
max: "1023px"
},
desktop: "1024px"
},
colors: {
header: {
background: '#455A64',
color: '#ECEFF1'
},
home: {
banner: {
color: '#ECEFF1',
filter: '#455A64A1'
}
},
borders: {
color: '#455A64'
},
button: {
primary: {
background: '#455A64',
color: '#ECEFF1'
},
secondary: {
background: '#ECEFF1',
color: '#455A64',
},
danger: {
background: '#cc0a0a',
color: '#ECEFF1'
}
}
}
},
},
plugins: [],
}