tailwind.config.ts 946 B

12345678910111213141516171819202122232425262728293031323334
  1. import { nextui } from "@nextui-org/react";
  2. import type { Config } from "tailwindcss";
  3. const config: Config = {
  4. content: [
  5. "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
  6. "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
  7. "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  8. "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
  9. ],
  10. theme: {
  11. screens: {
  12. sm: "480px",
  13. md: "768px",
  14. lg: "976px",
  15. xl: "1440px",
  16. },
  17. extend: {
  18. backgroundImage: {
  19. "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
  20. "gradient-conic":
  21. "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
  22. },
  23. },
  24. },
  25. plugins: [
  26. nextui({
  27. themes: {
  28. dark: {},
  29. light: {},
  30. },
  31. }),
  32. ],
  33. };
  34. export default config;