mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
23 lines
391 B
JavaScript
Vendored
23 lines
391 B
JavaScript
Vendored
module.exports = {
|
|
purge: [],
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
theme: {
|
|
extend: {
|
|
borderWidth: {
|
|
'3': '3px',
|
|
},
|
|
borderColor: theme => ({
|
|
'dark-background': '#151515',
|
|
'dark-secondary': '#1e2024',
|
|
}),
|
|
fontSize: {
|
|
tiny: ['11px', '16px'],
|
|
}
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|