Files
winninghunter/tailwind.config.ts
T
2026-07-07 20:40:43 +03:00

23 lines
387 B
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
brand: {
DEFAULT: "#6d28d9",
fg: "#ffffff"
}
},
boxShadow: {
soft: "0 20px 60px rgba(15, 23, 42, 0.08)"
}
}
},
plugins: []
};
export default config;