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.

20 lines
577 B

  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. primary_light_9: "var(--el-color-primary-light-9)",
  14. text_color_primary: "var(--el-text-color-primary)",
  15. text_color_regular: "var(--el-text-color-regular)",
  16. text_color_disabled: "var(--el-text-color-disabled)"
  17. }
  18. }
  19. }
  20. };