This commit is contained in:
六如
2024-11-16 17:19:19 +08:00
parent 00f639ba19
commit 3db05e8bdd
1080 changed files with 24178 additions and 46456 deletions

View File

@@ -0,0 +1,19 @@
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;