-
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.16 KB
/
Copy pathtailwind.config.ts
File metadata and controls
40 lines (38 loc) · 1.16 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: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./lib/**/*.{ts,tsx}"
],
theme: {
extend: {
colors: {
ink: "var(--color-ink)",
slate: "var(--color-slate)",
cloud: "var(--color-cloud)",
mist: "var(--color-mist)",
sand: "var(--color-sand)",
copper: "var(--color-copper)",
tide: "var(--color-tide)",
success: "var(--color-success)",
warning: "var(--color-warning)",
danger: "var(--color-danger)"
},
fontFamily: {
display: ["var(--font-display)"],
sans: ["var(--font-sans)"]
},
boxShadow: {
quiet: "0 24px 80px rgba(8, 20, 38, 0.10)",
lift: "0 40px 110px rgba(8, 20, 38, 0.18)"
},
backgroundImage: {
"route-grid":
"radial-gradient(circle at 20% 20%, rgba(214, 143, 88, 0.2), transparent 30%), radial-gradient(circle at 80% 10%, rgba(95, 129, 135, 0.2), transparent 24%), linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 42%)"
}
}
},
plugins: []
};
export default config;