it/web/tailwind.config.ts
2025-10-25 20:37:00 +02:00

24 lines
841 B
TypeScript

import type { Config } from "tailwindcss";
export default {
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: "hsl(var(--primary))",
"primary-foreground": "hsl(var(--primary-foreground))",
accent: "hsl(var(--accent))",
"accent-foreground": "hsl(var(--accent-foreground))",
muted: "hsl(var(--muted))",
"muted-foreground": "hsl(var(--muted-foreground))",
card: "hsl(var(--card))",
"card-foreground": "hsl(var(--card-foreground))",
},
boxShadow: { soft: "0 6px 24px rgba(0,0,0,0.08)" },
borderRadius: { xl: "1rem", "2xl": "1.25rem" }
},
},
plugins: [],
} satisfies Config;