this repo has no description
1:root {
2 --space-0: 0;
3 --space-1: 0.125rem;
4 --space-2: 0.25rem;
5 --space-3: 0.5rem;
6 --space-4: 0.75rem;
7 --space-5: 1rem;
8 --space-6: 1.5rem;
9 --space-7: 2rem;
10 --space-8: 3rem;
11 --space-9: 4rem;
12
13 --text-xs: 0.75rem;
14 --text-sm: 0.875rem;
15 --text-base: 1rem;
16 --text-lg: 1.125rem;
17 --text-xl: 1.25rem;
18 --text-2xl: 1.5rem;
19 --text-3xl: 2rem;
20 --text-4xl: 2.5rem;
21
22 --font-normal: 400;
23 --font-medium: 500;
24 --font-semibold: 600;
25 --font-bold: 700;
26
27 --leading-tight: 1.25;
28 --leading-normal: 1.5;
29 --leading-relaxed: 1.75;
30
31 --radius-sm: 3px;
32 --radius-md: 4px;
33 --radius-lg: 6px;
34 --radius-xl: 8px;
35
36 --width-xs: 360px;
37 --width-sm: 480px;
38 --width-md: 760px;
39 --width-lg: 960px;
40 --width-xl: 1100px;
41
42 --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
43 --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
44 --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
45 --shadow-focus: 0 0 0 2px var(--accent-muted);
46
47 --transition-fast: 0.1s ease;
48 --transition-normal: 0.15s ease;
49 --transition-slow: 0.25s ease;
50
51 --bg-primary: #f9fafa;
52 --bg-secondary: #f1f3f3;
53 --bg-tertiary: #e8ebeb;
54 --bg-card: #ffffff;
55 --bg-input: #ffffff;
56 --bg-input-disabled: #f1f3f3;
57
58 --text-primary: #1a1d1d;
59 --text-secondary: #5a605f;
60 --text-muted: #8a8f8e;
61 --text-inverse: #ffffff;
62
63 --border-color: #dce0df;
64 --border-light: #e8ebeb;
65 --border-dark: #c8cecc;
66
67 --accent: #1a1d1d;
68 --accent-hover: #2e3332;
69 --accent-muted: rgba(26, 29, 29, 0.06);
70 --accent-light: #3a403f;
71
72 --secondary: #1a1d1d;
73 --secondary-hover: #2e3332;
74 --secondary-muted: rgba(26, 29, 29, 0.06);
75
76 --success-bg: #dfd;
77 --success-border: #8c8;
78 --success-text: #060;
79
80 --error-bg: #fee;
81 --error-border: #fcc;
82 --error-text: #c00;
83
84 --warning-bg: #ffd;
85 --warning-border: #d4a03c;
86 --warning-text: #856404;
87
88 --border-color-light: var(--border-dark);
89}
90
91@media (prefers-color-scheme: dark) {
92 :root {
93 --bg-primary: #0a0c0c;
94 --bg-secondary: #131616;
95 --bg-tertiary: #1a1d1d;
96 --bg-card: #131616;
97 --bg-input: #1a1d1d;
98 --bg-input-disabled: #131616;
99
100 --text-primary: #e6e8e8;
101 --text-secondary: #9ca1a0;
102 --text-muted: #686d6c;
103 --text-inverse: #0a0c0c;
104
105 --border-color: #282c2b;
106 --border-light: #1f2322;
107 --border-dark: #343938;
108
109 --accent: #e6e8e8;
110 --accent-hover: #ffffff;
111 --accent-muted: rgba(230, 232, 232, 0.1);
112 --accent-light: #ffffff;
113
114 --secondary: #e6e8e8;
115 --secondary-hover: #ffffff;
116 --secondary-muted: rgba(230, 232, 232, 0.1);
117
118 --success-bg: #0f1f1a;
119 --success-border: #1a3d2d;
120 --success-text: #7bc6a0;
121
122 --error-bg: #1f0f0f;
123 --error-border: #3d1a1a;
124 --error-text: #ff8a8a;
125
126 --warning-bg: #1f1a0f;
127 --warning-border: #3d351a;
128 --warning-text: #c6b87b;
129 }
130}