| 1234567891011121314151617181920212223 |
- import { nextui } from "@nextui-org/react";
- module.exports = {
- content: [
- "./pages/**/*.{js,ts,jsx,tsx,mdx}",
- "./components/**/*.{js,ts,jsx,tsx,mdx}",
- "./app/**/*.{js,ts,jsx,tsx,mdx}",
- "./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
- ],
- theme: {
- extend: {
- fontFamily: {
- sans: ["Inter", "sans-serif"],
- poppins: ["Poppins", "sans-serif"],
- },
- colors: {
- background: "var(--background)",
- foreground: "var(--foreground)",
- },
- },
- },
- plugins: [nextui()],
- };
|