You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
470 B
19 lines
470 B
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;
|