-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
35 lines (34 loc) · 1.24 KB
/
tailwind.config.ts
File metadata and controls
35 lines (34 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-sans)", "system-ui", "sans-serif"],
display: ["var(--font-display)", "var(--font-sans)", "system-ui", "sans-serif"],
mono: ["var(--font-mono)", "ui-monospace", "SFMono-Regular", "Menlo", "monospace"],
},
colors: {
bg: "hsl(var(--bg))",
bg2: "hsl(var(--bg2))",
card: "hsl(var(--card))",
card2: "hsl(var(--card2))",
border: "hsl(var(--border))",
fg: "hsl(var(--fg))",
muted: "hsl(var(--muted))",
muted2: "hsl(var(--muted2))",
accent: "hsl(var(--accent))",
accent2: "hsl(var(--accent2))",
danger: "hsl(var(--danger))",
warn: "hsl(var(--warn))",
success: "hsl(var(--success))",
},
boxShadow: {
soft: "0 6px 16px -6px hsl(220 40% 2% / 0.24), 0 2px 4px -2px hsl(220 40% 2% / 0.12)",
glow: "0 0 0 1px hsl(var(--accent) / 0.35), 0 8px 20px -6px hsl(var(--accent) / 0.28)",
lift: "0 2px 6px -2px hsl(220 40% 2% / 0.18), 0 8px 20px -8px hsl(220 40% 2% / 0.14)",
},
}
},
plugins: []
} satisfies Config;