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.

18 lines
455 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. text_color_primary: "var(--el-text-color-primary)",
  14. text_color_regular: "var(--el-text-color-regular)"
  15. }
  16. }
  17. }
  18. };