tailwind.config.ts 393 B

123456789101112131415161718
  1. import type { Config } from "tailwindcss";
  2. export default {
  3. content: [
  4. "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  7. ],
  8. theme: {
  9. extend: {
  10. colors: {
  11. background: "var(--background)",
  12. foreground: "var(--foreground)",
  13. },
  14. },
  15. },
  16. plugins: [],
  17. } satisfies Config;