tailwind.config.js 378 B

1234567891011121314151617
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  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. };