2019-04-23 23:42:05 +00:00
|
|
|
const defaultConfig = require('tailwindcss/defaultConfig')
|
|
|
|
|
2019-04-23 23:19:28 +00:00
|
|
|
module.exports = {
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2019-04-23 23:24:10 +00:00
|
|
|
charade: '#2a293c',
|
2019-04-24 00:03:34 +00:00
|
|
|
'gun-powder': '#414054',
|
2019-04-23 23:19:28 +00:00
|
|
|
inherit: 'inherit'
|
2019-04-28 17:38:09 +00:00
|
|
|
},
|
|
|
|
fontFamily: {
|
|
|
|
sans: [
|
|
|
|
'Open Sans',
|
|
|
|
...defaultConfig.theme.fontFamily.sans
|
|
|
|
]
|
2019-04-23 23:19:28 +00:00
|
|
|
}
|
|
|
|
}
|
2019-04-23 23:42:05 +00:00
|
|
|
},
|
|
|
|
variants: {
|
2019-04-24 00:03:34 +00:00
|
|
|
backgroundColor: [...defaultConfig.variants.backgroundColor, 'hocus', 'group-hocus'],
|
2019-04-24 09:33:06 +00:00
|
|
|
textDecoration: [...defaultConfig.variants.textDecoration, 'group-hover', 'hocus', 'group-hocus']
|
2019-04-23 23:42:05 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
2019-04-28 17:24:41 +00:00
|
|
|
require('tailwindcss-spaced-items')({ values: defaultConfig.theme.spacing }),
|
2019-04-23 23:42:05 +00:00
|
|
|
require('tailwindcss-interaction-variants')(),
|
2019-04-28 17:56:28 +00:00
|
|
|
require('tailwindcss-visuallyhidden')(),
|
2019-04-23 23:42:05 +00:00
|
|
|
]
|
2019-04-23 23:19:28 +00:00
|
|
|
}
|