mirror of
https://github.com/Terreii/andromeda-viewer.git
synced 2026-08-14 09:01:59 +00:00
23 lines
438 B
JavaScript
23 lines
438 B
JavaScript
module.exports = {
|
|
purge: [
|
|
'./public/**/*.html',
|
|
'./src/components/**/*.js',
|
|
'./src/components/**/*.tsx',
|
|
'./src/components/**/*.jsx'
|
|
],
|
|
darkMode: false, // it should be 'media' once enabled
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
variants: {
|
|
extend: {
|
|
backgroundColor: ['even', 'active'],
|
|
opacity: ['disabled'],
|
|
textColor: ['visited']
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms')
|
|
]
|
|
}
|