-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
executable file
·84 lines (76 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = {
// important: true,
theme: {
inset: {
'0': 0,
auto: 'auto',
'1/2': '50%',
full: '100%'
},
extend: {
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
colors: {
sidemenu: {
default: '#11142E',
hover: '#32354d',
text: '#CFCED3'
},
header: {
default: '#303555',
text: '#979aaa'
},
main: {
dark: '#555974',
default: '#797E94',
light: '#9397A9',
},
url: {
title: '#1A0DAB',
site: '#006621'
},
formControl: {
input: {
default: '#EDEDF1',
hover: '#a0a4bf'
},
lightgray: '#EDEDF1'
},
button: {
disabled: '#CCC'
},
treemapColor: {
min: '#00FF00',
max: '#FF0000',
background: '#edf2f7'
},
background: '#F7F6FC',
dark: '#555974',
info: '#524BCD',
warning: '#FDA362',
success: '#01AA85',
danger: '#DA3D4C',
redPrimary: '#C92C78',
redPrimaryHover: '#96215A'
},
width: {
'9/20': '45%',
'11/20': '55%'
},
config: {
angle: '0.6rem',
sidebarWidth: '18rem',
sidebarMiniWidth: '5rem',
headerHeight: '5rem',
logoHeight: '5.6rem',
}
}
},
variants: {
backgroundColor: ['responsive', 'hover', 'focus'],
},
plugins: []
}