tailwind.config.ts 526 B

12345678910111213141516171819202122
  1. import type { Config } from "tailwindcss";
  2. import { heroui } from "@heroui/react";
  3. const config: Config = {
  4. content: [
  5. "./pages/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./components/**/*.{js,ts,jsx,tsx,mdx}",
  7. "./app/**/*.{js,ts,jsx,tsx,mdx}",
  8. "./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
  9. ],
  10. theme: {
  11. extend: {
  12. colors: {
  13. background: "var(--background)",
  14. foreground: "var(--foreground)",
  15. },
  16. },
  17. },
  18. darkMode: "class",
  19. plugins: [heroui()],
  20. };
  21. export default config;