2025-04-25 16:21:15 +08:00
|
|
|
import type { Config } from 'tailwindcss';
|
2024-09-26 09:38:02 +08:00
|
|
|
|
|
|
|
export default {
|
2025-04-25 16:21:15 +08:00
|
|
|
darkMode: 'class',
|
2024-09-26 09:38:02 +08:00
|
|
|
corePlugins: {
|
2025-04-25 16:21:15 +08:00
|
|
|
preflight: false,
|
2024-09-26 09:38:02 +08:00
|
|
|
},
|
2025-04-25 16:21:15 +08:00
|
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
2024-09-26 09:38:02 +08:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
2025-04-25 16:21:15 +08:00
|
|
|
bg_color: 'var(--el-bg-color)',
|
|
|
|
primary: 'var(--el-color-primary)',
|
|
|
|
text_color_primary: 'var(--el-text-color-primary)',
|
|
|
|
text_color_regular: 'var(--el-text-color-regular)',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-09-26 09:38:02 +08:00
|
|
|
} satisfies Config;
|