FileManage/web/tailwind.config.js

16 lines
278 B
JavaScript
Raw Permalink Normal View History

2025-01-10 14:16:18 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
backgroundColor: theme => ({
...theme('colors'),
"sidebar-logo":'#2b2f3a'
})
},
plugins: [],
}