-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (47 loc) · 923 Bytes
/
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
const defaultTheme = require('tailwindcss/defaultTheme');
const brandColors = {
green: '#2b322b',
};
const systemColors = {
blue: '#007aff',
'body-bg': ''
};
module.exports = {
purge: {
content: ['**/*.liquid', './src/js/**/*.js'],
options: {
safelist: [/^uppy-/]
}
},
theme: {
container: {
center: true,
padding: {
default: '1rem',
sm: '1rem',
lg: '0',
xl: '0',
},
},
extend: {
colors: {
ex: {
...brandColors,
...systemColors,
},
},
},
},
variants: {
borderWidth: ['responsive', 'hover', 'last'],
padding: ['responsive', 'last'],
margin: ['responsive', 'last']
},
plugins: [require('@tailwindcss/custom-forms')],
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
defaultLineHeights: true,
standardFontWeights: true
}
};