-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (36 loc) · 927 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
const defaultTheme = require('tailwindcss/defaultTheme')
const covinceConfig = require('covince/tailwind.config')
module.exports = {
...covinceConfig,
purge: {
content: [
'./src/**/*.jsx',
'./node_modules/covince/src/**/*.jsx'
]
},
// darkMode: false, // or 'media' or 'class'
theme: {
...covinceConfig.theme,
extend: {
...covinceConfig.theme.extend,
// colors: {
// gray: colors.blueGray,
// primary: colors.blue[700],
// heading: 'theme("colors.gray.600")',
// subheading: 'theme("colors.gray.500")'
// },
spacing: {
// ...covinceConfig.theme.extend.spacing,
header: defaultTheme.spacing[16],
'header-md': defaultTheme.spacing[32],
'header-overlap': defaultTheme.spacing[12]
}
// gridTemplateRows: {
// '1-full': '100%'
// }
}
},
variants: {
extend: {}
}
}