-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
51 lines (51 loc) · 1.25 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 = {
theme: {
fontSize: {
'base': '1rem',
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.5rem',
'3xl': '2rem',
'4xl': '2.5rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
'8xl': '6rem'
},
backgroundColor: theme => ({
'primary': '#f3f3f3',
'secondary': '#ff896b'
}),
textColor: theme => ({
...theme('colors'),
'primary': '#f3f3f3',
'secondary': '#ff896b',
}),
minWidth: {
'0': '0',
'0.5': '0.5rem',
'0.8': '0.8rem',
'1' : '1rem',
'2' : '2rem',
'10' : '10rem',
'15' : '15rem',
'20': '20rem',
'24': '24rem',
'full': '100%',
},
minHeight: {
'0': '0',
'10' : '10rem',
'15' : '15rem',
'20': '20rem',
'24': '24rem',
'full': '100%',
'screen': '100vh'
},
borderColor: theme => ({
...theme('colors'),
'primary': '#f3f3f3',
'secondary': '#ff896b',
})
}
};