code-share/tailwind.config.ts

43 lines
955 B
TypeScript
Raw Normal View History

2024-02-22 12:14:58 +00: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-22 12:14:58 +00:00
"./pages/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./renderer/**/*.{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-23 19:36:10 +07:00
colors: {
background: "#050505",
},
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")],
2024-02-22 12:14:58 +00:00
} satisfies Config;
2024-02-18 21:14:41 +07:00
2024-02-22 12:14:58 +00:00
export default config;