@stealthscale/theme-ember 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -0
- package/dist/base.css +59 -0
- package/dist/density.css +33 -0
- package/dist/fonts.css +4 -0
- package/dist/index.css +7 -0
- package/dist/index.d.mts +12 -0
- package/dist/index.mjs +57 -0
- package/dist/motion.css +198 -0
- package/dist/scoped.css +309 -0
- package/dist/tailwind.css +4 -0
- package/dist/tokens.css +511 -0
- package/dist/values.d.mts +4 -0
- package/dist/values.mjs +520 -0
- package/package.json +60 -0
package/dist/tokens.css
ADDED
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
/* Generated by @stealthscale/core-theme. Do not edit. */
|
|
2
|
+
@theme inline {
|
|
3
|
+
--color-*: initial;
|
|
4
|
+
--font-*: initial;
|
|
5
|
+
--text-*: initial;
|
|
6
|
+
--font-weight-*: initial;
|
|
7
|
+
--tracking-*: initial;
|
|
8
|
+
--leading-*: initial;
|
|
9
|
+
--radius-*: initial;
|
|
10
|
+
--shadow-*: initial;
|
|
11
|
+
--inset-shadow-*: initial;
|
|
12
|
+
--drop-shadow-*: initial;
|
|
13
|
+
--text-shadow-*: initial;
|
|
14
|
+
--blur-*: initial;
|
|
15
|
+
--ease-*: initial;
|
|
16
|
+
--perspective-*: initial;
|
|
17
|
+
--height-*: initial;
|
|
18
|
+
--size-*: initial;
|
|
19
|
+
|
|
20
|
+
--color-white: #fff;
|
|
21
|
+
--color-black: #000;
|
|
22
|
+
--color-background: var(--background);
|
|
23
|
+
--color-foreground: var(--foreground);
|
|
24
|
+
--color-card: var(--card);
|
|
25
|
+
--color-card-foreground: var(--card-foreground);
|
|
26
|
+
--color-popover: var(--popover);
|
|
27
|
+
--color-popover-foreground: var(--popover-foreground);
|
|
28
|
+
--color-primary: var(--primary);
|
|
29
|
+
--color-primary-foreground: var(--primary-foreground);
|
|
30
|
+
--color-primary-ink: var(--primary-ink);
|
|
31
|
+
--color-secondary: var(--secondary);
|
|
32
|
+
--color-secondary-foreground: var(--secondary-foreground);
|
|
33
|
+
--color-muted: var(--muted);
|
|
34
|
+
--color-muted-foreground: var(--muted-foreground);
|
|
35
|
+
--color-accent: var(--accent);
|
|
36
|
+
--color-accent-foreground: var(--accent-foreground);
|
|
37
|
+
--color-destructive: var(--destructive);
|
|
38
|
+
--color-destructive-foreground: var(--destructive-foreground);
|
|
39
|
+
--color-destructive-ink: var(--destructive-ink);
|
|
40
|
+
--color-success: var(--success);
|
|
41
|
+
--color-success-foreground: var(--success-foreground);
|
|
42
|
+
--color-success-ink: var(--success-ink);
|
|
43
|
+
--color-warning: var(--warning);
|
|
44
|
+
--color-warning-foreground: var(--warning-foreground);
|
|
45
|
+
--color-warning-ink: var(--warning-ink);
|
|
46
|
+
--color-info: var(--info);
|
|
47
|
+
--color-info-foreground: var(--info-foreground);
|
|
48
|
+
--color-info-ink: var(--info-ink);
|
|
49
|
+
--color-border: var(--border);
|
|
50
|
+
--color-input: var(--input);
|
|
51
|
+
--color-ring: var(--ring);
|
|
52
|
+
--color-chart-1: var(--chart-1);
|
|
53
|
+
--color-chart-2: var(--chart-2);
|
|
54
|
+
--color-chart-3: var(--chart-3);
|
|
55
|
+
--color-chart-4: var(--chart-4);
|
|
56
|
+
--color-chart-5: var(--chart-5);
|
|
57
|
+
--color-chart-positive: var(--chart-positive);
|
|
58
|
+
--color-chart-caution: var(--chart-caution);
|
|
59
|
+
--color-chart-negative: var(--chart-negative);
|
|
60
|
+
--color-code-comment: var(--code-comment);
|
|
61
|
+
--color-code-keyword: var(--code-keyword);
|
|
62
|
+
--color-code-string: var(--code-string);
|
|
63
|
+
--color-code-number: var(--code-number);
|
|
64
|
+
--color-code-function: var(--code-function);
|
|
65
|
+
--color-code-type: var(--code-type);
|
|
66
|
+
--color-code-inserted: var(--code-inserted);
|
|
67
|
+
--color-code-deleted: var(--code-deleted);
|
|
68
|
+
--color-sidebar: var(--sidebar);
|
|
69
|
+
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
70
|
+
--color-sidebar-primary: var(--sidebar-primary);
|
|
71
|
+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
72
|
+
--color-sidebar-accent: var(--sidebar-accent);
|
|
73
|
+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
74
|
+
--color-sidebar-border: var(--sidebar-border);
|
|
75
|
+
--color-sidebar-ring: var(--sidebar-ring);
|
|
76
|
+
--color-overlay: var(--overlay);
|
|
77
|
+
--color-selection: var(--selection);
|
|
78
|
+
--color-selection-foreground: var(--selection-foreground);
|
|
79
|
+
--color-highlight: var(--highlight);
|
|
80
|
+
--color-highlight-foreground: var(--highlight-foreground);
|
|
81
|
+
--color-glass: var(--glass);
|
|
82
|
+
--color-glass-border: var(--glass-border);
|
|
83
|
+
--color-gradient-1: var(--gradient-1);
|
|
84
|
+
--color-gradient-2: var(--gradient-2);
|
|
85
|
+
--color-gradient-3: var(--gradient-3);
|
|
86
|
+
--color-glow: var(--glow);
|
|
87
|
+
--color-shadow: var(--shadow);
|
|
88
|
+
--color-shadow-highlight: var(--shadow-highlight);
|
|
89
|
+
--color-shadow-rim: var(--shadow-rim);
|
|
90
|
+
|
|
91
|
+
--font-sans: var(--font-sans);
|
|
92
|
+
--font-mono: var(--font-mono);
|
|
93
|
+
--font-display: var(--font-display);
|
|
94
|
+
|
|
95
|
+
--spacing: var(--spacing);
|
|
96
|
+
|
|
97
|
+
--text-2xl: var(--text-2xl);
|
|
98
|
+
--text-2xl--line-height: var(--text-2xl--line-height);
|
|
99
|
+
--text-3xl: var(--text-3xl);
|
|
100
|
+
--text-3xl--line-height: var(--text-3xl--line-height);
|
|
101
|
+
--text-4xl: var(--text-4xl);
|
|
102
|
+
--text-4xl--line-height: var(--text-4xl--line-height);
|
|
103
|
+
--text-5xl: var(--text-5xl);
|
|
104
|
+
--text-5xl--line-height: var(--text-5xl--line-height);
|
|
105
|
+
--text-6xl: var(--text-6xl);
|
|
106
|
+
--text-6xl--line-height: var(--text-6xl--line-height);
|
|
107
|
+
--text-7xl: var(--text-7xl);
|
|
108
|
+
--text-7xl--line-height: var(--text-7xl--line-height);
|
|
109
|
+
--text-8xl: var(--text-8xl);
|
|
110
|
+
--text-8xl--line-height: var(--text-8xl--line-height);
|
|
111
|
+
--text-9xl: var(--text-9xl);
|
|
112
|
+
--text-9xl--line-height: var(--text-9xl--line-height);
|
|
113
|
+
--text-base: var(--text-base);
|
|
114
|
+
--text-base--line-height: var(--text-base--line-height);
|
|
115
|
+
--text-lg: var(--text-lg);
|
|
116
|
+
--text-lg--line-height: var(--text-lg--line-height);
|
|
117
|
+
--text-sm: var(--text-sm);
|
|
118
|
+
--text-sm--line-height: var(--text-sm--line-height);
|
|
119
|
+
--text-xl: var(--text-xl);
|
|
120
|
+
--text-xl--line-height: var(--text-xl--line-height);
|
|
121
|
+
--text-xs: var(--text-xs);
|
|
122
|
+
--text-xs--line-height: var(--text-xs--line-height);
|
|
123
|
+
|
|
124
|
+
--font-weight-black: var(--font-weight-black);
|
|
125
|
+
--font-weight-bold: var(--font-weight-bold);
|
|
126
|
+
--font-weight-extrabold: var(--font-weight-extrabold);
|
|
127
|
+
--font-weight-extralight: var(--font-weight-extralight);
|
|
128
|
+
--font-weight-light: var(--font-weight-light);
|
|
129
|
+
--font-weight-medium: var(--font-weight-medium);
|
|
130
|
+
--font-weight-normal: var(--font-weight-normal);
|
|
131
|
+
--font-weight-semibold: var(--font-weight-semibold);
|
|
132
|
+
--font-weight-thin: var(--font-weight-thin);
|
|
133
|
+
|
|
134
|
+
--tracking-normal: var(--tracking-normal);
|
|
135
|
+
--tracking-tight: var(--tracking-tight);
|
|
136
|
+
--tracking-tighter: var(--tracking-tighter);
|
|
137
|
+
--tracking-wide: var(--tracking-wide);
|
|
138
|
+
--tracking-wider: var(--tracking-wider);
|
|
139
|
+
--tracking-widest: var(--tracking-widest);
|
|
140
|
+
|
|
141
|
+
--leading-loose: var(--leading-loose);
|
|
142
|
+
--leading-none: var(--leading-none);
|
|
143
|
+
--leading-normal: var(--leading-normal);
|
|
144
|
+
--leading-relaxed: var(--leading-relaxed);
|
|
145
|
+
--leading-snug: var(--leading-snug);
|
|
146
|
+
--leading-tight: var(--leading-tight);
|
|
147
|
+
|
|
148
|
+
--radius-2xl: calc(var(--radius) * 2);
|
|
149
|
+
--radius-3xl: calc(var(--radius) * 3);
|
|
150
|
+
--radius-4xl: calc(var(--radius) * 4);
|
|
151
|
+
--radius-lg: calc(var(--radius) * 1);
|
|
152
|
+
--radius-md: calc(var(--radius) * 0.75);
|
|
153
|
+
--radius-sm: calc(var(--radius) * 0.5);
|
|
154
|
+
--radius-xl: calc(var(--radius) * 1.5);
|
|
155
|
+
--radius-xs: calc(var(--radius) * 0.25);
|
|
156
|
+
|
|
157
|
+
--shadow-2xl: var(--shadow-2xl);
|
|
158
|
+
--shadow-2xs: var(--shadow-2xs);
|
|
159
|
+
--shadow-lg: var(--shadow-lg);
|
|
160
|
+
--shadow-md: var(--shadow-md);
|
|
161
|
+
--shadow-sm: var(--shadow-sm);
|
|
162
|
+
--shadow-xl: var(--shadow-xl);
|
|
163
|
+
--shadow-xs: var(--shadow-xs);
|
|
164
|
+
--shadow-glow-lg: var(--shadow-glow-lg);
|
|
165
|
+
--shadow-glow-md: var(--shadow-glow-md);
|
|
166
|
+
--shadow-glow-sm: var(--shadow-glow-sm);
|
|
167
|
+
|
|
168
|
+
--inset-shadow-2xs: var(--inset-shadow-2xs);
|
|
169
|
+
--inset-shadow-sm: var(--inset-shadow-sm);
|
|
170
|
+
--inset-shadow-xs: var(--inset-shadow-xs);
|
|
171
|
+
|
|
172
|
+
--drop-shadow-2xl: var(--drop-shadow-2xl);
|
|
173
|
+
--drop-shadow-lg: var(--drop-shadow-lg);
|
|
174
|
+
--drop-shadow-md: var(--drop-shadow-md);
|
|
175
|
+
--drop-shadow-sm: var(--drop-shadow-sm);
|
|
176
|
+
--drop-shadow-xl: var(--drop-shadow-xl);
|
|
177
|
+
--drop-shadow-xs: var(--drop-shadow-xs);
|
|
178
|
+
|
|
179
|
+
--text-shadow-2xs: var(--text-shadow-2xs);
|
|
180
|
+
--text-shadow-lg: var(--text-shadow-lg);
|
|
181
|
+
--text-shadow-md: var(--text-shadow-md);
|
|
182
|
+
--text-shadow-sm: var(--text-shadow-sm);
|
|
183
|
+
--text-shadow-xs: var(--text-shadow-xs);
|
|
184
|
+
|
|
185
|
+
--blur-2xl: var(--blur-2xl);
|
|
186
|
+
--blur-3xl: var(--blur-3xl);
|
|
187
|
+
--blur-lg: var(--blur-lg);
|
|
188
|
+
--blur-md: var(--blur-md);
|
|
189
|
+
--blur-sm: var(--blur-sm);
|
|
190
|
+
--blur-xl: var(--blur-xl);
|
|
191
|
+
--blur-xs: var(--blur-xs);
|
|
192
|
+
|
|
193
|
+
--perspective-distant: var(--perspective-distant);
|
|
194
|
+
--perspective-dramatic: var(--perspective-dramatic);
|
|
195
|
+
--perspective-midrange: var(--perspective-midrange);
|
|
196
|
+
--perspective-near: var(--perspective-near);
|
|
197
|
+
--perspective-normal: var(--perspective-normal);
|
|
198
|
+
|
|
199
|
+
--ease-in: var(--ease-in);
|
|
200
|
+
--ease-in-out: var(--ease-in-out);
|
|
201
|
+
--ease-out: var(--ease-out);
|
|
202
|
+
--ease-spring: var(--ease-spring);
|
|
203
|
+
|
|
204
|
+
--height-xs: var(--height-xs);
|
|
205
|
+
--height-sm: var(--height-sm);
|
|
206
|
+
--height-md: var(--height-md);
|
|
207
|
+
--height-lg: var(--height-lg);
|
|
208
|
+
|
|
209
|
+
--size-xs: var(--height-xs);
|
|
210
|
+
--size-sm: var(--height-sm);
|
|
211
|
+
--size-md: var(--height-md);
|
|
212
|
+
--size-lg: var(--height-lg);
|
|
213
|
+
|
|
214
|
+
--duration-fast: var(--duration-fast);
|
|
215
|
+
--duration-normal: var(--duration-normal);
|
|
216
|
+
--duration-slow: var(--duration-slow);
|
|
217
|
+
|
|
218
|
+
--animate-collapse-down: var(--animate-collapse-down);
|
|
219
|
+
--animate-collapse-up: var(--animate-collapse-up);
|
|
220
|
+
--animate-fade-in: var(--animate-fade-in);
|
|
221
|
+
--animate-fade-out: var(--animate-fade-out);
|
|
222
|
+
--animate-ping: var(--animate-ping);
|
|
223
|
+
--animate-pulse: var(--animate-pulse);
|
|
224
|
+
--animate-shimmer: var(--animate-shimmer);
|
|
225
|
+
--animate-slide-in-from-bottom: var(--animate-slide-in-from-bottom);
|
|
226
|
+
--animate-slide-in-from-left: var(--animate-slide-in-from-left);
|
|
227
|
+
--animate-slide-in-from-right: var(--animate-slide-in-from-right);
|
|
228
|
+
--animate-slide-in-from-top: var(--animate-slide-in-from-top);
|
|
229
|
+
--animate-slide-out-to-bottom: var(--animate-slide-out-to-bottom);
|
|
230
|
+
--animate-slide-out-to-top: var(--animate-slide-out-to-top);
|
|
231
|
+
--animate-spin: var(--animate-spin);
|
|
232
|
+
--animate-zoom-in: var(--animate-zoom-in);
|
|
233
|
+
--animate-zoom-out: var(--animate-zoom-out);
|
|
234
|
+
|
|
235
|
+
--default-transition-duration: var(--duration-normal);
|
|
236
|
+
--default-transition-timing-function: var(--ease-out);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
:root {
|
|
240
|
+
color-scheme: light;
|
|
241
|
+
--background: oklch(96.0% 0.020 75);
|
|
242
|
+
--foreground: oklch(20.0% 0.020 75);
|
|
243
|
+
--card: oklch(98.0% 0.015 75);
|
|
244
|
+
--card-foreground: oklch(20.0% 0.020 75);
|
|
245
|
+
--popover: oklch(99.0% 0.007 75);
|
|
246
|
+
--popover-foreground: oklch(20.0% 0.020 75);
|
|
247
|
+
--primary: oklch(52.0% 0.170 38);
|
|
248
|
+
--primary-foreground: oklch(99.0% 0.004 38);
|
|
249
|
+
--primary-ink: oklch(45.0% 0.146 38);
|
|
250
|
+
--secondary: oklch(93.0% 0.028 70);
|
|
251
|
+
--secondary-foreground: oklch(25.0% 0.028 70);
|
|
252
|
+
--muted: oklch(93.0% 0.028 70);
|
|
253
|
+
--muted-foreground: oklch(41.0% 0.028 70);
|
|
254
|
+
--accent: oklch(92.0% 0.032 232);
|
|
255
|
+
--accent-foreground: oklch(25.0% 0.028 232);
|
|
256
|
+
--destructive: oklch(56.0% 0.200 27);
|
|
257
|
+
--destructive-foreground: oklch(99.0% 0.004 27);
|
|
258
|
+
--destructive-ink: oklch(45.0% 0.180 27);
|
|
259
|
+
--success: oklch(52.0% 0.142 150);
|
|
260
|
+
--success-foreground: oklch(99.0% 0.015 150);
|
|
261
|
+
--success-ink: oklch(42.0% 0.115 150);
|
|
262
|
+
--warning: oklch(84.0% 0.150 85);
|
|
263
|
+
--warning-foreground: oklch(18.0% 0.035 85);
|
|
264
|
+
--warning-ink: oklch(43.0% 0.088 85);
|
|
265
|
+
--info: oklch(54.0% 0.114 235);
|
|
266
|
+
--info-foreground: oklch(99.0% 0.005 235);
|
|
267
|
+
--info-ink: oklch(43.0% 0.091 235);
|
|
268
|
+
--border: oklch(88.0% 0.028 70);
|
|
269
|
+
--input: oklch(65.0% 0.028 70);
|
|
270
|
+
--ring: oklch(52.0% 0.170 38);
|
|
271
|
+
--chart-1: oklch(58.0% 0.150 258);
|
|
272
|
+
--chart-2: oklch(58.0% 0.099 190);
|
|
273
|
+
--chart-3: oklch(58.0% 0.150 300);
|
|
274
|
+
--chart-4: oklch(58.0% 0.150 45);
|
|
275
|
+
--chart-5: oklch(58.0% 0.150 12);
|
|
276
|
+
--chart-positive: oklch(64.0% 0.130 150);
|
|
277
|
+
--chart-caution: oklch(70.0% 0.140 85);
|
|
278
|
+
--chart-negative: oklch(62.0% 0.170 27);
|
|
279
|
+
--code-comment: oklch(41.0% 0.028 250);
|
|
280
|
+
--code-keyword: oklch(43.0% 0.150 305);
|
|
281
|
+
--code-string: oklch(40.0% 0.084 165);
|
|
282
|
+
--code-number: oklch(42.0% 0.120 45);
|
|
283
|
+
--code-function: oklch(42.0% 0.150 265);
|
|
284
|
+
--code-type: oklch(40.0% 0.067 200);
|
|
285
|
+
--code-inserted: oklch(40.0% 0.128 140);
|
|
286
|
+
--code-deleted: oklch(43.0% 0.170 25);
|
|
287
|
+
--sidebar: oklch(95.0% 0.014 70);
|
|
288
|
+
--sidebar-foreground: oklch(25.0% 0.028 70);
|
|
289
|
+
--sidebar-primary: oklch(52.0% 0.170 38);
|
|
290
|
+
--sidebar-primary-foreground: oklch(99.0% 0.004 38);
|
|
291
|
+
--sidebar-accent: oklch(90.0% 0.042 70);
|
|
292
|
+
--sidebar-accent-foreground: oklch(25.0% 0.028 70);
|
|
293
|
+
--sidebar-border: oklch(86.0% 0.028 70);
|
|
294
|
+
--sidebar-ring: oklch(52.0% 0.170 38);
|
|
295
|
+
--overlay: oklch(15.0% 0.028 70 / 0.50);
|
|
296
|
+
--selection: oklch(86.0% 0.077 38);
|
|
297
|
+
--selection-foreground: oklch(20.0% 0.028 70);
|
|
298
|
+
--highlight: oklch(90.0% 0.107 85);
|
|
299
|
+
--highlight-foreground: oklch(20.0% 0.028 70);
|
|
300
|
+
--glass: oklch(98.0% 0.015 75 / 0.72);
|
|
301
|
+
--glass-border: oklch(20.0% 0.014 70 / 0.45);
|
|
302
|
+
--gradient-1: oklch(60.0% 0.190 38);
|
|
303
|
+
--gradient-2: oklch(60.0% 0.190 -45);
|
|
304
|
+
--gradient-3: oklch(60.0% 0.122 232);
|
|
305
|
+
--glow: oklch(62.0% 0.190 38 / 0.45);
|
|
306
|
+
--shadow: oklch(12.0% 0.025 70 / 0.25);
|
|
307
|
+
--shadow-highlight: transparent;
|
|
308
|
+
--shadow-rim: oklch(20.0% 0.014 70 / 0.10);
|
|
309
|
+
--radius: 0.625rem;
|
|
310
|
+
--font-sans: 'Jost Variable', ui-sans-serif, system-ui, sans-serif;
|
|
311
|
+
--font-mono: 'Fira Code Variable', ui-monospace, monospace;
|
|
312
|
+
--font-display: 'Bricolage Grotesque Variable', ui-sans-serif, system-ui, sans-serif;
|
|
313
|
+
|
|
314
|
+
--spacing: 0.25rem;
|
|
315
|
+
--press-scale: 0.98;
|
|
316
|
+
|
|
317
|
+
--text-2xl: 1.5rem;
|
|
318
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
319
|
+
--text-3xl: 1.875rem;
|
|
320
|
+
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
321
|
+
--text-4xl: 2.25rem;
|
|
322
|
+
--text-4xl--line-height: calc(2.5 / 2.25);
|
|
323
|
+
--text-5xl: 3rem;
|
|
324
|
+
--text-5xl--line-height: calc(3 / 3);
|
|
325
|
+
--text-6xl: 3.75rem;
|
|
326
|
+
--text-6xl--line-height: calc(3.75 / 3.75);
|
|
327
|
+
--text-7xl: 4.5rem;
|
|
328
|
+
--text-7xl--line-height: calc(4.5 / 4.5);
|
|
329
|
+
--text-8xl: 6rem;
|
|
330
|
+
--text-8xl--line-height: calc(6 / 6);
|
|
331
|
+
--text-9xl: 8rem;
|
|
332
|
+
--text-9xl--line-height: calc(8 / 8);
|
|
333
|
+
--text-base: 1rem;
|
|
334
|
+
--text-base--line-height: calc(1.5 / 1);
|
|
335
|
+
--text-lg: 1.125rem;
|
|
336
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
337
|
+
--text-sm: 0.875rem;
|
|
338
|
+
--text-sm--line-height: calc(1.25 / 0.875);
|
|
339
|
+
--text-xl: 1.25rem;
|
|
340
|
+
--text-xl--line-height: calc(1.75 / 1.25);
|
|
341
|
+
--text-xs: 0.75rem;
|
|
342
|
+
--text-xs--line-height: calc(1 / 0.75);
|
|
343
|
+
|
|
344
|
+
--font-weight-black: 900;
|
|
345
|
+
--font-weight-bold: 700;
|
|
346
|
+
--font-weight-extrabold: 800;
|
|
347
|
+
--font-weight-extralight: 200;
|
|
348
|
+
--font-weight-light: 300;
|
|
349
|
+
--font-weight-medium: 500;
|
|
350
|
+
--font-weight-normal: 400;
|
|
351
|
+
--font-weight-semibold: 600;
|
|
352
|
+
--font-weight-thin: 100;
|
|
353
|
+
|
|
354
|
+
--tracking-normal: 0em;
|
|
355
|
+
--tracking-tight: -0.025em;
|
|
356
|
+
--tracking-tighter: -0.05em;
|
|
357
|
+
--tracking-wide: 0.025em;
|
|
358
|
+
--tracking-wider: 0.05em;
|
|
359
|
+
--tracking-widest: 0.1em;
|
|
360
|
+
|
|
361
|
+
--leading-loose: 2;
|
|
362
|
+
--leading-none: 1;
|
|
363
|
+
--leading-normal: 1.5;
|
|
364
|
+
--leading-relaxed: 1.625;
|
|
365
|
+
--leading-snug: 1.375;
|
|
366
|
+
--leading-tight: 1.25;
|
|
367
|
+
|
|
368
|
+
--shadow-2xl: inset 0 1px 0 0 var(--shadow-highlight), 0 0 0 1px color-mix(in oklch, var(--shadow-rim) 50%, transparent), 0 25px 50px -12px color-mix(in oklch, var(--shadow) 50%, transparent);
|
|
369
|
+
--shadow-2xs: inset 0 1px 0 0 var(--shadow-highlight), 0 1px color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
370
|
+
--shadow-lg: inset 0 1px 0 0 var(--shadow-highlight), 0 0 0 1px color-mix(in oklch, var(--shadow-rim) 30%, transparent), 0 10px 15px -3px color-mix(in oklch, var(--shadow) 20%, transparent), 0 4px 6px -4px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
371
|
+
--shadow-md: inset 0 1px 0 0 var(--shadow-highlight), 0 0 0 1px color-mix(in oklch, var(--shadow-rim) 20%, transparent), 0 4px 6px -1px color-mix(in oklch, var(--shadow) 20%, transparent), 0 2px 4px -2px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
372
|
+
--shadow-sm: inset 0 1px 0 0 var(--shadow-highlight), 0 1px 3px 0 color-mix(in oklch, var(--shadow) 20%, transparent), 0 1px 2px -1px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
373
|
+
--shadow-xl: inset 0 1px 0 0 var(--shadow-highlight), 0 0 0 1px color-mix(in oklch, var(--shadow-rim) 40%, transparent), 0 20px 25px -5px color-mix(in oklch, var(--shadow) 20%, transparent), 0 8px 10px -6px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
374
|
+
--shadow-xs: inset 0 1px 0 0 var(--shadow-highlight), 0 1px 2px 0 color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
375
|
+
--shadow-glow-lg: 0 0 48px -4px color-mix(in oklch, var(--glow) 50%, transparent), 0 0 16px -2px color-mix(in oklch, var(--glow) 30%, transparent);
|
|
376
|
+
--shadow-glow-md: 0 0 24px -2px color-mix(in oklch, var(--glow) 45%, transparent), 0 0 8px -1px color-mix(in oklch, var(--glow) 25%, transparent);
|
|
377
|
+
--shadow-glow-sm: 0 0 12px -2px color-mix(in oklch, var(--glow) 40%, transparent);
|
|
378
|
+
|
|
379
|
+
--inset-shadow-2xs: inset 0 1px color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
380
|
+
--inset-shadow-sm: inset 0 2px 4px color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
381
|
+
--inset-shadow-xs: inset 0 1px 1px color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
382
|
+
|
|
383
|
+
--drop-shadow-2xl: 0 25px 25px color-mix(in oklch, var(--shadow) 30%, transparent);
|
|
384
|
+
--drop-shadow-lg: 0 10px 8px color-mix(in oklch, var(--shadow) 30%, transparent), 0 4px 3px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
385
|
+
--drop-shadow-md: 0 4px 3px color-mix(in oklch, var(--shadow) 20%, transparent), 0 2px 2px color-mix(in oklch, var(--shadow) 30%, transparent);
|
|
386
|
+
--drop-shadow-sm: 0 1px 1px color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
387
|
+
--drop-shadow-xl: 0 20px 13px color-mix(in oklch, var(--shadow) 30%, transparent), 0 8px 5px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
388
|
+
--drop-shadow-xs: 0 1px 1px color-mix(in oklch, var(--shadow) 10%, transparent);
|
|
389
|
+
|
|
390
|
+
--text-shadow-2xs: 0px 1px 0px color-mix(in oklch, var(--shadow) 30%, transparent);
|
|
391
|
+
--text-shadow-lg: 0px 1px 2px color-mix(in oklch, var(--shadow) 20%, transparent), 0px 3px 2px color-mix(in oklch, var(--shadow) 20%, transparent), 0px 4px 8px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
392
|
+
--text-shadow-md: 0px 1px 1px color-mix(in oklch, var(--shadow) 20%, transparent), 0px 1px 2px color-mix(in oklch, var(--shadow) 20%, transparent), 0px 2px 4px color-mix(in oklch, var(--shadow) 20%, transparent);
|
|
393
|
+
--text-shadow-sm: 0px 1px 0px color-mix(in oklch, var(--shadow) 15%, transparent), 0px 1px 1px color-mix(in oklch, var(--shadow) 15%, transparent), 0px 2px 2px color-mix(in oklch, var(--shadow) 15%, transparent);
|
|
394
|
+
--text-shadow-xs: 0px 1px 1px color-mix(in oklch, var(--shadow) 40%, transparent);
|
|
395
|
+
|
|
396
|
+
--blur-2xl: 40px;
|
|
397
|
+
--blur-3xl: 64px;
|
|
398
|
+
--blur-lg: 16px;
|
|
399
|
+
--blur-md: 12px;
|
|
400
|
+
--blur-sm: 8px;
|
|
401
|
+
--blur-xl: 24px;
|
|
402
|
+
--blur-xs: 4px;
|
|
403
|
+
|
|
404
|
+
--perspective-distant: 1200px;
|
|
405
|
+
--perspective-dramatic: 100px;
|
|
406
|
+
--perspective-midrange: 800px;
|
|
407
|
+
--perspective-near: 300px;
|
|
408
|
+
--perspective-normal: 500px;
|
|
409
|
+
|
|
410
|
+
--ease-in: cubic-bezier(0.4, 0, 1, 1);
|
|
411
|
+
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
412
|
+
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
413
|
+
--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
414
|
+
|
|
415
|
+
--duration-fast: 80ms;
|
|
416
|
+
--duration-normal: 160ms;
|
|
417
|
+
--duration-slow: 280ms;
|
|
418
|
+
|
|
419
|
+
--animate-collapse-down: collapse-down var(--duration-normal) var(--ease-out) forwards;
|
|
420
|
+
--animate-collapse-up: collapse-up var(--duration-normal) var(--ease-in) forwards;
|
|
421
|
+
--animate-fade-in: fade-in var(--duration-normal) var(--ease-out) backwards;
|
|
422
|
+
--animate-fade-out: fade-out var(--duration-fast) var(--ease-in) forwards;
|
|
423
|
+
--animate-ping: ping 1s var(--ease-out) infinite;
|
|
424
|
+
--animate-pulse: pulse 2s var(--ease-in-out) infinite;
|
|
425
|
+
--animate-shimmer: shimmer 1.6s linear infinite;
|
|
426
|
+
--animate-slide-in-from-bottom: slide-in-from-bottom var(--duration-normal) var(--ease-out) backwards;
|
|
427
|
+
--animate-slide-in-from-left: slide-in-from-left var(--duration-normal) var(--ease-out) backwards;
|
|
428
|
+
--animate-slide-in-from-right: slide-in-from-right var(--duration-normal) var(--ease-out) backwards;
|
|
429
|
+
--animate-slide-in-from-top: slide-in-from-top var(--duration-normal) var(--ease-out) backwards;
|
|
430
|
+
--animate-slide-out-to-bottom: slide-out-to-bottom var(--duration-fast) var(--ease-in) forwards;
|
|
431
|
+
--animate-slide-out-to-top: slide-out-to-top var(--duration-fast) var(--ease-in) forwards;
|
|
432
|
+
--animate-spin: spin 1s linear infinite;
|
|
433
|
+
--animate-zoom-in: zoom-in var(--duration-normal) var(--ease-out) backwards;
|
|
434
|
+
--animate-zoom-out: zoom-out var(--duration-fast) var(--ease-in) forwards;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.dark {
|
|
438
|
+
color-scheme: dark;
|
|
439
|
+
--background: oklch(14.0% 0.020 75);
|
|
440
|
+
--foreground: oklch(96.0% 0.020 75);
|
|
441
|
+
--card: oklch(19.0% 0.016 75);
|
|
442
|
+
--card-foreground: oklch(96.0% 0.020 75);
|
|
443
|
+
--popover: oklch(22.0% 0.016 75);
|
|
444
|
+
--popover-foreground: oklch(96.0% 0.020 75);
|
|
445
|
+
--primary: oklch(57.0% 0.186 38);
|
|
446
|
+
--primary-foreground: oklch(98.0% 0.009 38);
|
|
447
|
+
--primary-ink: oklch(75.0% 0.154 38);
|
|
448
|
+
--secondary: oklch(24.0% 0.028 70);
|
|
449
|
+
--secondary-foreground: oklch(95.0% 0.028 70);
|
|
450
|
+
--muted: oklch(24.0% 0.028 70);
|
|
451
|
+
--muted-foreground: oklch(76.0% 0.028 70);
|
|
452
|
+
--accent: oklch(29.0% 0.032 232);
|
|
453
|
+
--accent-foreground: oklch(95.0% 0.028 232);
|
|
454
|
+
--destructive: oklch(57.0% 0.200 27);
|
|
455
|
+
--destructive-foreground: oklch(98.0% 0.009 27);
|
|
456
|
+
--destructive-ink: oklch(75.0% 0.150 27);
|
|
457
|
+
--success: oklch(54.0% 0.148 150);
|
|
458
|
+
--success-foreground: oklch(98.0% 0.031 150);
|
|
459
|
+
--success-ink: oklch(75.0% 0.140 150);
|
|
460
|
+
--warning: oklch(82.0% 0.150 85);
|
|
461
|
+
--warning-foreground: oklch(18.0% 0.035 85);
|
|
462
|
+
--warning-ink: oklch(75.0% 0.140 85);
|
|
463
|
+
--info: oklch(54.0% 0.114 235);
|
|
464
|
+
--info-foreground: oklch(98.0% 0.010 235);
|
|
465
|
+
--info-ink: oklch(75.0% 0.140 235);
|
|
466
|
+
--border: oklch(28.0% 0.028 70);
|
|
467
|
+
--input: oklch(50.0% 0.028 70);
|
|
468
|
+
--ring: oklch(60.0% 0.190 38);
|
|
469
|
+
--chart-1: oklch(68.0% 0.150 258);
|
|
470
|
+
--chart-2: oklch(68.0% 0.117 190);
|
|
471
|
+
--chart-3: oklch(68.0% 0.150 300);
|
|
472
|
+
--chart-4: oklch(68.0% 0.150 45);
|
|
473
|
+
--chart-5: oklch(68.0% 0.150 12);
|
|
474
|
+
--chart-positive: oklch(74.0% 0.130 150);
|
|
475
|
+
--chart-caution: oklch(80.0% 0.140 85);
|
|
476
|
+
--chart-negative: oklch(72.0% 0.170 27);
|
|
477
|
+
--code-comment: oklch(78.0% 0.028 250);
|
|
478
|
+
--code-keyword: oklch(78.0% 0.140 305);
|
|
479
|
+
--code-string: oklch(78.0% 0.130 165);
|
|
480
|
+
--code-number: oklch(78.0% 0.136 45);
|
|
481
|
+
--code-function: oklch(78.0% 0.111 265);
|
|
482
|
+
--code-type: oklch(78.0% 0.132 200);
|
|
483
|
+
--code-inserted: oklch(78.0% 0.130 140);
|
|
484
|
+
--code-deleted: oklch(78.0% 0.128 25);
|
|
485
|
+
--sidebar: oklch(16.0% 0.014 70);
|
|
486
|
+
--sidebar-foreground: oklch(92.0% 0.028 70);
|
|
487
|
+
--sidebar-primary: oklch(57.0% 0.186 38);
|
|
488
|
+
--sidebar-primary-foreground: oklch(98.0% 0.009 38);
|
|
489
|
+
--sidebar-accent: oklch(23.0% 0.042 70);
|
|
490
|
+
--sidebar-accent-foreground: oklch(95.0% 0.028 70);
|
|
491
|
+
--sidebar-border: oklch(27.0% 0.028 70);
|
|
492
|
+
--sidebar-ring: oklch(60.0% 0.190 38);
|
|
493
|
+
--overlay: oklch(3.0% 0.006 70 / 0.70);
|
|
494
|
+
--selection: oklch(36.0% 0.095 38);
|
|
495
|
+
--selection-foreground: oklch(96.0% 0.028 70);
|
|
496
|
+
--highlight: oklch(40.0% 0.081 85);
|
|
497
|
+
--highlight-foreground: oklch(96.0% 0.028 70);
|
|
498
|
+
--glass: oklch(19.0% 0.016 75 / 0.60);
|
|
499
|
+
--glass-border: oklch(96.0% 0.014 70 / 0.28);
|
|
500
|
+
--gradient-1: oklch(68.0% 0.190 38);
|
|
501
|
+
--gradient-2: oklch(68.0% 0.190 -45);
|
|
502
|
+
--gradient-3: oklch(68.0% 0.138 232);
|
|
503
|
+
--glow: oklch(72.0% 0.178 38 / 0.60);
|
|
504
|
+
--shadow: oklch(4.0% 0.008 70 / 0.90);
|
|
505
|
+
--shadow-highlight: oklch(98.0% 0.005 70 / 0.20);
|
|
506
|
+
--shadow-rim: oklch(96.0% 0.014 70 / 0.32);
|
|
507
|
+
--radius: 0.625rem;
|
|
508
|
+
--font-sans: 'Jost Variable', ui-sans-serif, system-ui, sans-serif;
|
|
509
|
+
--font-mono: 'Fira Code Variable', ui-monospace, monospace;
|
|
510
|
+
--font-display: 'Bricolage Grotesque Variable', ui-sans-serif, system-ui, sans-serif;
|
|
511
|
+
}
|