moving-leads-form / src / admin / vite / tailwind.config.js
tailwind.config.js
Raw
module.exports = {
  purge: ["./src/**/*.svelte", "./src/**/*.html"],
  darkMode: false, // or 'media' or 'class'
  important: true,
  theme: {
    extend: {},
  },
  variants: {
    extend: {
      backgroundColor: ["odd", "even", "active"],
      textColor: ["active", "focus"],
    },
  },
  plugins: [],
};