@kupola/kupola 1.7.8 → 1.9.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.
@@ -16,18 +16,6 @@
16
16
  /* @dark-only */
17
17
  /* @group-priority: brand-green, status, brand-blue, brand-purple, brand-yellow */
18
18
 
19
- :root {
20
- --bg-base-default: #FFFFFF;
21
- --bg-base-secondary: #F5F6F8;
22
- --text-default: #0F1117;
23
- }
24
-
25
- [data-theme="dark"] {
26
- --bg-base-default: #0C0C0D;
27
- --bg-base-secondary: #1A1B1D;
28
- --text-default: #E5E7EB;
29
- }
30
-
31
19
  :root {
32
20
  /* radius */
33
21
  --radius-2: 2px;
@@ -137,32 +125,95 @@
137
125
  --code-terminal-font-size: 12px;
138
126
  --code-terminal-font-weight: 450;
139
127
  --code-terminal-line-height: 18px;
140
- --code-text: #E0E3EE;
141
- --code-doc: #7F838C;
142
- --code-link: #3C7EFF;
143
- --code-number: #F48CCA;
144
- --code-action: #B38CFF;
145
- --code-instruction: #F0D8FF;
146
- --code-function: #F29D79;
147
- --code-constant: #80BBFF;
148
- --code-parameter: #82D99F;
149
- --code-attribute: #DED47E;
150
- --code-tag: #F2858C;
128
+
129
+ /* font (generic fallback — used by a few preview sections) */
130
+ --font-family: "SF Pro Text", system-ui, -apple-system, sans-serif;
131
+ --font-size: 10px;
132
+ --font-weight: 400;
133
+ --line-height: 14px;
134
+
135
+ /* special */
136
+ --special-white: #FFFFFF;
137
+ --special-black: #000000;
138
+ --special-bgtabsoverlay: rgba(0, 0, 0, 0.2);
139
+
140
+ /* === Dark theme default values === */
141
+ /* These serve as fallbacks when no data-theme attribute is present */
142
+ /* [data-theme="light"] and [data-theme="dark"] selectors will override these */
151
143
 
152
144
  /* bg */
153
- --bg-base-default: #1A1B1D;
154
- --bg-base-secondary: #222427;
155
- --bg-base-tertiary: #2A2D31;
156
- --bg-overlay-l1: rgba(224, 226, 242, 0.04);
157
- --bg-overlay-l2: rgba(224, 226, 242, 0.06);
158
- --bg-overlay-l3: rgba(224, 226, 242, 0.08);
159
- --bg-overlay-l4: rgba(224, 226, 242, 0.12);
160
- --bg-menu: #202123;
145
+ --bg-base-default: #0C0C0D;
146
+ --bg-base-secondary: #1A1B1D;
147
+ --bg-base-tertiary: #222427;
148
+ --bg-overlay-l1: rgba(255, 255, 255, 0.04);
149
+ --bg-overlay-l2: rgba(255, 255, 255, 0.06);
150
+ --bg-overlay-l3: rgba(255, 255, 255, 0.08);
151
+ --bg-overlay-l4: rgba(255, 255, 255, 0.12);
152
+ --bg-menu: #1A1B1D;
161
153
  --bg-tooltip: #1A1B1D;
162
- --bg-invert: #DADDE5;
163
- --bg-invert-hover: #EDEFF2;
164
- --bg-invert-active: #979AA4;
165
- --bg-invert-disabled: rgba(224, 226, 242, 0.12);
154
+ --bg-invert: #FFFFFF;
155
+ --bg-invert-hover: #F5F5F5;
156
+ --bg-invert-active: #E5E5E5;
157
+ --bg-invert-disabled: rgba(255, 255, 255, 0.2);
158
+
159
+ /* text */
160
+ --text-default: #E5E7EB;
161
+ --text-default-hover: #FFFFFF;
162
+ --text-default-active: #FFFFFF;
163
+ --text-secondary: #B8BDCA;
164
+ --text-secondary-hover: #E5E7EB;
165
+ --text-secondary-active: #E5E7EB;
166
+ --text-tertiary: #9CA3AF;
167
+ --text-disabled: #8B93A1;
168
+ --text-onbrand: #FFFFFF;
169
+ --text-onaccent: #FFFFFF;
170
+
171
+ /* icon */
172
+ --icon-default: #E5E7EB;
173
+ --icon-default-hover: #FFFFFF;
174
+ --icon-default-active: #FFFFFF;
175
+ --icon-secondary: #B8BDCA;
176
+ --icon-secondary-hover: #E5E7EB;
177
+ --icon-secondary-active: #E5E7EB;
178
+ --icon-tertiary: #9CA3AF;
179
+ --icon-disabled: #8B93A1;
180
+ --icon-onbrand: #FFFFFF;
181
+ --icon-onaccent: #FFFFFF;
182
+
183
+ /* border */
184
+ --border-neutral-l1: rgba(255, 255, 255, 0.12);
185
+ --border-neutral-l2: rgba(255, 255, 255, 0.18);
186
+ --border-neutral-l3: rgba(255, 255, 255, 0.25);
187
+ --border-contrast: #0C0C0D;
188
+
189
+ /* bg-brand */
190
+ --bg-brand-popup: rgba(83, 81, 100, 0.15);
191
+
192
+ /* code colors */
193
+ --code-text: #D1D3DB;
194
+ --code-doc: #9599A6;
195
+ --code-link: #79B8FF;
196
+ --code-number: #FF9CA8;
197
+ --code-action: #D3ADF7;
198
+ --code-instruction: #B37FEB;
199
+ --code-function: #FFAD5B;
200
+ --code-constant: #61AFEF;
201
+ --code-parameter: #98C379;
202
+ --code-attribute: #E5C07B;
203
+ --code-tag: #E06C75;
204
+
205
+ /* accent */
206
+ --accent-teal: #32F08C;
207
+ --accent-coral: #FF9CA8;
208
+ --accent-amber: #FFAD5B;
209
+ --accent-lime: #A6EA39;
210
+ --accent-cyan: #78F2F2;
211
+ --accent-blue: #79B8FF;
212
+ --accent-magenta: #FB9DD7;
213
+ --accent-violet: #D3ADF7;
214
+ --accent-slate: #859EAD;
215
+
216
+ /* color aliases */
166
217
  --color-background: var(--bg-base-default);
167
218
  --color-surface: var(--bg-base-secondary);
168
219
  --color-surface-variant: var(--bg-base-tertiary);
@@ -173,34 +224,6 @@
173
224
  --color-card: var(--bg-base-secondary);
174
225
  --color-tooltip: var(--bg-tooltip);
175
226
  --color-menu: var(--bg-menu);
176
-
177
- /* bg-brand */
178
- --bg-brand: #535164;
179
- --bg-brand-hover: #434154;
180
- --bg-brand-disabled: rgba(83, 81, 100, 0.2);
181
- --bg-brand-popup: rgba(83, 81, 100, 0.12);
182
-
183
- /* status colors */
184
- --bg-error-default: #F87171;
185
- --bg-warning-default: #FBBF24;
186
- --bg-success-default: #34D399;
187
- --color-primary: var(--bg-brand);
188
- --color-primary-hover: var(--bg-brand-hover);
189
- --color-primary-disabled: var(--bg-brand-disabled);
190
- --color-primary-soft: var(--bg-brand-popup);
191
- --color-accent: var(--bg-brand);
192
-
193
- /* text */
194
- --text-default: #D1D3DB;
195
- --text-default-hover: #F5F9FE;
196
- --text-default-active: #F5F9FE;
197
- --text-secondary: #9599A6;
198
- --text-secondary-hover: #D1D3DB;
199
- --text-secondary-active: #D1D3DB;
200
- --text-tertiary: #888D99;
201
- --text-disabled: #888D99;
202
- --text-onbrand: #0C0C0D;
203
- --text-onaccent: #0C0C0D;
204
227
  --color-foreground: var(--text-default);
205
228
  --color-foreground-hover: var(--text-default-hover);
206
229
  --color-on-surface: var(--text-default);
@@ -208,245 +231,177 @@
208
231
  --color-muted-foreground: var(--text-secondary);
209
232
  --color-disabled-foreground: var(--text-disabled);
210
233
  --color-on-primary: var(--text-onbrand);
211
-
212
- /* text-brand */
213
- --text-brand: #535164;
214
- --text-brand-hover: #434154;
215
-
216
- /* icon */
217
- --icon-default: #D1D3DB;
218
- --icon-default-hover: #F5F9FE;
219
- --icon-default-active: #F5F9FE;
220
- --icon-secondary: #9599A6;
221
- --icon-secondary-hover: #D1D3DB;
222
- --icon-secondary-active: #D1D3DB;
223
- --icon-tertiary: #888D99;
224
- --icon-disabled: #888D99;
225
- --icon-onbrand: #0C0C0D;
226
- --icon-onaccent: #0C0C0D;
227
-
228
- /* icon-brand */
229
- --icon-brand: #535164;
230
- --icon-brand-hover: #434154;
231
-
232
- /* border */
233
- --border-neutral-l1: rgba(224, 226, 242, 0.15);
234
- --border-neutral-l2: rgba(224, 226, 242, 0.22);
235
- --border-neutral-l3: rgba(224, 226, 242, 0.3);
236
- --border-contrast: #FFFFFF;
237
- --border-brand: #535164;
238
234
  --color-border: var(--border-neutral-l1);
239
235
  --color-border-strong: var(--border-neutral-l2);
240
236
  --color-border-stronger: var(--border-neutral-l3);
241
237
  --color-border-contrast: var(--border-contrast);
242
238
  --color-outline: var(--border-neutral-l1);
243
239
 
244
- /* accent */
245
- --accent-teal: #2DD288;
246
- --accent-coral: #FF9392;
247
- --accent-amber: #DCB364;
248
- --accent-lime: #8ACB3A;
249
- --accent-cyan: #04CBE5;
250
- --accent-blue: #7BB8FF;
251
- --accent-magenta: #EC93FF;
252
- --accent-violet: #BFA5FF;
253
- --accent-slate: #AFB9CF;
254
-
255
240
  /* status */
256
- --status-primary-default: #387BFF;
257
- --status-primary-hover: #4C88FF;
258
- --status-primary-active: #1759DD;
259
- --status-primary-surface-l1: rgba(53, 121, 255, 0.18);
260
- --status-primary-surface-l2: rgba(53, 121, 255, 0.28);
261
- --status-primary-surface-l3: rgba(53, 121, 255, 0.36);
262
- --status-info-default: #33b9c1;
263
- --status-info-hover: #47c5cc;
264
- --status-info-active: #269fa6;
265
- --status-info-surface-l1: rgba(51, 185, 193, 0.1);
266
- --status-info-surface-l2: rgba(51, 185, 193, 0.15);
267
- --status-info-surface-l3: rgba(51, 185, 193, 0.2);
268
- --status-success-default: #33C192;
269
- --status-success-hover: #5ED4AD;
270
- --status-success-active: #27B082;
271
- --status-success-surface-l1: rgba(0, 165, 110, 0.18);
272
- --status-success-surface-l2: rgba(0, 165, 110, 0.28);
273
- --status-success-surface-l3: rgba(0, 165, 110, 0.36);
274
- --status-alert-default: #D29D00;
275
- --status-alert-hover: #DFB949;
276
- --status-alert-active: #AB8820;
277
- --status-alert-surface-l1: rgba(210, 157, 0, 0.16);
278
- --status-alert-surface-l2: rgba(210, 157, 0, 0.28);
279
- --status-alert-surface-l3: rgba(210, 157, 0, 0.36);
280
- --status-warning-default: #D27E24;
281
- --status-warning-hover: #D78B28;
282
- --status-warning-active: #B46510;
283
- --status-warning-surface-l1: rgba(210, 126, 36, 0.16);
284
- --status-warning-surface-l2: rgba(210, 126, 36, 0.28);
285
- --status-warning-surface-l3: rgba(210, 126, 36, 0.36);
286
- --status-error-default: #F65A5A;
287
- --status-error-hover: #F86262;
288
- --status-error-active: #B33636;
289
- --status-error-surface-l1: rgba(246, 70, 70, 0.18);
290
- --status-error-surface-l2: rgba(246, 70, 70, 0.28);
291
- --status-error-surface-l3: rgba(246, 70, 70, 0.36);
292
- --color-info: var(--status-primary-default);
293
- --color-success: var(--status-success-default);
294
- --color-warning: var(--status-warning-default);
295
- --color-error: var(--status-error-default);
296
- --color-error-soft: var(--status-error-surface-l1);
241
+ --status-primary-default: #79B8FF;
242
+ --status-primary-hover: #A3CFFF;
243
+ --status-primary-active: #4FA3E8;
244
+ --status-primary-surface-l1: rgba(121, 184, 255, 0.12);
245
+ --status-primary-surface-l2: rgba(121, 184, 255, 0.18);
246
+ --status-primary-surface-l3: rgba(121, 184, 255, 0.24);
247
+ --status-info-default: #78F2F2;
248
+ --status-info-hover: #A5FFFF;
249
+ --status-info-active: #4FE5E5;
250
+ --status-info-surface-l1: rgba(120, 242, 242, 0.15);
251
+ --status-info-surface-l2: rgba(120, 242, 242, 0.22);
252
+ --status-info-surface-l3: rgba(120, 242, 242, 0.3);
253
+ --status-success-default: #32F08C;
254
+ --status-success-hover: #53F4A2;
255
+ --status-success-active: #22D678;
256
+ --status-success-surface-l1: rgba(50, 240, 140, 0.12);
257
+ --status-success-surface-l2: rgba(50, 240, 140, 0.18);
258
+ --status-success-surface-l3: rgba(50, 240, 140, 0.24);
259
+ --status-warning-default: #FFAD5B;
260
+ --status-warning-hover: #FFC080;
261
+ --status-warning-active: #E0954A;
262
+ --status-warning-surface-l1: rgba(255, 173, 91, 0.12);
263
+ --status-warning-surface-l2: rgba(255, 173, 91, 0.18);
264
+ --status-warning-surface-l3: rgba(255, 173, 91, 0.24);
265
+ --status-error-default: #FF9CA8;
266
+ --status-error-hover: #FFB8C0;
267
+ --status-error-active: #E07E88;
268
+ --status-error-surface-l1: rgba(255, 156, 168, 0.12);
269
+ --status-error-surface-l2: rgba(255, 156, 168, 0.18);
270
+ --status-error-surface-l3: rgba(255, 156, 168, 0.24);
271
+ --status-alert-default: #FFAD5B;
272
+ --status-alert-hover: #FFC080;
273
+ --status-alert-active: #E0954A;
274
+ --status-alert-surface-l1: rgba(255, 173, 91, 0.12);
275
+ --status-alert-surface-l2: rgba(255, 173, 91, 0.18);
276
+ --status-alert-surface-l3: rgba(255, 173, 91, 0.24);
297
277
 
298
278
  /* brand */
299
- --brand-green-100: #E5FFF2;
300
- --brand-green-200: #B4FDD9;
301
- --brand-green-300: #85FABF;
302
- --brand-green-400: #5CF5A8;
303
- --brand-green-500: #535164;
304
- --brand-green-600: #434154;
305
- --brand-green-700: #0AB861;
306
- --brand-green-800: #05994F;
307
- --brand-green-900: #02743B;
308
- --brand-green-1000: #004D26;
309
- --brand-red-100: #FFE5E5;
310
- --brand-red-200: #FFCCCC;
311
- --brand-red-300: #FFB2B2;
312
- --brand-red-400: #FF9999;
313
- --brand-red-500: #FF8080;
314
- --brand-red-600: #FF6464;
315
- --brand-red-700: #E63737;
316
- --brand-red-800: #CB1010;
317
- --brand-red-900: #8F0505;
318
- --brand-red-1000: #4D0000;
319
- --brand-yellow-100: #FFF6E5;
320
- --brand-yellow-200: #FFECCC;
321
- --brand-yellow-300: #FFE3B2;
322
- --brand-yellow-400: #FFDA99;
279
+ --brand-green-100: #0A3A22;
280
+ --brand-green-200: #0F5A32;
281
+ --brand-green-300: #147A42;
282
+ --brand-green-400: #199A52;
283
+ --brand-green-500: #32F08C;
284
+ --brand-green-600: #53F4A2;
285
+ --brand-green-700: #74F7B8;
286
+ --brand-green-800: #95FBCE;
287
+ --brand-green-900: #B6FFE4;
288
+ --brand-green-1000: #D7FFF9;
289
+ --brand-red-100: #4D0000;
290
+ --brand-red-200: #8F0505;
291
+ --brand-red-300: #CB1010;
292
+ --brand-red-400: #E63737;
293
+ --brand-red-500: #FF6464;
294
+ --brand-red-600: #FF8080;
295
+ --brand-red-700: #FF9999;
296
+ --brand-red-800: #FFB3B3;
297
+ --brand-red-900: #FFCCCC;
298
+ --brand-red-1000: #FFE6E6;
299
+ --brand-yellow-100: #4D3000;
300
+ --brand-yellow-200: #8F5C05;
301
+ --brand-yellow-300: #CB8710;
302
+ --brand-yellow-400: #E6A637;
323
303
  --brand-yellow-500: #FFD080;
324
- --brand-yellow-600: #FFC864;
325
- --brand-yellow-700: #E6A637;
326
- --brand-yellow-800: #CB8710;
327
- --brand-yellow-900: #8F5C05;
328
- --brand-yellow-1000: #4D3000;
329
- --brand-blue-100: #E5F3FF;
330
- --brand-blue-200: #CCE6FF;
331
- --brand-blue-300: #B2DAFF;
332
- --brand-blue-400: #99CEFF;
333
- --brand-blue-500: #80C1FF;
334
- --brand-blue-600: #64B4FF;
335
- --brand-blue-700: #3792E6;
336
- --brand-blue-800: #1071CB;
337
- --brand-blue-900: #054C8F;
338
- --brand-blue-1000: #00284D;
339
- --brand-purple-100: #E8E5FF;
340
- --brand-purple-200: #D2CCFF;
341
- --brand-purple-300: #BBB2FF;
342
- --brand-purple-400: #A599FF;
343
- --brand-purple-500: #8E80FF;
344
- --brand-purple-600: #7864FF;
345
- --brand-purple-700: #4C37E6;
346
- --brand-purple-800: #2610CB;
347
- --brand-purple-900: #15058F;
348
- --brand-purple-1000: #09004D;
349
- /* original source token: --brand-neutral grey-100 */
350
- --brand-neutral-grey-100: #F2F2F2;
351
- /* original source token: --brand-neutral grey-200 */
352
- --brand-neutral-grey-200: #E3E3E3;
353
- /* original source token: --brand-neutral grey-300 */
354
- --brand-neutral-grey-300: #D6D6D6;
355
- /* original source token: --brand-neutral grey-400 */
356
- --brand-neutral-grey-400: #C7C7C7;
357
- /* original source token: --brand-neutral grey-500 */
358
- --brand-neutral-grey-500: #BABABA;
359
- /* original source token: --brand-neutral grey-600 */
360
- --brand-neutral-grey-600: #ABABAB;
361
- /* original source token: --brand-neutral grey-700 */
362
- --brand-neutral-grey-700: #8A8A8A;
363
- /* original source token: --brand-neutral grey-800 */
364
- --brand-neutral-grey-800: #686868;
365
- /* original source token: --brand-neutral grey-900 */
366
- --brand-neutral-grey-900: #474747;
367
- /* original source token: --brand-neutral grey-1000 */
368
- --brand-neutral-grey-1000: #262626;
369
- /* original source token: --brand-blue grey-100 */
370
- --brand-blue-grey-100: #F1EFF4;
371
- /* original source token: --brand-blue grey-200 */
372
- --brand-blue-grey-200: #E0E1E6;
373
- /* original source token: --brand-blue grey-300 */
374
- --brand-blue-grey-300: #CFD3D8;
375
- /* original source token: --brand-blue grey-400 */
376
- --brand-blue-grey-400: #BFC5CA;
377
- /* original source token: --brand-blue grey-500 */
378
- --brand-blue-grey-500: #B0B5BA;
379
- /* original source token: --brand-blue grey-600 */
380
- --brand-blue-grey-600: #A0A6AB;
381
- /* original source token: --brand-blue grey-700 */
382
- --brand-blue-grey-700: #80898E;
383
- /* original source token: --brand-blue grey-800 */
384
- --brand-blue-grey-800: #5E696E;
385
- /* original source token: --brand-blue grey-900 */
386
- --brand-blue-grey-900: #404A4F;
387
- /* original source token: --brand-blue grey-1000 */
388
- --brand-blue-grey-1000: #21262B;
389
- /* original source token: --brand-green grey-100 */
390
- --brand-green-grey-100: #F1F4F4;
391
- /* original source token: --brand-green grey-200 */
392
- --brand-green-grey-200: #E0E6E6;
393
- /* original source token: --brand-green grey-300 */
394
- --brand-green-grey-300: #CFD8D8;
395
- /* original source token: --brand-green grey-400 */
396
- --brand-green-grey-400: #BFCACA;
397
- /* original source token: --brand-green grey-500 */
398
- --brand-green-grey-500: #B0BABA;
399
- /* original source token: --brand-green grey-600 */
400
- --brand-green-grey-600: #A0ABAB;
401
- /* original source token: --brand-green grey-700 */
402
- --brand-green-grey-700: #808E8E;
403
- /* original source token: --brand-green grey-800 */
404
- --brand-green-grey-800: #5E6E6E;
405
- /* original source token: --brand-green grey-900 */
406
- --brand-green-grey-900: #404F4F;
407
- /* original source token: --brand-green grey-1000 */
408
- --brand-green-grey-1000: #212B2B;
409
-
410
- /* font (generic fallback — used by a few preview sections) */
411
- --font-family: "SF Pro Text", system-ui, -apple-system, sans-serif;
412
- --font-size: 10px;
413
- --font-weight: 400;
414
- --line-height: 14px;
304
+ --brand-yellow-600: #FFDA99;
305
+ --brand-yellow-700: #FFE3B2;
306
+ --brand-yellow-800: #FFECCC;
307
+ --brand-yellow-900: #FFF6E5;
308
+ --brand-yellow-1000: #FFFDF0;
309
+ --brand-blue-100: #00284D;
310
+ --brand-blue-200: #054C8F;
311
+ --brand-blue-300: #1071CB;
312
+ --brand-blue-400: #3792E6;
313
+ --brand-blue-500: #64B4FF;
314
+ --brand-blue-600: #80C1FF;
315
+ --brand-blue-700: #99CEFF;
316
+ --brand-blue-800: #B2DAFF;
317
+ --brand-blue-900: #CCE6FF;
318
+ --brand-blue-1000: #E5F3FF;
319
+ --brand-purple-100: #09004D;
320
+ --brand-purple-200: #15058F;
321
+ --brand-purple-300: #2610CB;
322
+ --brand-purple-400: #4C37E6;
323
+ --brand-purple-500: #7864FF;
324
+ --brand-purple-600: #8E80FF;
325
+ --brand-purple-700: #A599FF;
326
+ --brand-purple-800: #BBB2FF;
327
+ --brand-purple-900: #D2CCFF;
328
+ --brand-purple-1000: #E8E5FF;
329
+ --brand-gray-100: #030712;
330
+ --brand-gray-200: #111827;
331
+ --brand-gray-300: #1F2937;
332
+ --brand-gray-400: #374151;
333
+ --brand-gray-500: #4B5563;
334
+ --brand-gray-600: #6B7280;
335
+ --brand-gray-700: #9CA3AF;
336
+ --brand-gray-800: #D1D5DB;
337
+ --brand-gray-900: #E5E7EB;
338
+ --brand-gray-1000: #F3F4F6;
415
339
 
416
340
  /* viz */
417
- --viz-series-coral: #F87454;
418
- --viz-series-amber: #EDAA45;
419
- --viz-series-mint: #1DC981;
420
- --viz-series-teal: #78F2F2;
421
- --viz-series-sky: #22A5F7;
422
- --viz-series-violet: #B655FC;
423
- --viz-series-magenta: #FB9DD7;
424
- --viz-series-indigo: #B6A3FF;
425
- --viz-series-lime: #A6EA39;
426
- --viz-series-slate: #859EAD;
427
- --viz-ui-bg-chart: #202123;
428
- --viz-ui-bg-tooltip: #1A1B1D;
429
- --viz-ui-chart-title: #D1D3DB;
430
- --viz-ui-chart-subtitle: #9599A6;
431
- --viz-ui-chart-axis: rgba(224, 226, 242, 0.16);
432
- --viz-ui-chart-tick: #9599A6;
433
- --viz-ui-legend-label: #9599A6;
434
- --viz-ui-legend-value: #D1D3DB;
341
+ --viz-graph-bg: #1A1B1D;
342
+ --viz-graph-line: rgba(255, 255, 255, 0.08);
343
+ --viz-series-1: #32F08C;
344
+ --viz-series-2: #79B8FF;
345
+ --viz-series-3: #D3ADF7;
346
+ --viz-series-4: #FFAD5B;
347
+ --viz-series-5: #FB9DD7;
348
+ --viz-series-6: #78F2F2;
435
349
 
436
- /* special */
437
- --special-white: #FFFFFF;
438
- --special-black: #000000;
439
- --special-bgtabsoverlay: rgba(0, 0, 0, 0.2);
440
-
441
- /* icon filter for img tags */
350
+ /* border-brand */
351
+ --border-brand: rgba(83, 81, 100, 0.4);
352
+ --border-brand-hover: rgba(83, 81, 100, 0.6);
353
+ --border-brand-active: rgba(83, 81, 100, 0.8);
354
+
355
+ /* bg-brand */
356
+ --bg-brand: #535164;
357
+ --bg-brand-hover: #636174;
358
+ --bg-brand-disabled: rgba(83, 81, 100, 0.3);
359
+ --bg-brand-overlay: rgba(83, 81, 100, 0.12);
360
+
361
+ /* status colors */
362
+ --bg-error-default: #FF9CA8;
363
+ --bg-warning-default: #FFAD5B;
364
+ --bg-success-default: #32F08C;
365
+
366
+ /* text-brand */
367
+ --text-brand: #636174;
368
+ --text-brand-hover: #737184;
369
+ --text-brand-active: #838194;
370
+
371
+ /* icon-brand */
372
+ --icon-brand: #636174;
373
+ --icon-brand-hover: #737184;
374
+ --icon-brand-active: #838194;
375
+
376
+ /* progress */
377
+ --bg-progress-success: #32F08C;
378
+ --bg-progress-warning: #FFAD5B;
379
+ --bg-progress-error: #FF9CA8;
380
+ --bg-progress-info: #79B8FF;
381
+
382
+ /* slider */
383
+ --bg-slider-track: rgba(255, 255, 255, 0.06);
384
+ --bg-slider-fill: #32F08C;
385
+ --bg-slider-thumb: #32F08C;
386
+
387
+ /* calendar */
388
+ --bg-calendar-hover: rgba(255, 255, 255, 0.04);
389
+ --bg-calendar-selected: #32F08C;
390
+ --text-calendar-selected: #0C0C0D;
391
+
392
+ /* fileupload */
393
+ --bg-fileupload-border: rgba(255, 255, 255, 0.12);
394
+ --bg-fileupload-hover: rgba(50, 240, 140, 0.12);
395
+ --bg-fileupload-dragging: rgba(50, 240, 140, 0.18);
396
+
397
+ /* timeline */
398
+ --bg-timeline-line: rgba(255, 255, 255, 0.12);
399
+ --bg-timeline-marker: #32F08C;
400
+
401
+ /* icon filter */
442
402
  --icon-filter: brightness(0) saturate(0) invert(0.9);
443
403
 
444
- /* layout aliases (originally fallback in _preview.css) */
445
- --brand-1: #32f08c;
446
- --brand-2: #3ee1a3;
447
- --brand-3: #60f2bd;
448
- --brand-4: #a0fde7;
449
- --site-canvas: #1A1B1D;
404
+ /* layout aliases */
450
405
  --bg-layout-1: var(--bg-base-secondary);
451
406
  --bg-layout-2: var(--bg-overlay-l1);
452
407
  --border-1: var(--border-neutral-l1);
package/css/scaffold.css CHANGED
@@ -3,18 +3,24 @@
3
3
  * Provides the page chrome consumed by preview/component-*.html and
4
4
  * ui_kits/*.html. Component-specific styles live in components.css.
5
5
  */
6
- @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');
7
6
  * { box-sizing: border-box; margin: 0; padding: 0; }
8
7
 
9
8
  html, body {
10
- background: var(--bg-base-default);
11
- color: var(--text-default);
9
+ background: var(--bg-base-default, #0C0C0D);
10
+ color: var(--text-default, #E5E7EB);
12
11
  font-family: var(--body-base-font-family);
13
12
  font-size: var(--body-base-font-size);
14
13
  line-height: var(--body-base-line-height);
15
14
  font-weight: var(--body-base-font-weight);
16
15
  min-height: 100%;
17
16
  }
17
+
18
+ @media (prefers-color-scheme: light) {
19
+ html, body {
20
+ background: var(--bg-base-default, #FFFFFF);
21
+ color: var(--text-default, #0F1117);
22
+ }
23
+ }
18
24
  html, body { overflow-x: hidden; max-width: 100%; }
19
25
  body { padding: 0; }
20
26
  img, svg, video, canvas { max-width: 100%; }
@@ -15,6 +15,8 @@
15
15
  --bg-invert-active: #E5E5E5;
16
16
  --bg-invert-disabled: rgba(255, 255, 255, 0.2);
17
17
 
18
+ --special-bgtabsoverlay: rgba(0, 0, 0, 0.2);
19
+
18
20
  --text-default: #E5E7EB;
19
21
  --text-default-hover: #FFFFFF;
20
22
  --text-default-active: #FFFFFF;
@@ -15,6 +15,8 @@
15
15
  --bg-invert-active: #3A3E44;
16
16
  --bg-invert-disabled: rgba(0, 0, 0, 0.2);
17
17
 
18
+ --special-bgtabsoverlay: rgba(0, 0, 0, 0.03);
19
+
18
20
  --text-default: #0F1117;
19
21
  --text-default-hover: #000000;
20
22
  --text-default-active: #000000;