-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
75 lines (73 loc) · 1.61 KB
/
tailwind.config.ts
File metadata and controls
75 lines (73 loc) · 1.61 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
66
67
68
69
70
71
72
73
74
75
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
void: {
950: "#0c0c0f",
900: "#141417",
800: "#1c1c20",
700: "#27272a",
600: "#2e2e32",
500: "#3f3f46",
400: "#52525b",
300: "#71717a",
},
ink: {
DEFAULT: "#e4e4e7",
muted: "#a1a1aa",
faint: "#71717a",
ghost: "#52525b",
dim: "#3f3f46",
},
accent: {
DEFAULT: "#6366f1",
glow: "#818cf8",
dim: "rgba(99, 102, 241, 0.06)",
},
signal: {
neutral: "#71717a",
info: "#3b82f6",
warning: "#f59e0b",
success: "#22c55e",
error: "#ef4444",
},
},
fontFamily: {
sans: [
"Inter",
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"sans-serif",
],
mono: [
"JetBrains Mono",
"SF Mono",
"Monaco",
"Cascadia Code",
"Courier New",
"monospace",
],
},
animation: {
"status-pulse": "status-pulse 2s ease-in-out infinite",
},
keyframes: {
"status-pulse": {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.5" },
},
},
},
},
plugins: [],
};
export default config;