-
Notifications
You must be signed in to change notification settings - Fork 9k
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
34 lines (32 loc) · 1.09 KB
/
Copy pathtailwind.config.ts
File metadata and controls
34 lines (32 loc) · 1.09 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: ["./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./lib/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
muted: "hsl(var(--muted))",
"muted-foreground": "hsl(var(--muted-foreground))",
border: "hsl(var(--border))",
surface: "hsl(var(--surface))",
primary: "hsl(var(--primary))",
"primary-foreground": "hsl(var(--primary-foreground))",
accent: "hsl(var(--accent))",
"accent-foreground": "hsl(var(--accent-foreground))",
warning: "hsl(var(--warning))",
danger: "hsl(var(--danger))"
},
fontFamily: {
sans: ["var(--font-sans)", "Inter", "ui-sans-serif", "system-ui", "sans-serif"],
mono: ["var(--font-mono)", "ui-monospace", "SFMono-Regular", "Consolas", "monospace"]
},
boxShadow: {
radar: "0 16px 40px rgba(0, 0, 0, 0.06)"
}
}
},
plugins: []
};
export default config;