Files
vuefilemanager/tailwind.config.js
2021-10-27 09:53:59 +02:00

35 lines
722 B
JavaScript
Vendored

module.exports = {
purge: { content: ['./resources/js/**/*.{js,jsx,ts,tsx,vue}',] },
darkMode: 'class', // or 'media' or 'class'
theme: {
debugScreens: {
position: ['bottom', 'right'],
},
extend: {
scale: {
'97': '.97',
},
borderWidth: {
'3': '3px',
},
borderColor: theme => ({
'dark-background': '#151515',
'dark-secondary': '#1e2024',
}),
fontSize: {
tiny: ['11px', '16px'],
},
backgroundColor: theme => ({
'dark-background': '#151515',
'dark-foreground': '#1e2024',
}),
},
},
variants: {
extend: {},
},
plugins: [
require('tailwindcss-debug-screens'),
],
}