2019-04-23 23:42:05 +00:00
|
|
|
require('tailwindcss-interaction-variants')
|
|
|
|
|
|
|
|
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-23 23:19:28 +00:00
|
|
|
inherit: 'inherit'
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 23:42:05 +00:00
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
backgroundColor: [...defaultConfig.variants.backgroundColor, 'hocus', 'group-hocus']
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
require('tailwindcss-interaction-variants')(),
|
|
|
|
]
|
2019-04-23 23:19:28 +00:00
|
|
|
}
|