tailwind.config.ts 470 B

12345678910111213141516171819
  1. import type { Config } from "tailwindcss";
  2. export default {
  3. darkMode: "class",
  4. corePlugins: {
  5. preflight: false
  6. },
  7. content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
  8. theme: {
  9. extend: {
  10. colors: {
  11. bg_color: "var(--el-bg-color)",
  12. primary: "var(--el-color-primary)",
  13. text_color_primary: "var(--el-text-color-primary)",
  14. text_color_regular: "var(--el-text-color-regular)"
  15. }
  16. }
  17. }
  18. } satisfies Config;