Files
sfera/frontend/sfera-web/tailwind.config.ts
T
2026-05-16 19:03:49 +03:00

35 lines
1.0 KiB
TypeScript

import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: ["./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
card: "hsl(var(--card))",
"card-foreground": "hsl(var(--card-foreground))",
muted: "hsl(var(--muted))",
"muted-foreground": "hsl(var(--muted-foreground))",
border: "hsl(var(--border))",
input: "hsl(var(--input))",
primary: "hsl(var(--primary))",
"primary-foreground": "hsl(var(--primary-foreground))",
secondary: "hsl(var(--secondary))",
"secondary-foreground": "hsl(var(--secondary-foreground))",
destructive: "hsl(var(--destructive))",
warning: "hsl(var(--warning))",
success: "hsl(var(--success))",
info: "hsl(var(--info))"
},
boxShadow: {
soft: "0 12px 32px rgba(15, 23, 42, 0.08)"
}
}
},
plugins: []
};
export default config;