-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 1 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
50
51
module.exports = {
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
zIndex: {
'-1': '-1',
'-2': '-2',
'1': '1'
}
},
gradientColorStops: theme => ({
...theme('colors'),
'start': '#10161D',
'middle': '#161E26',
'end': '#1D262F',
}),
backgroundColor: {
'block': '#DFEBF6',
'dblock':'#10161D',
'dtag': '#3A5F74',
'dcontent': '#0E141B',
'dbnewblock':'#1D262F'
},
textColor: {
'highlight': '#4433ff',
'grey': 'rgb(102,102,102)',
'base': '#2A2A2A',
'title': '#E60067',
'notes-title': '#21232c',
'notes': '#0a0c10',
'notes-grey': '#636363',
'dbase':'#FFFFFF'
},
width: {
'1024px': '1024px',
'200px': '200px',
'100%': '100%',
'90%': '90%',
'240px': '240px',
'screen': '100vw'
},
lineHeight: {
'12': '3rem',
'6': '1.5rem'
},
},
variants: {
extend: {},
},
plugins: [],
}