-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
64 lines (56 loc) · 1.17 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
module.exports = {
theme: {
extend: {
colors: {
page: '#f3f4f6',
panel: '#fff',
frame: '#e2e8f0',
content: {
DEFAULT: '#374151',
inverted: '#fff',
sidenote: '#4a586d'
},
interaction: {
DEFAULT: '#1d4ed8',
hover: '#3466e3',
disabled: '#bfdbfe'
},
danger: {
DEFAULT: '#b91c1c',
hover: '#ca3a31',
disabled: '#fecaca'
},
confirmation: {
DEFAULT: '#047857',
hover: '#098f69',
disabled: '#bbddd3'
}
}
},
container: {
center: true,
padding: {
default: '1rem',
sm: '1rem',
lg: '0',
xl: '0',
},
},
borderColor: theme => ({
...theme('colors'),
DEFAULT: theme('colors.frame')
})
},
variants: {
borderWidth: ['responsive', 'hover', 'last'],
padding: ['responsive', 'last'],
margin: ['responsive', 'first', 'last']
},
plugins: [require('@tailwindcss/forms')],
purge: {
content: ['**/*.liquid', './src/js/**/*.js'],
options: {
safelist: [/^uppy-/]
}
}
};