-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (38 loc) · 1.23 KB
/
tailwind.config.ts
File metadata and controls
40 lines (38 loc) · 1.23 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
36
37
38
39
40
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/app/**/*.{ts,tsx}",
"./src/components/**/*.{ts,tsx}",
"./src/features/**/*.{ts,tsx}",
"./src/lib/**/*.{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))",
primary: "hsl(var(--primary))",
"primary-foreground": "hsl(var(--primary-foreground))",
accent: "hsl(var(--accent))",
"accent-foreground": "hsl(var(--accent-foreground))",
success: "hsl(var(--success))",
warning: "hsl(var(--warning))",
danger: "hsl(var(--danger))",
},
boxShadow: {
soft: "0 16px 40px rgba(15, 23, 42, 0.08)",
},
backgroundImage: {
"hero-grid":
"radial-gradient(circle at top, rgba(245, 158, 11, 0.14), transparent 20%), linear-gradient(to bottom right, rgba(15, 23, 42, 0.08), transparent 45%)",
},
},
},
plugins: [],
};
export default config;