-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
48 lines (48 loc) · 1.34 KB
/
tailwind.config.ts
File metadata and controls
48 lines (48 loc) · 1.34 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
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
mono: ["Inter", "ui-monospace", "SFMono-Regular", "monospace"],
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"],
},
colors: {
background: {
DEFAULT: "var(--background)",
secondary: "var(--background-secondary)",
settings: "var(--background-settings)",
},
interactive: {
DEFAULT: "var(--interactive)",
secondary: "var(--interactive-secondary)",
},
border: {
DEFAULT: "var(--border)",
light: "var(--border-light)",
},
white: {
soft: "var(--white-soft)",
hover: "var(--white-hover)",
},
accent: {
DEFAULT: "var(--accent)",
secondary: "var(--accent-secondary)",
},
text: {
DEFAULT: "var(--text)",
secondary: "var(--text-secondary)",
muted: "var(--text-muted)",
placeholder: "var(--text-placeholder)",
},
dropdown: "var(--dropdown)",
},
boxShadow: {
glow: "0 0 20px rgba(0, 212, 255, 0.15)",
"glow-strong": "0 0 30px rgba(0, 212, 255, 0.25)",
},
borderRadius: {
DEFAULT: "6px",
},
},
},
};