mirror of
https://github.com/khairul169/db-backup-tool.git
synced 2025-04-28 16:49:34 +07:00
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
import { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
darkMode: ["class"],
|
|
content: ["./src/**/*.{ts,tsx}"],
|
|
prefix: "",
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: "2rem",
|
|
screens: {
|
|
"2xl": "1400px",
|
|
},
|
|
},
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
"50": "#eef2ff",
|
|
"100": "#e0e7ff",
|
|
"200": "#c7d2fe",
|
|
"300": "#a5b4fc",
|
|
"400": "#818cf8",
|
|
"500": "#6366f1",
|
|
"600": "#4f46e5",
|
|
"700": "#4338ca",
|
|
"800": "#3730a3",
|
|
"900": "#312e81",
|
|
"950": "#1e1b4b",
|
|
},
|
|
},
|
|
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",
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
};
|
|
|
|
export default config;
|