2024-05-25 10:30:26 +00:00
|
|
|
import type { Config } from "tailwindcss"
|
2024-05-23 04:47:36 +00:00
|
|
|
|
2024-05-25 10:30:26 +00:00
|
|
|
const config = {
|
|
|
|
darkMode: ["class"],
|
|
|
|
content: [
|
|
|
|
'./pages/**/*.{ts,tsx}',
|
|
|
|
'./components/**/*.{ts,tsx}',
|
|
|
|
'./app/**/*.{ts,tsx}',
|
|
|
|
'./src/**/*.{ts,tsx}',
|
2024-05-28 10:28:09 +00:00
|
|
|
],
|
2024-05-25 10:30:26 +00:00
|
|
|
prefix: "",
|
2024-05-23 04:47:36 +00:00
|
|
|
theme: {
|
2024-05-25 10:30:26 +00:00
|
|
|
container: {
|
|
|
|
center: true,
|
|
|
|
padding: "2rem",
|
|
|
|
screens: {
|
|
|
|
"2xl": "1400px",
|
|
|
|
},
|
|
|
|
},
|
2024-05-23 04:47:36 +00:00
|
|
|
extend: {
|
2024-05-25 10:30:26 +00:00
|
|
|
keyframes: {
|
|
|
|
"accordion-down": {
|
|
|
|
from: { height: "0" },
|
|
|
|
to: { height: "var(--radix-accordion-content-height)" },
|
|
|
|
},
|
|
|
|
"accordion-up": {
|
|
|
|
from: { height: "var(--radix-accordion-content-height)" },
|
|
|
|
to: { height: "0" },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
animation: {
|
|
|
|
"accordion-down": "accordion-down 0.2s ease-out",
|
|
|
|
"accordion-up": "accordion-up 0.2s ease-out",
|
2024-05-23 04:47:36 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-05-25 10:30:26 +00:00
|
|
|
plugins: [require("tailwindcss-animate")],
|
|
|
|
} satisfies Config
|
|
|
|
|
|
|
|
export default config
|