-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
52 lines (52 loc) · 1.34 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
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
button: '#00B96E',
border: {
primary: '#979797',
},
fill: {
primary: '#FBFDFD',
secondary: '#EDEDED',
tertiary: '#FFFAFA',
},
font: {
primary: '#8e8e93',
secondary: '#4C4F59',
tertiary: '#8F929D',
quarternary: '#323232',
quinary: '#A3A3A8',
senary: '#484C51',
septenary: '#999EB1',
},
},
fontSize: {
xxs: ['0.625rem', '1rem'],
},
height: {
'45px': '45px',
},
margin: {
'1px': '1px',
},
padding: {
'29px': '29px',
},
width: {
'334px': '334px',
'45px': '45px',
},
},
},
variants: {
extend: {
borderWidth: ['hover', 'active', 'focus', 'last'],
margin: ['last'],
padding: ['first'],
},
},
plugins: [],
}