-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
71 lines (70 loc) · 1.35 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
module.exports = {
theme: {
extend: {
colors: {
gray: {
'100': '#E2E5ED'
},
blue: {
'100': '#EBF3FF',
'200': '#0168FA',
'300': '#071D5D'
},
green: {
'100': '#95E68B'
},
orange: {
'100': '#EFBB74'
},
red: {
'100': '#EF7474'
}
},
spacing: {
'8': '8px',
'10': '10px',
'16': '16px',
'18': '18px',
'32': '32px',
'64': '64px',
'40': '40px',
'80': '80px',
'100': '100px'
},
fontFamily: {
'app': [
'IBM Plex Sans',
'system-ui',
'sans-serif'
]
},
fontSize: {
'10': '10px',
'12': '12px',
'14': '14px',
'16': '16px',
'20': '20px',
'24': '24px',
'34': '34px'
},
transitionProperty: {
'all': 'all'
},
transitionDuration: {
'200': '200ms',
'900': '900ms'
},
transitionTimingFunction: {
'in-out': 'cubic-bezier(0.4, 0, 0.2, 1)'
}
}
},
variants: {
transitionProperty: ['responsive'],
transitionDuration: ['responsive'],
transitionTimingFunction: ['responsive']
},
plugins: [
require('tailwindcss-transitions')()
],
}