2024-02-18 21:14:41 +07:00
|
|
|
import type { Config } from "tailwindcss"
|
2024-02-18 16:03:57 +07:00
|
|
|
|
2024-02-18 21:14:41 +07:00
|
|
|
const config = {
|
|
|
|
darkMode: ["class"],
|
2024-02-18 16:03:57 +07:00
|
|
|
content: [
|
2024-02-18 21:14:41 +07:00
|
|
|
'./pages/**/*.{ts,tsx}',
|
|
|
|
'./components/**/*.{ts,tsx}',
|
|
|
|
'./app/**/*.{ts,tsx}',
|
|
|
|
'./src/**/*.{ts,tsx}',
|
2024-02-18 16:03:57 +07:00
|
|
|
],
|
2024-02-18 21:14:41 +07:00
|
|
|
prefix: "",
|
2024-02-18 16:03:57 +07:00
|
|
|
theme: {
|
2024-02-18 21:14:41 +07:00
|
|
|
container: {
|
|
|
|
center: true,
|
|
|
|
padding: "2rem",
|
|
|
|
screens: {
|
|
|
|
"2xl": "1400px",
|
|
|
|
},
|
|
|
|
},
|
2024-02-18 16:03:57 +07:00
|
|
|
extend: {
|
2024-02-18 21:14:41 +07: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-02-18 16:03:57 +07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-02-18 21:14:41 +07:00
|
|
|
plugins: [require("tailwindcss-animate")],
|
|
|
|
} satisfies Config
|
|
|
|
|
|
|
|
export default config
|