turbo-themes 0.33.0 → 0.35.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7cc03080611442cf947c63704cb2a97efbb334efb823a54806ee26fd204fffef
4
- data.tar.gz: dd26058bbfae6283d1cb0ede5c2d0ebf5c94af12cd857b735fbbc42ee0d2ac11
3
+ metadata.gz: 0dc819d6d9319a7bf97010e22c2df6c4d9fa29d23bb3d99f1d1a605bda2455aa
4
+ data.tar.gz: 6d5271b75c0c99455b6446eca24913a5bf1b455fd8aeb48c5a34ac37a1100a26
5
5
  SHA512:
6
- metadata.gz: 362177a7ccff15f7e46a8fefb8899bed0689159a026eacfda19be75505663da42be23a2fe5d03c90fbf6d975c330ed601964ad0bb91306c305db153d0b7328f2
7
- data.tar.gz: 48c142ab1f68897d8a8a103bf8615ed73055167a1f38c04e9e844aebaaf4c87b37e2002263e5814b0a7ebcfde8339edb9260a157221e40e6349cb1d300819561
6
+ metadata.gz: eadad34de13ef5134619df576f0c5d55d6131a9098e1f16c8bd0ebb8bc7ef156c76c33ef8afc263f9895f594b7a870e1d14606e083712e5bac86cf2214ba2a89
7
+ data.tar.gz: c5934f0e06b0671348648611e9f71c1f72bc3b4f180b5979b17efc71d655f4b7a2961456b82ee9718eafb138f17cf9a40641819cc57cb547fc06baf93bfde374
data/CHANGELOG.md CHANGED
@@ -10,6 +10,18 @@ The format is based on Keep a Changelog and this project adheres to SemVer.
10
10
 
11
11
  - TBD
12
12
 
13
+ ## [0.35.0] - 2026-07-20
14
+
15
+ ### ✨ Added
16
+
17
+ - Add Radix Colors theme pack (#599)
18
+
19
+ ## [0.34.0] - 2026-07-20
20
+
21
+ ### ✨ Added
22
+
23
+ - Redesign home page to Noir Editorial (#609)
24
+
13
25
  ## [0.33.0] - 2026-07-20
14
26
 
15
27
  ### ✨ Added
@@ -0,0 +1,435 @@
1
+ /**
2
+ * Home page — Noir Editorial (Design #2).
3
+ * Loaded from index.astro via /assets/css/home.css (copied by site build).
4
+ * Scoped <style> / Vite ?url CSS is not reliably emitted by this Astro build.
5
+ */
6
+
7
+ /* ==========================================================================
8
+ Home — Noir Editorial (Design #2)
9
+ ========================================================================== */
10
+
11
+ .home-hero {
12
+ display: grid;
13
+ grid-template-columns: 1fr 1fr;
14
+ min-height: calc(100vh - 56px);
15
+ border-bottom: 1px solid var(--noir-border-section);
16
+ background: var(--noir-bg-base);
17
+ }
18
+
19
+ .home-hero-copy {
20
+ display: flex;
21
+ flex-direction: column;
22
+ justify-content: center;
23
+ padding: 80px 60px;
24
+ border-right: 1px solid var(--noir-border-section);
25
+ background: var(--noir-bg-base);
26
+ }
27
+
28
+ html[data-design='noir'] .home-hero-title {
29
+ margin: 0 0 1.5rem;
30
+ font-family: var(--font-display);
31
+ font-weight: 900;
32
+ font-size: clamp(3.5rem, 7vw, 6.5rem);
33
+ line-height: 0.95;
34
+ letter-spacing: -0.04em;
35
+ color: var(--noir-text-primary);
36
+ }
37
+
38
+ html[data-design='noir'] .home-hero-title em {
39
+ font-style: italic;
40
+ font-weight: 400;
41
+ color: var(--noir-accent);
42
+ }
43
+
44
+ .home-hero-desc {
45
+ margin: 0 0 2.5rem;
46
+ max-width: 440px;
47
+ font-size: 1.125rem;
48
+ line-height: 1.6;
49
+ color: var(--noir-text-secondary);
50
+ }
51
+
52
+ .home-hero-actions,
53
+ .home-cta-actions {
54
+ display: flex;
55
+ flex-wrap: wrap;
56
+ gap: 1rem;
57
+ }
58
+
59
+ /* Beat `html:root a` accent color from noir.css */
60
+ html[data-design='noir'] .home-hero-actions a.btn-editorial,
61
+ html[data-design='noir'] .home-cta-actions a.btn-editorial {
62
+ display: inline-flex;
63
+ align-items: center;
64
+ justify-content: center;
65
+ gap: 0.5rem;
66
+ padding: 16px 32px;
67
+ font-family: var(--font-body);
68
+ font-size: 0.875rem;
69
+ font-weight: 600;
70
+ letter-spacing: 0.05em;
71
+ text-transform: uppercase;
72
+ text-decoration: none;
73
+ border: 1px solid transparent;
74
+ border-radius: 0;
75
+ background: var(--noir-text-primary);
76
+ color: var(--noir-bg-base);
77
+ box-shadow: none;
78
+ }
79
+
80
+ html[data-design='noir'] .home-hero-actions a.btn-editorial:hover,
81
+ html[data-design='noir'] .home-cta-actions a.btn-editorial:hover {
82
+ background: var(--noir-accent);
83
+ color: var(--noir-bg-base);
84
+ box-shadow: 0 0 40px var(--noir-accent-glow);
85
+ text-decoration: none;
86
+ }
87
+
88
+ html[data-design='noir'] .home-hero-actions a.btn-editorial-ghost,
89
+ html[data-design='noir'] .home-cta-actions a.btn-editorial-ghost {
90
+ background: transparent;
91
+ color: var(--noir-text-secondary);
92
+ border-color: var(--noir-border-ghost);
93
+ box-shadow: none;
94
+ }
95
+
96
+ html[data-design='noir'] .home-hero-actions a.btn-editorial-ghost:hover,
97
+ html[data-design='noir'] .home-cta-actions a.btn-editorial-ghost:hover {
98
+ background: transparent;
99
+ color: var(--noir-text-primary);
100
+ border-color: var(--noir-text-primary);
101
+ box-shadow: none;
102
+ }
103
+
104
+ .home-hero-actions .btn-editorial .btn-arrow,
105
+ .home-cta-actions .btn-editorial .btn-arrow {
106
+ display: inline-block;
107
+ transition: transform var(--transition-fast);
108
+ }
109
+
110
+ .home-hero-actions .btn-editorial:hover .btn-arrow,
111
+ .home-cta-actions .btn-editorial:hover .btn-arrow {
112
+ transform: translateX(4px);
113
+ }
114
+
115
+ .home-hero-panel {
116
+ display: flex;
117
+ flex-direction: column;
118
+ justify-content: center;
119
+ gap: 2.5rem;
120
+ padding: 60px;
121
+ background: var(--noir-bg-panel);
122
+ }
123
+
124
+ .home-swatch-grid {
125
+ display: grid;
126
+ grid-template-columns: repeat(3, 1fr);
127
+ gap: 12px;
128
+ }
129
+
130
+ .home-swatch {
131
+ position: relative;
132
+ width: 100%;
133
+ aspect-ratio: 1;
134
+ padding: 0;
135
+ border: none;
136
+ border-radius: 4px;
137
+ background: linear-gradient(135deg, var(--swatch-a), var(--swatch-b));
138
+ cursor: pointer;
139
+ overflow: hidden;
140
+ transition:
141
+ transform var(--transition-normal),
142
+ box-shadow var(--transition-normal);
143
+ }
144
+
145
+ .home-swatch::after {
146
+ content: attr(data-name);
147
+ position: absolute;
148
+ inset: 0;
149
+ display: flex;
150
+ align-items: flex-end;
151
+ justify-content: center;
152
+ padding: 0.5rem;
153
+ font-family: var(--font-body);
154
+ font-size: 0.6875rem;
155
+ font-weight: 600;
156
+ letter-spacing: 0.04em;
157
+ text-align: center;
158
+ color: #fff;
159
+ background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.75));
160
+ opacity: 0;
161
+ transition: opacity var(--transition-normal);
162
+ }
163
+
164
+ .home-swatch:hover,
165
+ .home-swatch:focus-visible {
166
+ transform: scale(1.05);
167
+ z-index: 1;
168
+ outline: none;
169
+ }
170
+
171
+ .home-swatch:hover::after,
172
+ .home-swatch:focus-visible::after,
173
+ .home-swatch.active::after {
174
+ opacity: 1;
175
+ }
176
+
177
+ .home-swatch.active {
178
+ box-shadow: 0 0 0 2px var(--noir-accent);
179
+ }
180
+
181
+ .home-theme-count {
182
+ margin: 0;
183
+ font-family: var(--font-display);
184
+ font-weight: 900;
185
+ line-height: 1;
186
+ color: var(--noir-ghost-deep);
187
+ }
188
+
189
+ html[data-design='noir'] .home-theme-count-num {
190
+ color: var(--noir-ghost-deep);
191
+ }
192
+
193
+ .home-theme-count-num {
194
+ font-size: 4rem;
195
+ letter-spacing: -0.04em;
196
+ }
197
+
198
+ .home-theme-count-label {
199
+ margin-left: 0.35rem;
200
+ font-family: var(--font-body);
201
+ font-size: 0.75rem;
202
+ font-weight: 600;
203
+ font-style: normal;
204
+ letter-spacing: 0.15em;
205
+ text-transform: uppercase;
206
+ color: var(--noir-accent);
207
+ vertical-align: super;
208
+ }
209
+
210
+ /* Split sections (features / install) */
211
+ .home-split {
212
+ display: grid;
213
+ grid-template-columns: 300px 1fr;
214
+ border-bottom: 1px solid var(--noir-border-section);
215
+ background: var(--noir-bg-base);
216
+ }
217
+
218
+ .home-split-label {
219
+ padding: 60px;
220
+ border-right: 1px solid var(--noir-border-section);
221
+ }
222
+
223
+ html[data-design='noir'] .home-split-heading {
224
+ position: sticky;
225
+ top: 80px;
226
+ margin: 0;
227
+ font-family: var(--font-display);
228
+ font-size: 2rem;
229
+ font-weight: 900;
230
+ letter-spacing: -0.03em;
231
+ line-height: 1.1;
232
+ color: var(--noir-text-primary);
233
+ }
234
+
235
+ .home-split-body {
236
+ min-width: 0;
237
+ }
238
+
239
+ .home-feature-list,
240
+ .home-install-list {
241
+ list-style: none;
242
+ margin: 0;
243
+ padding: 0;
244
+ }
245
+
246
+ .home-feature-row {
247
+ display: grid;
248
+ grid-template-columns: 80px 1fr;
249
+ gap: 1rem;
250
+ padding: 48px 60px;
251
+ border-bottom: 1px solid var(--noir-border-row);
252
+ transition: background-color var(--transition-normal);
253
+ }
254
+
255
+ .home-feature-row:last-child {
256
+ border-bottom: none;
257
+ }
258
+
259
+ .home-feature-row:hover {
260
+ background: var(--noir-bg-panel);
261
+ }
262
+
263
+ .home-feature-num {
264
+ font-family: var(--font-display);
265
+ font-size: 2.5rem;
266
+ font-weight: 900;
267
+ line-height: 1;
268
+ letter-spacing: -0.03em;
269
+ color: var(--noir-ghost);
270
+ transition: color var(--transition-normal);
271
+ }
272
+
273
+ .home-feature-row:hover .home-feature-num {
274
+ color: var(--noir-accent);
275
+ }
276
+
277
+ html[data-design='noir'] .home-feature-title {
278
+ margin: 0 0 0.5rem;
279
+ font-family: var(--font-body);
280
+ font-size: 1.25rem;
281
+ font-weight: 700;
282
+ letter-spacing: -0.01em;
283
+ color: var(--noir-text-primary);
284
+ }
285
+
286
+ .home-feature-body {
287
+ margin: 0;
288
+ font-size: 0.9375rem;
289
+ line-height: 1.6;
290
+ color: var(--noir-text-muted);
291
+ }
292
+
293
+ .home-feature-body code {
294
+ font-family: var(--font-mono);
295
+ font-size: 0.875em;
296
+ color: var(--noir-accent);
297
+ }
298
+
299
+ .home-install-row {
300
+ display: grid;
301
+ grid-template-columns: 80px 1fr;
302
+ gap: 1.25rem;
303
+ align-items: center;
304
+ padding: 20px 60px;
305
+ border-bottom: 1px solid var(--noir-border-row);
306
+ }
307
+
308
+ .home-install-row:last-child {
309
+ border-bottom: none;
310
+ }
311
+
312
+ .home-install-label {
313
+ font-family: var(--font-body);
314
+ font-size: 0.75rem;
315
+ font-weight: 600;
316
+ letter-spacing: 0.1em;
317
+ text-transform: uppercase;
318
+ text-align: right;
319
+ color: var(--noir-text-muted-deep);
320
+ }
321
+
322
+ .home-install-code {
323
+ display: block;
324
+ width: 100%;
325
+ margin: 0;
326
+ padding: 14px 18px;
327
+ text-align: left;
328
+ font: inherit;
329
+ color: inherit;
330
+ background: var(--noir-bg-code);
331
+ border: 1px solid var(--noir-border-row);
332
+ border-radius: 0;
333
+ cursor: pointer;
334
+ transition: border-color var(--transition-normal);
335
+ }
336
+
337
+ .home-install-code:hover,
338
+ .home-install-code:focus-visible {
339
+ border-color: var(--noir-accent);
340
+ outline: none;
341
+ }
342
+
343
+ .home-install-code.copied {
344
+ border-color: var(--noir-accent);
345
+ box-shadow: 0 0 0 1px var(--noir-accent);
346
+ }
347
+
348
+ .home-install-code code {
349
+ font-family: var(--font-mono);
350
+ font-size: 0.875rem;
351
+ color: var(--noir-accent);
352
+ }
353
+
354
+ /* CTA */
355
+ .home-cta {
356
+ padding: 120px 60px;
357
+ text-align: center;
358
+ background: var(--noir-bg-base);
359
+ }
360
+
361
+ html[data-design='noir'] .home-cta-title {
362
+ margin: 0 0 1rem;
363
+ font-family: var(--font-display);
364
+ font-size: clamp(2.5rem, 6vw, 5rem);
365
+ font-weight: 900;
366
+ line-height: 1;
367
+ letter-spacing: -0.04em;
368
+ color: var(--noir-text-primary);
369
+ }
370
+
371
+ html[data-design='noir'] .home-cta-title em {
372
+ font-style: italic;
373
+ font-weight: 400;
374
+ color: var(--noir-accent);
375
+ }
376
+
377
+ .home-cta-desc {
378
+ margin: 0 0 2.5rem;
379
+ font-size: 1.125rem;
380
+ color: var(--noir-text-muted-deep);
381
+ }
382
+
383
+ .home-cta-actions {
384
+ justify-content: center;
385
+ }
386
+
387
+ @media (max-width: 900px) {
388
+ .home-hero {
389
+ grid-template-columns: 1fr;
390
+ min-height: 0;
391
+ }
392
+
393
+ .home-hero-copy {
394
+ padding: 60px 24px;
395
+ border-right: none;
396
+ border-bottom: 1px solid var(--noir-border-section);
397
+ }
398
+
399
+ .home-hero-panel {
400
+ padding: 40px 24px;
401
+ }
402
+
403
+ .home-split {
404
+ grid-template-columns: 1fr;
405
+ }
406
+
407
+ .home-split-label {
408
+ padding: 40px 24px 24px;
409
+ border-right: none;
410
+ border-bottom: 1px solid var(--noir-border-section);
411
+ }
412
+
413
+ html[data-design='noir'] .home-split-heading {
414
+ position: static;
415
+ }
416
+
417
+ .home-feature-row {
418
+ grid-template-columns: 64px 1fr;
419
+ padding: 36px 24px;
420
+ }
421
+
422
+ .home-feature-num {
423
+ font-size: 2rem;
424
+ }
425
+
426
+ .home-install-row {
427
+ grid-template-columns: 72px 1fr;
428
+ gap: 0.75rem;
429
+ padding: 16px 24px;
430
+ }
431
+
432
+ .home-cta {
433
+ padding: 80px 24px;
434
+ }
435
+ }
@@ -0,0 +1,58 @@
1
+ /* Generated from radix-mauve-dark.css */
2
+
3
+ [data-theme="radix-mauve-dark"] {
4
+ --turbo-spacing-xs: 0.25rem; /* dimension */
5
+ --turbo-spacing-sm: 0.5rem; /* dimension */
6
+ --turbo-spacing-md: 1rem; /* dimension */
7
+ --turbo-spacing-lg: 1.5rem; /* dimension */
8
+ --turbo-spacing-xl: 2rem; /* dimension */
9
+ --turbo-elevation-none: none; /* shadow */
10
+ --turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
11
+ --turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow */
12
+ --turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow */
13
+ --turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow */
14
+ --turbo-animation-duration-fast: 150ms; /* duration */
15
+ --turbo-animation-duration-normal: 300ms; /* duration */
16
+ --turbo-animation-duration-slow: 500ms; /* duration */
17
+ --turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1); /* cubicBezier */
18
+ --turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1); /* cubicBezier */
19
+ --turbo-opacity-disabled: 0.5; /* number */
20
+ --turbo-opacity-hover: 0.8; /* number */
21
+ --turbo-opacity-pressed: 0.6; /* number */
22
+ --turbo-bg-base: #121113; /* color */
23
+ --turbo-bg-surface: #1a191b; /* color */
24
+ --turbo-bg-overlay: #232225; /* color */
25
+ --turbo-text-primary: #eeeef0; /* color */
26
+ --turbo-text-secondary: #b5b2bc; /* color */
27
+ --turbo-text-inverse: #121113; /* color */
28
+ --turbo-brand-primary: #0090ff; /* color */
29
+ --turbo-state-info: #00a2c7; /* color */
30
+ --turbo-state-success: #30a46c; /* color */
31
+ --turbo-state-warning: #ffc53d; /* color */
32
+ --turbo-state-danger: #e5484d; /* color */
33
+ --turbo-border-default: #3c393f; /* color */
34
+ --turbo-accent-link: #70b8ff; /* color */
35
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
36
+ --turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
37
+ --turbo-heading-h1: #3dd68c; /* color */
38
+ --turbo-heading-h2: #70b8ff; /* color */
39
+ --turbo-heading-h3: #4ccce6; /* color */
40
+ --turbo-heading-h4: #ffca16; /* color */
41
+ --turbo-heading-h5: #baa7ff; /* color */
42
+ --turbo-heading-h6: #ff9592; /* color */
43
+ --turbo-body-primary: #eeeef0; /* color */
44
+ --turbo-body-secondary: #b5b2bc; /* color */
45
+ --turbo-link-default: #70b8ff; /* color */
46
+ --turbo-selection-fg: #eeeef0; /* color */
47
+ --turbo-selection-bg: #323035; /* color */
48
+ --turbo-blockquote-border: #49474e; /* color */
49
+ --turbo-blockquote-fg: #eeeef0; /* color */
50
+ --turbo-blockquote-bg: #1a191b; /* color */
51
+ --turbo-code-inline-fg: #eeeef0; /* color */
52
+ --turbo-code-inline-bg: #232225; /* color */
53
+ --turbo-code-block-fg: #eeeef0; /* color */
54
+ --turbo-code-block-bg: #232225; /* color */
55
+ --turbo-table-border: #49474e; /* color */
56
+ --turbo-table-stripe: #1a191b; /* color */
57
+ --turbo-table-thead-bg: #2b292d; /* color */
58
+ }
@@ -0,0 +1,60 @@
1
+ /* Generated from radix-mauve-light.css */
2
+
3
+ [data-theme="radix-mauve-light"] {
4
+ --turbo-spacing-xs: 0.25rem; /* dimension */
5
+ --turbo-spacing-sm: 0.5rem; /* dimension */
6
+ --turbo-spacing-md: 1rem; /* dimension */
7
+ --turbo-spacing-lg: 1.5rem; /* dimension */
8
+ --turbo-spacing-xl: 2rem; /* dimension */
9
+ --turbo-elevation-none: none; /* shadow */
10
+ --turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
11
+ --turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow */
12
+ --turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow */
13
+ --turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow */
14
+ --turbo-animation-duration-fast: 150ms; /* duration */
15
+ --turbo-animation-duration-normal: 300ms; /* duration */
16
+ --turbo-animation-duration-slow: 500ms; /* duration */
17
+ --turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1); /* cubicBezier */
18
+ --turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1); /* cubicBezier */
19
+ --turbo-opacity-disabled: 0.5; /* number */
20
+ --turbo-opacity-hover: 0.8; /* number */
21
+ --turbo-opacity-pressed: 0.6; /* number */
22
+ --turbo-bg-base: #fdfcfd; /* color */
23
+ --turbo-bg-surface: #faf9fb; /* color */
24
+ --turbo-bg-overlay: #f2eff3; /* color */
25
+ --turbo-text-primary: #211f26; /* color */
26
+ --turbo-text-secondary: #65636d; /* color */
27
+ --turbo-text-inverse: #fdfcfd; /* color */
28
+ --turbo-brand-primary: #0090ff; /* color */
29
+ --turbo-state-info: #00a2c7; /* color */
30
+ --turbo-state-success: #30a46c; /* color */
31
+ --turbo-state-warning: #ffc53d; /* color */
32
+ --turbo-state-danger: #e5484d; /* color */
33
+ --turbo-state-info-text: #000000; /* color */
34
+ --turbo-state-warning-text: #000000; /* color */
35
+ --turbo-border-default: #dbd8e0; /* color */
36
+ --turbo-accent-link: #0d74ce; /* color */
37
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
38
+ --turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
39
+ --turbo-heading-h1: #218358; /* color */
40
+ --turbo-heading-h2: #0d74ce; /* color */
41
+ --turbo-heading-h3: #107d98; /* color */
42
+ --turbo-heading-h4: #ab6400; /* color */
43
+ --turbo-heading-h5: #6550b9; /* color */
44
+ --turbo-heading-h6: #ce2c31; /* color */
45
+ --turbo-body-primary: #211f26; /* color */
46
+ --turbo-body-secondary: #65636d; /* color */
47
+ --turbo-link-default: #0d74ce; /* color */
48
+ --turbo-selection-fg: #211f26; /* color */
49
+ --turbo-selection-bg: #e3dfe6; /* color */
50
+ --turbo-blockquote-border: #d0cdd7; /* color */
51
+ --turbo-blockquote-fg: #211f26; /* color */
52
+ --turbo-blockquote-bg: #faf9fb; /* color */
53
+ --turbo-code-inline-fg: #211f26; /* color */
54
+ --turbo-code-inline-bg: #f2eff3; /* color */
55
+ --turbo-code-block-fg: #211f26; /* color */
56
+ --turbo-code-block-bg: #f2eff3; /* color */
57
+ --turbo-table-border: #d0cdd7; /* color */
58
+ --turbo-table-stripe: #faf9fb; /* color */
59
+ --turbo-table-thead-bg: #eae7ec; /* color */
60
+ }
@@ -0,0 +1,58 @@
1
+ /* Generated from radix-slate-dark.css */
2
+
3
+ [data-theme="radix-slate-dark"] {
4
+ --turbo-spacing-xs: 0.25rem; /* dimension */
5
+ --turbo-spacing-sm: 0.5rem; /* dimension */
6
+ --turbo-spacing-md: 1rem; /* dimension */
7
+ --turbo-spacing-lg: 1.5rem; /* dimension */
8
+ --turbo-spacing-xl: 2rem; /* dimension */
9
+ --turbo-elevation-none: none; /* shadow */
10
+ --turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
11
+ --turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow */
12
+ --turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow */
13
+ --turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow */
14
+ --turbo-animation-duration-fast: 150ms; /* duration */
15
+ --turbo-animation-duration-normal: 300ms; /* duration */
16
+ --turbo-animation-duration-slow: 500ms; /* duration */
17
+ --turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1); /* cubicBezier */
18
+ --turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1); /* cubicBezier */
19
+ --turbo-opacity-disabled: 0.5; /* number */
20
+ --turbo-opacity-hover: 0.8; /* number */
21
+ --turbo-opacity-pressed: 0.6; /* number */
22
+ --turbo-bg-base: #111113; /* color */
23
+ --turbo-bg-surface: #18191b; /* color */
24
+ --turbo-bg-overlay: #212225; /* color */
25
+ --turbo-text-primary: #edeef0; /* color */
26
+ --turbo-text-secondary: #b0b4ba; /* color */
27
+ --turbo-text-inverse: #111113; /* color */
28
+ --turbo-brand-primary: #0090ff; /* color */
29
+ --turbo-state-info: #00a2c7; /* color */
30
+ --turbo-state-success: #30a46c; /* color */
31
+ --turbo-state-warning: #ffc53d; /* color */
32
+ --turbo-state-danger: #e5484d; /* color */
33
+ --turbo-border-default: #363a3f; /* color */
34
+ --turbo-accent-link: #70b8ff; /* color */
35
+ --turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
36
+ --turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
37
+ --turbo-heading-h1: #3dd68c; /* color */
38
+ --turbo-heading-h2: #70b8ff; /* color */
39
+ --turbo-heading-h3: #4ccce6; /* color */
40
+ --turbo-heading-h4: #ffca16; /* color */
41
+ --turbo-heading-h5: #baa7ff; /* color */
42
+ --turbo-heading-h6: #ff9592; /* color */
43
+ --turbo-body-primary: #edeef0; /* color */
44
+ --turbo-body-secondary: #b0b4ba; /* color */
45
+ --turbo-link-default: #70b8ff; /* color */
46
+ --turbo-selection-fg: #edeef0; /* color */
47
+ --turbo-selection-bg: #2e3135; /* color */
48
+ --turbo-blockquote-border: #43484e; /* color */
49
+ --turbo-blockquote-fg: #edeef0; /* color */
50
+ --turbo-blockquote-bg: #18191b; /* color */
51
+ --turbo-code-inline-fg: #edeef0; /* color */
52
+ --turbo-code-inline-bg: #212225; /* color */
53
+ --turbo-code-block-fg: #edeef0; /* color */
54
+ --turbo-code-block-bg: #212225; /* color */
55
+ --turbo-table-border: #43484e; /* color */
56
+ --turbo-table-stripe: #18191b; /* color */
57
+ --turbo-table-thead-bg: #272a2d; /* color */
58
+ }