tailwind.config.js 455 B

123456789101112131415161718
  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. }
  16. }
  17. }
  18. };