-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 930 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
screen: {
'3xl': '2000px'
},
extend: {},
backgroundColor: theme => ({
...theme('colors'),
'primary': "#3d5a80",
'secondary': "#98c1d9",
'light': "#e0fbfc",
'tomato': "#ee6c4d",
'dark': "#293241",
'danger': '#ffedea'
}),
borderColor: theme => ({
...theme('colors'),
'primary': "#3d5a80",
'secondary': "#98c1d9",
'light': "#e0fbfc",
'tomato': "#ee6c4d",
'dark': "#293241",
'danger': '#F32013'
}),
textColor: theme => ({
...theme('colors'),
'primary': '#3d5a80',
'secondary': '#98c1d9',
'light': '#e0fbfc',
'tomato': '#ee6c4d',
'dark': '#293241',
'danger': '#F32013'
})
},
variants: {
extend: {},
},
plugins: [],
}