tailwind.config.js 488 B

1234567891011121314151617181920
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  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. customPurple: "#6355ff"
  16. }
  17. }
  18. }
  19. };