JavaProjectRepo/frontend/tailwind.config.js

16 lines
278 B
JavaScript
Raw Normal View History

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