@24vlh/vds 0.1.0 → 0.1.1

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.
@@ -1,659 +1 @@
1
- /************************************************************
2
- * VLAH DESIGN SYSTEM (VDS) - Slate Theme
3
- *
4
- * Responsibilities:
5
- * - Provide full light and dark palettes for the Slate identity
6
- * - Map brand, neutral, and semantic colours into VDS tokens
7
- * for text, surfaces, borders, icons, overlays, and states
8
- * - Supply extended theme tokens for tables, hero, typography,
9
- * code, focus rings, and selection behaviour
10
- * - Ensure structural parity between light and dark modes so
11
- * components can switch themes without changing logic
12
- *
13
- * System Notes:
14
- * - Pure token layer: no layout or component rules
15
- * - Exposed under :root[data-theme="slate-light" | "slate-dark"]
16
- * - Must be loaded after primitives.css and before components
17
- * - All components are expected to consume these tokens only,
18
- * never hard-coded HEX values
19
- ************************************************************/
20
-
21
- /* ---------------------------------------------------------
22
- SLATE - LIGHT THEME
23
- --------------------------------------------------------- */
24
-
25
- :root[data-theme="slate-light"] {
26
- /* Core brand */
27
- --color-brand-ink: #2A2F33;
28
- --color-brand-accent: #997939;
29
-
30
- /* Backgrounds */
31
- --color-bg: #F6F5F1;
32
- --color-bg-soft: #F1EDE3;
33
- --color-bg-elevated: #FFFFFF;
34
-
35
- /* Surfaces */
36
- --color-surface: #FFFFFF;
37
- --color-surface-subtle: #EEEDE8;
38
- --color-surface-hover: #E9E6DF;
39
-
40
- /* Borders */
41
- --color-border-subtle: #D4D2CD;
42
- --color-border-strong: #A6A8A2;
43
-
44
- /* Text */
45
- --color-text: #2A2F33;
46
- --color-text-muted: #4A4F53;
47
- --color-text-soft: #B6B1A8;
48
- --color-text-on-soft: #2A2F33;
49
- --color-text-on-strong: #FFFFFF;
50
-
51
- /* Icons */
52
- --color-icon-muted: #4A4F53;
53
- --color-icon-strong: #2A2F33;
54
- --color-icon-on-accent: #FFFFFF;
55
-
56
- /* Shadows */
57
- --shadow-1: 0 8px 20px rgba(0, 0, 0, 0.05);
58
- --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.08);
59
- --shadow-3: 0 16px 40px rgba(0, 0, 0, 0.11);
60
-
61
- /* Accent */
62
- --color-accent: #C6A667;
63
- --color-accent-soft: #F1E8D8;
64
- --color-accent-strong: #997939;
65
- --color-on-accent: #232222;
66
- --color-accent-soft-hover: #E8DDC7;
67
-
68
- /* Mono */
69
- --color-mono: #505855;
70
- --color-mono-soft: #D6D0C7;
71
- --color-mono-strong: #2A2F33;
72
- --color-on-mono: #FFFFFF;
73
- --color-mono-soft-hover: #C8C3BB;
74
-
75
- /* States */
76
- --color-success: #3A8F6E;
77
- --color-success-soft: #E8F4EE;
78
- --color-success-strong: #2E6F55;
79
- --color-on-success: #2A2F33;
80
-
81
- --color-info: #3A6F95;
82
- --color-info-soft: #E8F1F8;
83
- --color-info-strong: #325A78;
84
- --color-on-info: #2A2F33;
85
-
86
- --color-warning: #C29A41;
87
- --color-warning-soft: #FBF6E8;
88
- --color-warning-strong: #9A7A33;
89
- --color-on-warning: #2A2F33;
90
-
91
- --color-danger: #8B2C2C;
92
- --color-danger-soft: #F5E8E8;
93
- --color-danger-strong: #742424;
94
- --color-on-danger: #2A2F33;
95
-
96
- --color-error: #8B2C2C;
97
- --color-error-soft: #F5E8E8;
98
- --color-error-strong: #742424;
99
- --color-on-error: #2A2F33;
100
-
101
- /* Neutral */
102
- --color-muted-bg: #DCDDDB;
103
- --color-muted-border: #C5C5C3;
104
-
105
- /* Header / footer */
106
- --color-header-bg: #F6F5F1;
107
- --color-header-border: #D4D2CD;
108
- --color-footer-bg: #1C2A38;
109
- --color-footer-text: #FFFFFF;
110
-
111
- /* Logo integration */
112
- --color-logo-ink: #2A2F33;
113
- --color-logo-accent: #997939;
114
- --color-logo-mono: #000000;
115
- --color-logo-ink-inverse: #F6F5F1;
116
- --color-logo-accent-inverse: #C6A667;
117
- --color-logo-footer-ink: var(--color-footer-text);
118
- --color-logo-footer-accent: var(--color-brand-accent);
119
-
120
- /* Links */
121
- --link-text: #997939;
122
- --link-text-hover: #8C713A;
123
- --link-text-active: #2A2F33;
124
-
125
- /* Hero translucency */
126
- --color-surface-translucent-strong: rgba(255, 255, 255, 0.28);
127
-
128
- /* Forms */
129
- --color-placeholder: rgba(0, 0, 0, 0.30);
130
- --slider-track-bg: rgba(154, 122, 51, 0.25);
131
- --slider-thumb-bg: #997939;
132
-
133
- /* Overlay backdrops */
134
- --overlay-backdrop-default: rgba(0, 0, 0, 0.45);
135
- --overlay-backdrop-light: rgba(0, 0, 0, 0.25);
136
- --overlay-backdrop-heavy: rgba(0, 0, 0, 0.60);
137
- --overlay-backdrop-loading: rgba(0, 0, 0, 0.25);
138
-
139
- /* Tables */
140
- --color-surface-soft: rgba(0, 0, 0, 0.04);
141
-
142
- /* Table trend + rows */
143
- --table-trend-up: #3A8F6E;
144
- --table-trend-down: #8B2C2C;
145
- --table-trend-flat: #AAAEB0;
146
-
147
- --table-row-good-bg: #E8F4EE;
148
- --table-row-bad-bg: #F5E8E8;
149
- --table-row-warning-bg: #FBF6E8;
150
- --table-row-info-bg: #E8F1F8;
151
- --table-row-muted-bg: #DCDDDB;
152
- --table-row-strange-bg: #F1E8ED;
153
- --table-row-flagged-bg: #D7B6A7;
154
- --table-row-curious-bg: #EFEBE0;
155
-
156
- --table-row-good-text: #2A2F33;
157
- --table-row-bad-text: #2A2F33;
158
- --table-row-warning-text: #2A2F33;
159
- --table-row-info-text: #2A2F33;
160
- --table-row-muted-text: #4A4F53;
161
- --table-row-strange-text: #2A2F33;
162
- --table-row-flagged-text: #2A2F33;
163
- --table-row-curious-text: #2A2F33;
164
-
165
- --table-row-flagged-border: #8B2C2C;
166
- --table-row-curious-border: #997939;
167
-
168
- /* Code */
169
- --code-bg: #F1EFE9;
170
- --code-border: #D4D2CD;
171
- --code-inline-bg: rgba(0, 0, 0, 0.04);
172
- --code-inline-border: rgba(0, 0, 0, 0.18);
173
-
174
- /* Typography */
175
- --figure-caption-color: #4A4F53;
176
- --code-block-bg: #EEECE6;
177
- --footnote-color: #8F979F;
178
-
179
- /* Blockquote */
180
- --blockquote-border: #D4D2CD;
181
- --blockquote-text: #5F6B78;
182
-
183
- /* Selection */
184
- --color-selection-bg: rgba(153, 121, 57, 0.35);
185
- --color-selection-text: #2A2F33;
186
-
187
- /* Syntax highlight */
188
- --code-syntax-keyword: #8C713A;
189
- --code-syntax-string: #3A8F6E;
190
- --code-syntax-number: #3A6F95;
191
- --code-syntax-operator: #2A2F33;
192
- --code-syntax-comment: #8F979F;
193
- --code-syntax-constant: #997939;
194
- --code-syntax-function: #8C713A;
195
- --code-syntax-variable: #2A2F33;
196
-
197
- /* SEMANTIC STRONG STACKS */
198
- --semantic-info-bg: #E8F1F8;
199
- --semantic-info-border: #3A6F95;
200
- --semantic-info-text: #325A78;
201
-
202
- --semantic-warning-bg: #FBF6E8;
203
- --semantic-warning-border: #C29A41;
204
- --semantic-warning-text: #9A7A33;
205
-
206
- --semantic-success-bg: #E8F4EE;
207
- --semantic-success-border: #3A8F6E;
208
- --semantic-success-text: #2E6F55;
209
-
210
- --semantic-danger-bg: #F5E8E8;
211
- --semantic-danger-border: #8B2C2C;
212
- --semantic-danger-text: #742424;
213
-
214
- --semantic-error-bg: #F5E8E8;
215
- --semantic-error-border: #8B2C2C;
216
- --semantic-error-text: #742424;
217
-
218
- /* Strong variants */
219
- --semantic-error-bg-strong: #F0E0E0;
220
- --semantic-error-border-strong: #8B2C2C;
221
- --semantic-error-text-strong: #742424;
222
-
223
- --semantic-warning-bg-strong: #F3E7D2;
224
- --semantic-warning-border-strong: #C29A41;
225
- --semantic-warning-text-strong: #A68335;
226
-
227
- --semantic-success-bg-strong: #E0EEE5;
228
- --semantic-success-border-strong: #3A8F6E;
229
- --semantic-success-text-strong: #2E6F55;
230
-
231
- --semantic-info-bg-strong: #E2EBF1;
232
- --semantic-info-border-strong: #3A6F95;
233
- --semantic-info-text-strong: #325A78;
234
-
235
- /* HERO */
236
- --hero-error-bg: #F1E1DE;
237
- --hero-error-border: #8B2C2C;
238
- --hero-error-banner-bg: #F1E1DE;
239
- --hero-error-banner-border: #8B2C2C;
240
- --hero-error-title: #8B2C2C;
241
-
242
- --hero-trend-up: #3A8F6E;
243
- --hero-trend-down: #8B2C2C;
244
- --hero-accent-line: #997939;
245
-
246
- /* ACCENT SURFACES (light) */
247
- --accent-soft-surface: #f5efe0;
248
- --accent-soft-surface-strong: #E7D8AF;
249
- --accent-soft-border: #B38010;
250
- --accent-soft-shadow: rgba(179, 128, 16, 0.25);
251
- --accent-soft-on: #000000;
252
-
253
- /* INFO SURFACES */
254
- --info-soft-surface: #E4EEF3;
255
- --info-soft-border: #3A6F95;
256
- --info-soft-on: #1C2A38;
257
-
258
- /* WARNING SURFACES */
259
- --warning-soft-surface: #FFF9EC;
260
- --warning-soft-border: #C29A41;
261
- --warning-soft-on: #1C2A38;
262
-
263
- /* DANGER SURFACES */
264
- --danger-soft-surface: #F7E9E7;
265
- --danger-soft-border: #8B2C2C;
266
- --danger-soft-on: #611F1F;
267
-
268
- /* DOC BLOCK */
269
- --doc-block-action-hover-bg: #DBDDDD;
270
- --doc-block-action-hover-border: var(--color-border-strong);
271
- --doc-block-action-hover-text: var(--color-text);
272
-
273
- /* BUTTON SOFT */
274
- --button-soft-border: rgba(0, 0, 0, 0.06);
275
- --button-soft-border-hover: rgba(0, 0, 0, 0.12);
276
- --button-soft-text: var(--color-text);
277
-
278
- /* OUTLINE BUTTON HOVERS */
279
- --button-outline-accent-hover-bg: rgba(198, 166, 103, 0.12);
280
- --button-outline-accent-hover-border: var(--color-accent-strong);
281
-
282
- --button-outline-danger-hover-bg: rgba(139, 44, 44, 0.10);
283
- --button-outline-danger-hover-border: var(--color-danger-strong);
284
-
285
- --button-outline-info-hover-bg: rgba(58, 111, 149, 0.10);
286
- --button-outline-info-hover-border: var(--color-info-strong);
287
-
288
- --button-outline-success-hover-bg: rgba(58, 143, 110, 0.12);
289
- --button-outline-success-hover-border: var(--color-success-strong);
290
-
291
- --button-outline-warning-hover-bg: rgba(194, 154, 65, 0.14);
292
- --button-outline-warning-hover-border: var(--color-warning-strong);
293
-
294
- /* BRAND SECTIONS */
295
- --section-brand-eyebrow: #000000;
296
- --section-brand-subtitle: #000000;
297
- --section-brand-title: #1C2A38;
298
- --section-brand-body: #1C2A38;
299
- --section-brand-metric-label: #233443;
300
- --section-brand-metric-value: #1C2A38;
301
-
302
- --section-brand-accent-bg: radial-gradient(circle at top left,
303
- rgba(198, 166, 103, 0.25),
304
- transparent),
305
- radial-gradient(circle at bottom right,
306
- rgba(198, 166, 103, 0.35),
307
- transparent);
308
-
309
- /* Success extended */
310
- --success-soft-surface-strong: #D2EADD;
311
- --color-success-soft-hover: #D2EADD;
312
- --success-soft-surface: #E2F1E9;
313
- --success-soft-border: #3A8F6E;
314
- --success-soft-on: #1C2A38;
315
-
316
- /* Warning extended */
317
- --warning-soft-surface-strong: #EDDCA5;
318
- --color-warning-soft-hover: #EDDCA5;
319
-
320
- /* Info extended */
321
- --info-soft-surface-strong: #D5E4EC;
322
- --color-info-soft-hover: #D5E4EC;
323
-
324
- /* Danger extended */
325
- --danger-soft-surface-strong: #E8D6D4;
326
- --color-danger-soft-hover: #E8D6D4;
327
-
328
- /* Hero */
329
- --hero-trend-neutral: var(--color-text-muted);
330
- --hero-error-text: var(--semantic-error-text-strong, var(--color-danger-strong));
331
-
332
- --hero-metric-bg: var(--color-surface);
333
-
334
- --flow-zebra-bg: var(--color-surface-subtle);
335
- --flow-zebra-bg-alt: var(--color-muted-bg);
336
-
337
- --focus-ring-color: #997939;
338
- }
339
-
340
- /* ---------------------------------------------------------
341
- SLATE - DARK THEME
342
- Inverts background/text, preserves hierarchy.
343
- --------------------------------------------------------- */
344
-
345
- :root[data-theme="slate-dark"] {
346
- /* Core brand */
347
- --color-brand-ink: #F6F5F1;
348
- --color-brand-accent: #C6A667;
349
-
350
- /* Backgrounds */
351
- --color-bg: #1C2A38;
352
- --color-bg-soft: #36424E;
353
- --color-bg-elevated: #3F4A56;
354
-
355
- /* Surfaces */
356
- --color-surface: #273949;
357
- --color-surface-subtle: #2F4B63;
358
- --color-surface-hover: #434F59;
359
-
360
- /* Borders */
361
- --color-border-subtle: #727b89;
362
- --color-border-strong: #515961;
363
-
364
- /* Text */
365
- --color-text: #F6F5F1;
366
- --color-text-muted: #CACCCC;
367
- --color-text-soft: #9FA4A7;
368
- --color-text-on-soft: #F6F5F1;
369
- --color-text-on-strong: #F6F5F1;
370
-
371
- /* Icons */
372
- --color-icon-muted: #CACCCC;
373
- --color-icon-strong: #F6F5F1;
374
- --color-icon-on-accent: #1C2A38;
375
-
376
- /* Shadows */
377
- --shadow-1: 0 8px 20px rgba(0, 0, 0, 0.45);
378
- --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.55);
379
- --shadow-3: 0 16px 40px rgba(0, 0, 0, 0.65);
380
-
381
- /* Accent */
382
- --color-accent: #1371a3;
383
- --color-accent-soft: #0582c5;
384
- --color-accent-strong: #0d293d;
385
- --color-on-accent: #dddddd;
386
- --color-accent-soft-hover: #003650;
387
-
388
- /* Mono */
389
- --color-mono: #505e65;
390
- --color-mono-soft: #080f14;
391
- --color-mono-strong: #274f65;
392
- --color-on-mono: #dddddd;
393
- --color-mono-soft-hover: #142e3e;
394
-
395
- /* States */
396
- --color-success: #4CA883;
397
- --color-success-soft: #2F5C56;
398
- --color-success-strong: #76BB9E;
399
- --color-on-success: #F6F5F1;
400
-
401
- --color-info: #4A88B5;
402
- --color-info-soft: #2E506A;
403
- --color-info-strong: #75A3C4;
404
- --color-on-info: #F6F5F1;
405
-
406
- --color-warning: #D1AE52;
407
- --color-warning-soft: #645F42;
408
- --color-warning-strong: #DAC07A;
409
- --color-on-warning: #F6F5F1;
410
-
411
- --color-danger: #A84242;
412
- --color-danger-soft: #54343C;
413
- --color-danger-strong: #dd9795;
414
- --color-on-danger: #F6F5F1;
415
-
416
- --color-error: #A84242;
417
- --color-error-soft: #54343C;
418
- --color-error-strong: #dd9795;
419
- --color-on-error: #F6F5F1;
420
-
421
- /* Neutral */
422
- --color-muted-bg: #4B6073;
423
- --color-muted-border: #59636C;
424
-
425
- /* Header / footer */
426
- --color-header-bg: #1C2A38;
427
- --color-header-border: #59636C;
428
- --color-footer-bg: #141D29;
429
- --color-footer-text: #F6F5F1;
430
-
431
- /* Logo integration */
432
- --color-logo-ink: #F6F5F1;
433
- --color-logo-accent: #C6A667;
434
- --color-logo-mono: #FFFFFF;
435
- --color-logo-ink-inverse: #F6F5F1;
436
- --color-logo-accent-inverse: #C6A667;
437
- --color-logo-footer-ink: var(--color-footer-text);
438
- --color-logo-footer-accent: var(--color-brand-accent);
439
-
440
- /* Links */
441
- --link-text: #D7C297;
442
- --link-text-hover: #C6A667;
443
- --link-text-active: #F6F5F1;
444
-
445
- /* Hero translucency */
446
- --color-surface-translucent-strong: rgba(255, 255, 255, 0.28);
447
-
448
- /* Forms */
449
- --color-placeholder: rgba(246, 245, 241, 0.30);
450
- --slider-track-bg: rgba(246, 245, 241, 0.22);
451
- --slider-thumb-bg: #C6A667;
452
-
453
- /* Overlay backdrops */
454
- --overlay-backdrop-default: rgba(0, 0, 0, 0.45);
455
- --overlay-backdrop-light: rgba(0, 0, 0, 0.25);
456
- --overlay-backdrop-heavy: rgba(0, 0, 0, 0.60);
457
- --overlay-backdrop-loading: rgba(0, 0, 0, 0.25);
458
-
459
- /* Tables */
460
- --color-surface-soft: rgba(246, 245, 241, 0.08);
461
-
462
- /* Table trend + rows */
463
- --table-trend-up: #34E39A;
464
- --table-trend-down: #FF7F7E;
465
- --table-trend-flat: #9FA4A7;
466
-
467
- --table-row-good-bg: #204943;
468
- --table-row-bad-bg: #33141B;
469
- --table-row-warning-bg: #554900;
470
- --table-row-info-bg: #00223D;
471
- --table-row-muted-bg: #424E59;
472
- --table-row-strange-bg: #585548;
473
- --table-row-flagged-bg: #6B3715;
474
- --table-row-curious-bg: #333231;
475
-
476
- --table-row-good-text: #DCE9E0;
477
- --table-row-bad-text: #EADAD7;
478
- --table-row-warning-text: #F0EAD9;
479
- --table-row-info-text: #DCE5E8;
480
- --table-row-muted-text: #CACCCC;
481
- --table-row-strange-text: #ECE5D5;
482
- --table-row-flagged-text: #EADAD7;
483
- --table-row-curious-text: #F6F5F1;
484
-
485
- --table-row-flagged-border: #A84242;
486
- --table-row-curious-border: #C6A667;
487
-
488
- /* Code */
489
- --code-bg: #434F59;
490
- --code-border: #59636C;
491
-
492
- --code-inline-bg: rgba(255, 255, 255, 0.09);
493
- --code-inline-border: rgba(255, 255, 255, 0.18);
494
-
495
- /* Typography */
496
- --figure-caption-color: #CACCCC;
497
- --code-block-bg: #232f39;
498
- --footnote-color: #9FA4A7;
499
-
500
- /* Blockquote */
501
- --blockquote-border: #59636C;
502
- --blockquote-text: #CACCCC;
503
-
504
- /* Selection */
505
- --color-selection-bg: rgba(198, 166, 103, 0.30);
506
- --color-selection-text: #F6F5F1;
507
-
508
- /* Syntax highlight */
509
- --code-syntax-keyword: #D7C297;
510
- --code-syntax-string: #4CA883;
511
- --code-syntax-number: #4A88B5;
512
- --code-syntax-operator: #F6F5F1;
513
- --code-syntax-comment: #9FA4A7;
514
- --code-syntax-constant: #C6A667;
515
- --code-syntax-function: #D7C297;
516
- --code-syntax-variable: #F6F5F1;
517
-
518
- /* SEMANTIC STRONG STACKS */
519
- --semantic-info-bg: #2E506A;
520
- --semantic-info-border: #4A88B5;
521
- --semantic-info-text: #D4DFE5;
522
-
523
- --semantic-warning-bg: #645F42;
524
- --semantic-warning-border: #D1AE52;
525
- --semantic-warning-text: #EFE7D1;
526
-
527
- --semantic-success-bg: #2F5C56;
528
- --semantic-success-border: #4CA883;
529
- --semantic-success-text: #D4E6DB;
530
-
531
- --semantic-danger-bg: #54343C;
532
- --semantic-danger-border: #A84242;
533
- --semantic-danger-text: #E6D1CE;
534
-
535
- --semantic-error-bg: #54343C;
536
- --semantic-error-border: #A84242;
537
- --semantic-error-text: #E6D1CE;
538
-
539
- /* Strong variants */
540
- --semantic-error-bg-strong: #40272A;
541
- --semantic-error-border-strong: #A84242;
542
- --semantic-error-text-strong: #E6D1CE;
543
-
544
- --semantic-warning-bg-strong: #524A2F;
545
- --semantic-warning-border-strong: #D1AE52;
546
- --semantic-warning-text-strong: #EFE7D1;
547
-
548
- --semantic-success-bg-strong: #264C46;
549
- --semantic-success-border-strong: #4CA883;
550
- --semantic-success-text-strong: #CFE6D7;
551
-
552
- --semantic-info-bg-strong: #244057;
553
- --semantic-info-border-strong: #4A88B5;
554
- --semantic-info-text-strong: #D4DFE5;
555
-
556
- /* HERO ERROR (Slate logic preserved) */
557
- --hero-error-bg: #40272A;
558
- --hero-error-border: #A84242;
559
- --hero-error-banner-bg: #3A2326;
560
- --hero-error-banner-border: #BC6F6E;
561
- --hero-error-title: #BC6F6E;
562
-
563
- --hero-trend-up: #4CA883;
564
- --hero-trend-down: #A84242;
565
- --hero-accent-line: #C6A667;
566
-
567
- /* ACCENT SURFACES (dark) */
568
- --accent-soft-surface: #004367;
569
- --accent-soft-surface-strong: #025785;
570
- --accent-soft-border: #1691d3;
571
- --accent-soft-shadow: rgba(22, 145, 211, 0.30);
572
- --accent-soft-on: #F6F5F1;
573
-
574
- /* INFO SURFACES */
575
- --info-soft-surface: #023d5d;
576
- --info-soft-border: #4A88B5;
577
- --info-soft-on: #C7D8E4;
578
-
579
- /* WARNING SURFACES */
580
- --warning-soft-surface: #463E28;
581
- --warning-soft-border: #D1AE52;
582
- --warning-soft-on: #EFE7D1;
583
-
584
- /* DANGER SURFACES */
585
- --danger-soft-surface: #3C2226;
586
- --danger-soft-border: #A84242;
587
- --danger-soft-on: #c3877e;
588
-
589
- /* DOC BLOCK */
590
- --doc-block-action-hover-bg: #33373d;
591
- --doc-block-action-hover-border: var(--color-border-strong);
592
- --doc-block-action-hover-text: var(--color-text);
593
-
594
- /* BUTTON SOFT */
595
- --button-soft-border: rgba(255, 255, 255, 0.04);
596
- --button-soft-border-hover: rgba(255, 255, 255, 0.12);
597
- --button-soft-text: var(--color-text);
598
-
599
- /* OUTLINE BUTTON HOVERS */
600
- --button-outline-accent-hover-bg: rgba(19, 113, 163, 0.12);
601
- --button-outline-accent-hover-border: var(--color-accent-strong);
602
-
603
- --button-outline-danger-hover-bg: rgba(168, 66, 66, 0.12);
604
- --button-outline-danger-hover-border: var(--color-danger-strong);
605
-
606
- --button-outline-info-hover-bg: rgba(74, 136, 181, 0.12);
607
- --button-outline-info-hover-border: var(--color-info-strong);
608
-
609
- --button-outline-success-hover-bg: rgba(76, 168, 131, 0.12);
610
- --button-outline-success-hover-border: var(--color-success-strong);
611
-
612
- --button-outline-warning-hover-bg: rgba(209, 174, 82, 0.14);
613
- --button-outline-warning-hover-border: var(--color-warning-strong);
614
-
615
- /* BRAND SECTIONS */
616
- --section-brand-eyebrow: #E5E8EB;
617
- --section-brand-subtitle: #E5E8EB;
618
- --section-brand-title: #FFFFFF;
619
- --section-brand-body: #CACCCC;
620
- --section-brand-metric-label: #E5E8EB;
621
- --section-brand-metric-value: #FFFFFF;
622
-
623
- --section-brand-accent-bg: radial-gradient(circle at top left,
624
- rgba(198, 166, 103, 0.25),
625
- transparent),
626
- radial-gradient(circle at bottom right,
627
- rgba(198, 166, 103, 0.35),
628
- transparent);
629
-
630
- /* Success extended */
631
- --success-soft-surface-strong: #264C46;
632
- --color-success-soft-hover: #2F5C56;
633
- --success-soft-surface: #2F5C56;
634
- --success-soft-border: #4CA883;
635
- --success-soft-on: #D4E6DB;
636
-
637
- /* Warning extended */
638
- --warning-soft-surface-strong: #524A2F;
639
- --color-warning-soft-hover: #645F42;
640
-
641
- /* Info extended */
642
- --info-soft-surface-strong: #244057;
643
- --color-info-soft-hover: #2E506A;
644
-
645
- /* Danger extended */
646
- --danger-soft-surface-strong: #3C2226;
647
- --color-danger-soft-hover: #54343C;
648
-
649
- /* Hero */
650
- --hero-trend-neutral: var(--color-text-muted);
651
- --hero-error-text: var(--semantic-error-text-strong, var(--color-danger-strong));
652
-
653
- --hero-metric-bg: #505B64;
654
-
655
- --flow-zebra-bg: #434F59;
656
- --flow-zebra-bg-alt: #323E4A;
657
-
658
- --focus-ring-color: #D7C297;
659
- }
1
+ :root[data-theme=slate-light]{--color-brand-ink:#2a2f33;--color-brand-accent:#997939;--color-bg:#f6f5f1;--color-bg-soft:#f1ede3;--color-bg-elevated:#fff;--color-surface:#fff;--color-surface-subtle:#eeede8;--color-surface-hover:#e9e6df;--color-border-subtle:#d4d2cd;--color-border-strong:#a6a8a2;--color-text:#2a2f33;--color-text-muted:#4a4f53;--color-text-soft:#b6b1a8;--color-text-on-soft:#2a2f33;--color-text-on-strong:#fff;--color-icon-muted:#4a4f53;--color-icon-strong:#2a2f33;--color-icon-on-accent:#fff;--shadow-1:0 8px 20px rgba(0,0,0,.05);--shadow-2:0 10px 30px rgba(0,0,0,.08);--shadow-3:0 16px 40px rgba(0,0,0,.11);--color-accent:#c6a667;--color-accent-soft:#f1e8d8;--color-accent-strong:#997939;--color-on-accent:#232222;--color-accent-soft-hover:#e8ddc7;--color-mono:#505855;--color-mono-soft:#d6d0c7;--color-mono-strong:#2a2f33;--color-on-mono:#fff;--color-mono-soft-hover:#c8c3bb;--color-success:#3a8f6e;--color-success-soft:#e8f4ee;--color-success-strong:#2e6f55;--color-on-success:#2a2f33;--color-info:#3a6f95;--color-info-soft:#e8f1f8;--color-info-strong:#325a78;--color-on-info:#2a2f33;--color-warning:#c29a41;--color-warning-soft:#fbf6e8;--color-warning-strong:#9a7a33;--color-on-warning:#2a2f33;--color-danger:#8b2c2c;--color-danger-soft:#f5e8e8;--color-danger-strong:#742424;--color-on-danger:#2a2f33;--color-error:#8b2c2c;--color-error-soft:#f5e8e8;--color-error-strong:#742424;--color-on-error:#2a2f33;--color-muted-bg:#dcdddb;--color-muted-border:#c5c5c3;--color-header-bg:#f6f5f1;--color-header-border:#d4d2cd;--color-footer-bg:#1c2a38;--color-footer-text:#fff;--color-logo-ink:#2a2f33;--color-logo-accent:#997939;--color-logo-mono:#000;--color-logo-ink-inverse:#f6f5f1;--color-logo-accent-inverse:#c6a667;--color-logo-footer-ink:var(--color-footer-text);--color-logo-footer-accent:var(--color-brand-accent);--link-text:#997939;--link-text-hover:#8c713a;--link-text-active:#2a2f33;--color-surface-translucent-strong:hsla(0,0%,100%,.28);--color-placeholder:rgba(0,0,0,.3);--slider-track-bg:rgba(154,122,51,.25);--slider-thumb-bg:#997939;--overlay-backdrop-default:rgba(0,0,0,.45);--overlay-backdrop-light:rgba(0,0,0,.25);--overlay-backdrop-heavy:rgba(0,0,0,.6);--overlay-backdrop-loading:rgba(0,0,0,.25);--color-surface-soft:rgba(0,0,0,.04);--table-trend-up:#3a8f6e;--table-trend-down:#8b2c2c;--table-trend-flat:#aaaeb0;--table-row-good-bg:#e8f4ee;--table-row-bad-bg:#f5e8e8;--table-row-warning-bg:#fbf6e8;--table-row-info-bg:#e8f1f8;--table-row-muted-bg:#dcdddb;--table-row-strange-bg:#f1e8ed;--table-row-flagged-bg:#d7b6a7;--table-row-curious-bg:#efebe0;--table-row-good-text:#2a2f33;--table-row-bad-text:#2a2f33;--table-row-warning-text:#2a2f33;--table-row-info-text:#2a2f33;--table-row-muted-text:#4a4f53;--table-row-strange-text:#2a2f33;--table-row-flagged-text:#2a2f33;--table-row-curious-text:#2a2f33;--table-row-flagged-border:#8b2c2c;--table-row-curious-border:#997939;--code-bg:#f1efe9;--code-border:#d4d2cd;--code-inline-bg:rgba(0,0,0,.04);--code-inline-border:rgba(0,0,0,.18);--figure-caption-color:#4a4f53;--code-block-bg:#eeece6;--footnote-color:#8f979f;--blockquote-border:#d4d2cd;--blockquote-text:#5f6b78;--color-selection-bg:rgba(153,121,57,.35);--color-selection-text:#2a2f33;--code-syntax-keyword:#8c713a;--code-syntax-string:#3a8f6e;--code-syntax-number:#3a6f95;--code-syntax-operator:#2a2f33;--code-syntax-comment:#8f979f;--code-syntax-constant:#997939;--code-syntax-function:#8c713a;--code-syntax-variable:#2a2f33;--semantic-info-bg:#e8f1f8;--semantic-info-border:#3a6f95;--semantic-info-text:#325a78;--semantic-warning-bg:#fbf6e8;--semantic-warning-border:#c29a41;--semantic-warning-text:#9a7a33;--semantic-success-bg:#e8f4ee;--semantic-success-border:#3a8f6e;--semantic-success-text:#2e6f55;--semantic-danger-bg:#f5e8e8;--semantic-danger-border:#8b2c2c;--semantic-danger-text:#742424;--semantic-error-bg:#f5e8e8;--semantic-error-border:#8b2c2c;--semantic-error-text:#742424;--semantic-error-bg-strong:#f0e0e0;--semantic-error-border-strong:#8b2c2c;--semantic-error-text-strong:#742424;--semantic-warning-bg-strong:#f3e7d2;--semantic-warning-border-strong:#c29a41;--semantic-warning-text-strong:#a68335;--semantic-success-bg-strong:#e0eee5;--semantic-success-border-strong:#3a8f6e;--semantic-success-text-strong:#2e6f55;--semantic-info-bg-strong:#e2ebf1;--semantic-info-border-strong:#3a6f95;--semantic-info-text-strong:#325a78;--hero-error-bg:#f1e1de;--hero-error-border:#8b2c2c;--hero-error-banner-bg:#f1e1de;--hero-error-banner-border:#8b2c2c;--hero-error-title:#8b2c2c;--hero-trend-up:#3a8f6e;--hero-trend-down:#8b2c2c;--hero-accent-line:#997939;--accent-soft-surface:#f5efe0;--accent-soft-surface-strong:#e7d8af;--accent-soft-border:#b38010;--accent-soft-shadow:rgba(179,128,16,.25);--accent-soft-on:#000;--info-soft-surface:#e4eef3;--info-soft-border:#3a6f95;--info-soft-on:#1c2a38;--warning-soft-surface:#fff9ec;--warning-soft-border:#c29a41;--warning-soft-on:#1c2a38;--danger-soft-surface:#f7e9e7;--danger-soft-border:#8b2c2c;--danger-soft-on:#611f1f;--doc-block-action-hover-bg:#dbdddd;--doc-block-action-hover-border:var(--color-border-strong);--doc-block-action-hover-text:var(--color-text);--button-soft-border:rgba(0,0,0,.06);--button-soft-border-hover:rgba(0,0,0,.12);--button-soft-text:var(--color-text);--button-outline-accent-hover-bg:hsla(40,45%,59%,.12);--button-outline-accent-hover-border:var(--color-accent-strong);--button-outline-danger-hover-bg:rgba(139,44,44,.1);--button-outline-danger-hover-border:var(--color-danger-strong);--button-outline-info-hover-bg:rgba(58,111,149,.1);--button-outline-info-hover-border:var(--color-info-strong);--button-outline-success-hover-bg:rgba(58,143,110,.12);--button-outline-success-hover-border:var(--color-success-strong);--button-outline-warning-hover-bg:rgba(194,154,65,.14);--button-outline-warning-hover-border:var(--color-warning-strong);--section-brand-eyebrow:#000;--section-brand-subtitle:#000;--section-brand-title:#1c2a38;--section-brand-body:#1c2a38;--section-brand-metric-label:#233443;--section-brand-metric-value:#1c2a38;--section-brand-accent-bg:radial-gradient(circle at top left,hsla(40,45%,59%,.25),transparent),radial-gradient(circle at bottom right,hsla(40,45%,59%,.35),transparent);--success-soft-surface-strong:#d2eadd;--color-success-soft-hover:#d2eadd;--success-soft-surface:#e2f1e9;--success-soft-border:#3a8f6e;--success-soft-on:#1c2a38;--warning-soft-surface-strong:#eddca5;--color-warning-soft-hover:#eddca5;--info-soft-surface-strong:#d5e4ec;--color-info-soft-hover:#d5e4ec;--danger-soft-surface-strong:#e8d6d4;--color-danger-soft-hover:#e8d6d4;--hero-trend-neutral:var(--color-text-muted);--hero-error-text:var(--semantic-error-text-strong,var(--color-danger-strong));--hero-metric-bg:var(--color-surface);--flow-zebra-bg:var(--color-surface-subtle);--flow-zebra-bg-alt:var(--color-muted-bg);--focus-ring-color:#997939}:root[data-theme=slate-dark]{--color-brand-ink:#f6f5f1;--color-brand-accent:#c6a667;--color-bg:#1c2a38;--color-bg-soft:#36424e;--color-bg-elevated:#3f4a56;--color-surface:#273949;--color-surface-subtle:#2f4b63;--color-surface-hover:#434f59;--color-border-subtle:#727b89;--color-border-strong:#515961;--color-text:#f6f5f1;--color-text-muted:#cacccc;--color-text-soft:#9fa4a7;--color-text-on-soft:#f6f5f1;--color-text-on-strong:#f6f5f1;--color-icon-muted:#cacccc;--color-icon-strong:#f6f5f1;--color-icon-on-accent:#1c2a38;--shadow-1:0 8px 20px rgba(0,0,0,.45);--shadow-2:0 10px 30px rgba(0,0,0,.55);--shadow-3:0 16px 40px rgba(0,0,0,.65);--color-accent:#1371a3;--color-accent-soft:#0582c5;--color-accent-strong:#0d293d;--color-on-accent:#ddd;--color-accent-soft-hover:#003650;--color-mono:#505e65;--color-mono-soft:#080f14;--color-mono-strong:#274f65;--color-on-mono:#ddd;--color-mono-soft-hover:#142e3e;--color-success:#4ca883;--color-success-soft:#2f5c56;--color-success-strong:#76bb9e;--color-on-success:#f6f5f1;--color-info:#4a88b5;--color-info-soft:#2e506a;--color-info-strong:#75a3c4;--color-on-info:#f6f5f1;--color-warning:#d1ae52;--color-warning-soft:#645f42;--color-warning-strong:#dac07a;--color-on-warning:#f6f5f1;--color-danger:#a84242;--color-danger-soft:#54343c;--color-danger-strong:#dd9795;--color-on-danger:#f6f5f1;--color-error:#a84242;--color-error-soft:#54343c;--color-error-strong:#dd9795;--color-on-error:#f6f5f1;--color-muted-bg:#4b6073;--color-muted-border:#59636c;--color-header-bg:#1c2a38;--color-header-border:#59636c;--color-footer-bg:#141d29;--color-footer-text:#f6f5f1;--color-logo-ink:#f6f5f1;--color-logo-accent:#c6a667;--color-logo-mono:#fff;--color-logo-ink-inverse:#f6f5f1;--color-logo-accent-inverse:#c6a667;--color-logo-footer-ink:var(--color-footer-text);--color-logo-footer-accent:var(--color-brand-accent);--link-text:#d7c297;--link-text-hover:#c6a667;--link-text-active:#f6f5f1;--color-surface-translucent-strong:hsla(0,0%,100%,.28);--color-placeholder:hsla(48,22%,95%,.3);--slider-track-bg:hsla(48,22%,95%,.22);--slider-thumb-bg:#c6a667;--overlay-backdrop-default:rgba(0,0,0,.45);--overlay-backdrop-light:rgba(0,0,0,.25);--overlay-backdrop-heavy:rgba(0,0,0,.6);--overlay-backdrop-loading:rgba(0,0,0,.25);--color-surface-soft:hsla(48,22%,95%,.08);--table-trend-up:#34e39a;--table-trend-down:#ff7f7e;--table-trend-flat:#9fa4a7;--table-row-good-bg:#204943;--table-row-bad-bg:#33141b;--table-row-warning-bg:#554900;--table-row-info-bg:#00223d;--table-row-muted-bg:#424e59;--table-row-strange-bg:#585548;--table-row-flagged-bg:#6b3715;--table-row-curious-bg:#333231;--table-row-good-text:#dce9e0;--table-row-bad-text:#eadad7;--table-row-warning-text:#f0ead9;--table-row-info-text:#dce5e8;--table-row-muted-text:#cacccc;--table-row-strange-text:#ece5d5;--table-row-flagged-text:#eadad7;--table-row-curious-text:#f6f5f1;--table-row-flagged-border:#a84242;--table-row-curious-border:#c6a667;--code-bg:#434f59;--code-border:#59636c;--code-inline-bg:hsla(0,0%,100%,.09);--code-inline-border:hsla(0,0%,100%,.18);--figure-caption-color:#cacccc;--code-block-bg:#232f39;--footnote-color:#9fa4a7;--blockquote-border:#59636c;--blockquote-text:#cacccc;--color-selection-bg:hsla(40,45%,59%,.3);--color-selection-text:#f6f5f1;--code-syntax-keyword:#d7c297;--code-syntax-string:#4ca883;--code-syntax-number:#4a88b5;--code-syntax-operator:#f6f5f1;--code-syntax-comment:#9fa4a7;--code-syntax-constant:#c6a667;--code-syntax-function:#d7c297;--code-syntax-variable:#f6f5f1;--semantic-info-bg:#2e506a;--semantic-info-border:#4a88b5;--semantic-info-text:#d4dfe5;--semantic-warning-bg:#645f42;--semantic-warning-border:#d1ae52;--semantic-warning-text:#efe7d1;--semantic-success-bg:#2f5c56;--semantic-success-border:#4ca883;--semantic-success-text:#d4e6db;--semantic-danger-bg:#54343c;--semantic-danger-border:#a84242;--semantic-danger-text:#e6d1ce;--semantic-error-bg:#54343c;--semantic-error-border:#a84242;--semantic-error-text:#e6d1ce;--semantic-error-bg-strong:#40272a;--semantic-error-border-strong:#a84242;--semantic-error-text-strong:#e6d1ce;--semantic-warning-bg-strong:#524a2f;--semantic-warning-border-strong:#d1ae52;--semantic-warning-text-strong:#efe7d1;--semantic-success-bg-strong:#264c46;--semantic-success-border-strong:#4ca883;--semantic-success-text-strong:#cfe6d7;--semantic-info-bg-strong:#244057;--semantic-info-border-strong:#4a88b5;--semantic-info-text-strong:#d4dfe5;--hero-error-bg:#40272a;--hero-error-border:#a84242;--hero-error-banner-bg:#3a2326;--hero-error-banner-border:#bc6f6e;--hero-error-title:#bc6f6e;--hero-trend-up:#4ca883;--hero-trend-down:#a84242;--hero-accent-line:#c6a667;--accent-soft-surface:#004367;--accent-soft-surface-strong:#025785;--accent-soft-border:#1691d3;--accent-soft-shadow:rgba(22,145,211,.3);--accent-soft-on:#f6f5f1;--info-soft-surface:#023d5d;--info-soft-border:#4a88b5;--info-soft-on:#c7d8e4;--warning-soft-surface:#463e28;--warning-soft-border:#d1ae52;--warning-soft-on:#efe7d1;--danger-soft-surface:#3c2226;--danger-soft-border:#a84242;--danger-soft-on:#c3877e;--doc-block-action-hover-bg:#33373d;--doc-block-action-hover-border:var(--color-border-strong);--doc-block-action-hover-text:var(--color-text);--button-soft-border:hsla(0,0%,100%,.04);--button-soft-border-hover:hsla(0,0%,100%,.12);--button-soft-text:var(--color-text);--button-outline-accent-hover-bg:rgba(19,113,163,.12);--button-outline-accent-hover-border:var(--color-accent-strong);--button-outline-danger-hover-bg:rgba(168,66,66,.12);--button-outline-danger-hover-border:var(--color-danger-strong);--button-outline-info-hover-bg:rgba(74,136,181,.12);--button-outline-info-hover-border:var(--color-info-strong);--button-outline-success-hover-bg:rgba(76,168,131,.12);--button-outline-success-hover-border:var(--color-success-strong);--button-outline-warning-hover-bg:rgba(209,174,82,.14);--button-outline-warning-hover-border:var(--color-warning-strong);--section-brand-eyebrow:#e5e8eb;--section-brand-subtitle:#e5e8eb;--section-brand-title:#fff;--section-brand-body:#cacccc;--section-brand-metric-label:#e5e8eb;--section-brand-metric-value:#fff;--section-brand-accent-bg:radial-gradient(circle at top left,hsla(40,45%,59%,.25),transparent),radial-gradient(circle at bottom right,hsla(40,45%,59%,.35),transparent);--success-soft-surface-strong:#264c46;--color-success-soft-hover:#2f5c56;--success-soft-surface:#2f5c56;--success-soft-border:#4ca883;--success-soft-on:#d4e6db;--warning-soft-surface-strong:#524a2f;--color-warning-soft-hover:#645f42;--info-soft-surface-strong:#244057;--color-info-soft-hover:#2e506a;--danger-soft-surface-strong:#3c2226;--color-danger-soft-hover:#54343c;--hero-trend-neutral:var(--color-text-muted);--hero-error-text:var(--semantic-error-text-strong,var(--color-danger-strong));--hero-metric-bg:#505b64;--flow-zebra-bg:#434f59;--flow-zebra-bg-alt:#323e4a;--focus-ring-color:#d7c297}