-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
44 lines (43 loc) · 916 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
const colors = {
"custom-modal": "#000000cc",
"custom-gray-0": "#151515",
"custom-gray-1": "#222222",
"custom-gray-2": "#333333",
"custom-gray-3": "#4E4F4E",
"custom-gray-4": "#F5F5F5",
"custom-green": "#26CF5E",
"custom-red": "#F24855",
"custom-blue": "#357AE4",
"custom-gold": "#E5B25D",
"custom-silver": "#D7D7D7",
"custom-bronze":"#AD8A56",
};
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
boxShadow: {
"cool": "inset 0 2px 4px 0 rgba(0, 0, 0, 0.3)"
},
width: {
'15p': "15%",
'70p': "70%",
},
backgroundColor: {
...colors
},
textColor: {
...colors
},
borderColor: {
...colors
}
},
},
variants: {
extend: {},
},
plugins: [],
}