-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
65 lines (54 loc) · 1.02 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
module.exports = {
theme: {
extend: {
colors: {
white: {
default: '#fff',
'20': 'rgba(255, 255, 255, .2)'
},
black: {
default: '#2b303a',
'90': 'rgba(0, 0, 0, 0.9)'
},
gray: '#566075',
blue: '#4c33fb'
},
spacing: {
'150': '150%'
},
borderWidth: {
'5': '5px'
},
boxShadow: {
default: '0 8px 45px rgba(0, 0, 0, 0.3)',
lighter: '0 8px 45px rgba(0, 0, 0, 0.15)'
},
fontFamily: {
sans: ['Nunito', 'sans-serif']
},
height: {
'24px': '24px',
'300px': '300px'
},
inset: {
'50': '50%',
'100': '100%'
},
margin: {
'-2px': '-2px'
},
width: {
'30px': '30px',
'120px': '120px',
'185px': '185px',
'280px': '280px',
'490px': '490px'
},
maxWidth: {
'3/5': '60%'
}
}
},
variants: {},
plugins: []
}