12345678910111213141516171819202122232425262728293031323334 |
- import { nextui } from "@nextui-org/react";
- import type { Config } from "tailwindcss";
- const config: Config = {
- content: [
- "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
- "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
- "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
- ],
- theme: {
- screens: {
- sm: "480px",
- md: "768px",
- lg: "976px",
- xl: "1440px",
- },
- extend: {
- backgroundImage: {
- "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
- "gradient-conic":
- "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
- },
- },
- },
- plugins: [
- nextui({
- themes: {
- dark: {},
- light: {},
- },
- }),
- ],
- };
- export default config;
|