This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/tailwind.config.js

21 lines
417 B
JavaScript
Raw Normal View History

require('tailwindcss-interaction-variants')
const defaultConfig = require('tailwindcss/defaultConfig')
2019-04-24 00:19:28 +01:00
module.exports = {
theme: {
extend: {
colors: {
2019-04-24 00:24:10 +01:00
charade: '#2a293c',
2019-04-24 00:19:28 +01:00
inherit: 'inherit'
}
}
},
variants: {
backgroundColor: [...defaultConfig.variants.backgroundColor, 'hocus', 'group-hocus']
},
plugins: [
require('tailwindcss-interaction-variants')(),
]
2019-04-24 00:19:28 +01:00
}