-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (51 loc) · 1.03 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 = {
prefix: 'tw-',
purge: [],
theme: {
extend: {
fontSize: {
'10xl': '8rem',
},
height: {
'17': '4.25rem',
'112': '28rem',
'125': '31.25rem',
},
width: {
'59': '14.75rem',
'65': '16.25rem',
'content': 'calc(100% - 260px)'
},
maxWidth: {
'5xs': '4rem',
'288': '72rem',
},
minWidth: {
'20': '5rem',
},
colors: {
primary: '#ff9800',
secondary: '#4caf50',
accent: '#242145',
error: '#f44336',
success: '#4caf50',
danger: '#f44336',
warning: '#ef6c00',
dark: '#3b3671',
light: '#e8eaf1'
},
inset: {
'3': '0.75rem',
'24': '6rem'
},
boxShadow: {
'lg-r': '15px 0px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)'
}
},
fontFamily: {
'roboto': ['Roboto', 'Helvetica', 'Arial', 'sans-serif'],
},
},
variants: {},
plugins: [],
}