mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-11-29 17:57:37 +08:00
20 lines
470 B
TypeScript
20 lines
470 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
darkMode: "class",
|
|
corePlugins: {
|
|
preflight: false
|
|
},
|
|
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
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)"
|
|
}
|
|
}
|
|
}
|
|
} satisfies Config;
|