tailwind.config.js 366 B

1234567891011121314151617
  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: [
  4. "./pages/**/*.{js,ts,jsx,tsx,mdx}",
  5. "./components/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./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. };