mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
26 lines
736 B
TypeScript
26 lines
736 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import { nextui } from "@nextui-org/react";
|
|
|
|
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: {
|
|
extend: {
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic":
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
},
|
|
maxWidth: {
|
|
"8xl": "96rem",
|
|
},
|
|
},
|
|
},
|
|
darkMode: "class",
|
|
plugins: [nextui(), require("@tailwindcss/typography")],
|
|
};
|
|
export default config;
|