-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
66 lines (64 loc) · 2.09 KB
/
Copy pathtailwind.config.ts
File metadata and controls
66 lines (64 loc) · 2.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
border: "rgb(var(--border) / <alpha-value>)",
input: "rgb(var(--border) / <alpha-value>)",
ring: "rgb(var(--ring) / <alpha-value>)",
background: "rgb(var(--background) / <alpha-value>)",
foreground: "rgb(var(--foreground) / <alpha-value>)",
primary: {
DEFAULT: "rgb(var(--primary) / <alpha-value>)",
foreground: "rgb(var(--primary-foreground) / <alpha-value>)",
},
secondary: {
DEFAULT: "rgb(var(--secondary) / <alpha-value>)",
foreground: "rgb(var(--secondary-foreground) / <alpha-value>)",
},
muted: {
DEFAULT: "rgb(var(--muted) / <alpha-value>)",
foreground: "rgb(var(--muted-foreground) / <alpha-value>)",
},
popover: {
DEFAULT: "rgb(var(--surface) / <alpha-value>)",
foreground: "rgb(var(--foreground) / <alpha-value>)",
},
accent: {
DEFAULT: "rgb(var(--muted) / <alpha-value>)",
foreground: "rgb(var(--foreground) / <alpha-value>)",
},
surface: "rgb(var(--surface) / <alpha-value>)",
card: {
DEFAULT: "rgb(var(--surface) / <alpha-value>)",
foreground: "rgb(var(--foreground) / <alpha-value>)",
},
success: "rgb(var(--success) / <alpha-value>)",
warning: "rgb(var(--warning) / <alpha-value>)",
error: "rgb(var(--error) / <alpha-value>)",
},
fontFamily: {
display: ["'General Sans'", "sans-serif"],
sans: ["'DM Sans'", "sans-serif"],
mono: ["'JetBrains Mono'", "monospace"],
},
borderRadius: {
lg: "12px",
md: "8px",
sm: "6px",
},
boxShadow: {
card: "0 8px 30px rgba(0,0,0,0.08)",
glow: "0 4px 12px rgba(99,102,241,0.35)",
},
letterSpacing: {
display: "-0.04em",
},
maxWidth: {
layout: "1280px",
},
},
},
plugins: [],
} satisfies Config;