tailwind.config.js 508 B

1234567891011121314151617181920212223
  1. import { nextui } from "@nextui-org/react";
  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. "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
  8. ],
  9. theme: {
  10. extend: {
  11. fontFamily: {
  12. sans: ["Inter", "sans-serif"],
  13. poppins: ["Poppins", "sans-serif"],
  14. },
  15. colors: {
  16. background: "var(--background)",
  17. foreground: "var(--foreground)",
  18. },
  19. },
  20. },
  21. plugins: [nextui()],
  22. };