@hanzo/ui 8.0.52 → 8.0.54

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/dist/glass.css CHANGED
@@ -108,16 +108,19 @@
108
108
  drop does all the work and must be light enough not to smudge, on near-black
109
109
  it must be heavy enough to exist at all. The values are design's own, and
110
110
  glass.test.ts fails if either column stops matching what design publishes.
111
- `:root.t_light` alongside `.light` is gui's spelling of the same idea —
112
- compose-theme teaches design's sheet that alias, and this file, which also
113
- ships on its own, says it outright. */
111
+ `:root.t_light` and `.t_light` alongside `.light` are gui's spelling of the
112
+ same idea — compose-theme teaches design's sheet those aliases, and this
113
+ file, which also ships on its own, says them outright. The bare class is for
114
+ a NESTED light scope: gui puts `t_light` on a span for `<Theme name="light">`
115
+ inside a dark app, which `:root.t_light` cannot match, so without it a light
116
+ island stood on the dark ladder. */
114
117
  :root {
115
118
  --glass-shadow-1: 0 1px 2px 0 rgb(0 0 0 / .40);
116
119
  --glass-shadow-2: 0 10px 15px -3px rgb(0 0 0 / .55), 0 4px 6px -4px rgb(0 0 0 / .55);
117
120
  --glass-shadow-3: 0 24px 60px -16px rgb(0 0 0 / .75);
118
121
  }
119
122
 
120
- .light, :root.t_light {
123
+ .light, :root.t_light, .t_light {
121
124
  --glass-shadow-1: 0 1px 2px 0 rgb(0 0 0 / .06);
122
125
  --glass-shadow-2: 0 10px 15px -3px rgb(0 0 0 / .09), 0 4px 6px -4px rgb(0 0 0 / .07);
123
126
  --glass-shadow-3: 0 24px 60px -16px rgb(0 0 0 / .18);
@@ -156,10 +159,19 @@
156
159
 
157
160
  One value, in one place: the recipes module reads the same token, so the dim
158
161
  behind a component dialog and the dim behind a hand-rolled one are the same
159
- dim by construction rather than by two people remembering a number. */
162
+ dim by construction rather than by two people remembering a number.
163
+
164
+ !important for the same reason the material above carries it, and it was
165
+ missing here: gui compiles `opacity` and `background-color` into atomic
166
+ classes (`_o-0--5`, `_bg-rgba0000--538295333`) that land in an inline <style>
167
+ a bundler orders AFTER this sheet, so at equal specificity they won and the
168
+ rule read as if it had never been written. Measured on hanzo.app's ⌘K
169
+ palette: `rgba(0,0,0,.5)` under `opacity: .5` — a quarter black, exactly the
170
+ double dim these two lines exist to end. A rule written to beat a compiled
171
+ class has to be written with the weight to beat one. */
160
172
  [data-slot="dialog-overlay"] {
161
- opacity: 1;
162
- background-color: var(--surface-scrim, rgb(0 0 0 / .8));
173
+ opacity: 1 !important;
174
+ background-color: var(--surface-scrim, rgb(0 0 0 / .8)) !important;
163
175
  }
164
176
 
165
177
  /* ── Grouped rows ───────────────────────────────────────────────────────────
@@ -141,8 +141,67 @@ for (const [k, v] of Object.entries(STEP)) {
141
141
  }
142
142
  space.$true = STEP['4'];
143
143
  space['-true'] = -STEP['4'];
144
+ /**
145
+ * THREE RUNGS OF THE NUMBERED RAMP UNDID A TOKEN DECISION, so they are re-based.
146
+ *
147
+ * `$color1..$color12` is a generic monotonic ramp inherited from upstream
148
+ * `@hanzogui/themes` — a scale, not this system's token layer. Most of it is
149
+ * harmless: a ramp of greys is a ramp of greys. Three rungs are not, because
150
+ * every component in this package reads them by name and @hanzo/design had
151
+ * already decided each one the other way, in writing:
152
+ *
153
+ * `$borderColor` (= `$color4`) shipped `hsla(0, 0%, 14%, 1)` — a SOLID edge.
154
+ * design's `colors.css` spends a paragraph on why its borders are alpha: a
155
+ * solid hex hairline vanishes the moment it lands on a lifted surface,
156
+ * because it stops being a lighter line and becomes an unrelated grey. Nearly
157
+ * every component here (Button, Input, Card, Select, Dialog, Popover,
158
+ * Tooltip, Switch, Checkbox, DropdownMenu) draws its edge with it.
159
+ *
160
+ * `$color12` shipped `hsla(0, 0%, 100%, 1)` — PURE WHITE, and it is the label
161
+ * colour for Button's default/primary, for every Badge, and for the `accent`
162
+ * recipe, the one loud control a page is allowed. design sets `--foreground`
163
+ * to `#fafafa` on purpose: pure white halates on near-black.
164
+ *
165
+ * `$outlineColor` shipped `hsla(0, 0%, 27%, 0.6)` — the FOCUS RING, and on a
166
+ * near-black ground that composites to about `rgb(45,45,45)`, roughly 1.2:1
167
+ * against the header it is drawn on. WCAG 2.4.11 asks for 3:1. Measured on
168
+ * hanzo.app's Sign In, Get started and Search — the three primary CTAs, where
169
+ * a keyboard user has no other way to know where they are. design publishes
170
+ * `--ring` at `rgb(255 255 255 / .40)` for exactly this, translucent so it
171
+ * lifts with whatever surface is under it; over the header that lands near
172
+ * 3.6:1. A ring is not a shade of grey somebody picked, it is a contrast
173
+ * requirement, and the ramp had no way to know that.
174
+ *
175
+ * So the three rungs read the token instead of shadowing it. `var()` first, so a
176
+ * host that mounts design's sheet (this package's own theme.css does) follows
177
+ * the live cascade and inverts with it; design's published literal behind it,
178
+ * so a host that mounts neither still gets the right value rather than a
179
+ * dropped declaration.
180
+ *
181
+ * The literals are stated per theme rather than left to the cascade, and that
182
+ * is load-bearing: a NESTED `<Theme name="light">` (PrimaryButton's white pill
183
+ * inside a dark app) emits `.t_light` on a span, not on `:root`, so the light
184
+ * column has to be able to answer on its own. gui-config.test.ts reads
185
+ * @hanzo/design's stylesheet and fails if either column stops matching what
186
+ * design publishes, so the copy cannot drift.
187
+ */
188
+ const EDGE = { dark: 'rgb(255 255 255 / .10)', light: 'rgb(0 0 0 / .10)' };
189
+ const LABEL = { dark: '#fafafa', light: '#0a0a0a' };
190
+ const RING = { dark: 'rgb(255 255 255 / .40)', light: 'rgb(0 0 0 / .5)' };
191
+ const rebased = (theme) => ({
192
+ ...v5_1.defaultConfig.themes[theme],
193
+ color4: `var(--border, ${EDGE[theme]})`,
194
+ borderColor: `var(--border, ${EDGE[theme]})`,
195
+ color12: `var(--foreground, ${LABEL[theme]})`,
196
+ outlineColor: `var(--ring, ${RING[theme]})`,
197
+ });
144
198
  exports.config = (0, gui_1.createGui)({
145
199
  ...v5_1.defaultConfig,
200
+ themes: {
201
+ ...v5_1.defaultConfig.themes,
202
+ dark: rebased('dark'),
203
+ light: rebased('light'),
204
+ },
146
205
  tokens: {
147
206
  ...v5_1.defaultConfig.tokens,
148
207
  radius: RADIUS,
@@ -55,7 +55,588 @@ export declare const config: import("@hanzogui/web").GuiInternalConfig<{
55
55
  $19: number;
56
56
  $20: number;
57
57
  };
58
- }, import("@hanzogui/config/v5").V5Themes, {
58
+ }, {
59
+ dark: {
60
+ color4: string;
61
+ borderColor: string;
62
+ color12: string;
63
+ outlineColor: string;
64
+ accentBackground: string;
65
+ accentColor: string;
66
+ background0: string;
67
+ background02: string;
68
+ background04: string;
69
+ background06: string;
70
+ background08: string;
71
+ color1: string;
72
+ color2: string;
73
+ color3: string;
74
+ color5: string;
75
+ color6: string;
76
+ color7: string;
77
+ color8: string;
78
+ color9: string;
79
+ color10: string;
80
+ color11: string;
81
+ color0: string;
82
+ color02: string;
83
+ color04: string;
84
+ color06: string;
85
+ color08: string;
86
+ color: string;
87
+ colorHover: string;
88
+ colorPress: string;
89
+ colorFocus: string;
90
+ background: string;
91
+ backgroundHover: string;
92
+ backgroundPress: string;
93
+ backgroundFocus: string;
94
+ backgroundActive: string;
95
+ borderColorHover: string;
96
+ borderColorFocus: string;
97
+ borderColorPress: string;
98
+ placeholderColor: string;
99
+ colorTransparent: string;
100
+ black1: string;
101
+ black2: string;
102
+ black3: string;
103
+ black4: string;
104
+ black5: string;
105
+ black6: string;
106
+ black7: string;
107
+ black8: string;
108
+ black9: string;
109
+ black10: string;
110
+ black11: string;
111
+ black12: string;
112
+ white1: string;
113
+ white2: string;
114
+ white3: string;
115
+ white4: string;
116
+ white5: string;
117
+ white6: string;
118
+ white7: string;
119
+ white8: string;
120
+ white9: string;
121
+ white10: string;
122
+ white11: string;
123
+ white12: string;
124
+ white: string;
125
+ white0: string;
126
+ white02: string;
127
+ white04: string;
128
+ white06: string;
129
+ white08: string;
130
+ black: string;
131
+ black0: string;
132
+ black02: string;
133
+ black04: string;
134
+ black06: string;
135
+ black08: string;
136
+ shadow1: string;
137
+ shadow2: string;
138
+ shadow3: string;
139
+ shadow4: string;
140
+ shadow5: string;
141
+ shadow6: string;
142
+ shadow7: string;
143
+ shadow8: string;
144
+ highlight1: string;
145
+ highlight2: string;
146
+ highlight3: string;
147
+ highlight4: string;
148
+ highlight5: string;
149
+ highlight6: string;
150
+ highlight7: string;
151
+ highlight8: string;
152
+ shadowColor: string;
153
+ gray1: string;
154
+ gray2: string;
155
+ gray3: string;
156
+ gray4: string;
157
+ gray5: string;
158
+ gray6: string;
159
+ gray7: string;
160
+ gray8: string;
161
+ gray9: string;
162
+ gray10: string;
163
+ gray11: string;
164
+ gray12: string;
165
+ blue1: string;
166
+ blue2: string;
167
+ blue3: string;
168
+ blue4: string;
169
+ blue5: string;
170
+ blue6: string;
171
+ blue7: string;
172
+ blue8: string;
173
+ blue9: string;
174
+ blue10: string;
175
+ blue11: string;
176
+ blue12: string;
177
+ red1: string;
178
+ red2: string;
179
+ red3: string;
180
+ red4: string;
181
+ red5: string;
182
+ red6: string;
183
+ red7: string;
184
+ red8: string;
185
+ red9: string;
186
+ red10: string;
187
+ red11: string;
188
+ red12: string;
189
+ yellow1: string;
190
+ yellow2: string;
191
+ yellow3: string;
192
+ yellow4: string;
193
+ yellow5: string;
194
+ yellow6: string;
195
+ yellow7: string;
196
+ yellow8: string;
197
+ yellow9: string;
198
+ yellow10: string;
199
+ yellow11: string;
200
+ yellow12: string;
201
+ green1: string;
202
+ green2: string;
203
+ green3: string;
204
+ green4: string;
205
+ green5: string;
206
+ green6: string;
207
+ green7: string;
208
+ green8: string;
209
+ green9: string;
210
+ green10: string;
211
+ green11: string;
212
+ green12: string;
213
+ orange1: string;
214
+ orange2: string;
215
+ orange3: string;
216
+ orange4: string;
217
+ orange5: string;
218
+ orange6: string;
219
+ orange7: string;
220
+ orange8: string;
221
+ orange9: string;
222
+ orange10: string;
223
+ orange11: string;
224
+ orange12: string;
225
+ pink1: string;
226
+ pink2: string;
227
+ pink3: string;
228
+ pink4: string;
229
+ pink5: string;
230
+ pink6: string;
231
+ pink7: string;
232
+ pink8: string;
233
+ pink9: string;
234
+ pink10: string;
235
+ pink11: string;
236
+ pink12: string;
237
+ purple1: string;
238
+ purple2: string;
239
+ purple3: string;
240
+ purple4: string;
241
+ purple5: string;
242
+ purple6: string;
243
+ purple7: string;
244
+ purple8: string;
245
+ purple9: string;
246
+ purple10: string;
247
+ purple11: string;
248
+ purple12: string;
249
+ teal1: string;
250
+ teal2: string;
251
+ teal3: string;
252
+ teal4: string;
253
+ teal5: string;
254
+ teal6: string;
255
+ teal7: string;
256
+ teal8: string;
257
+ teal9: string;
258
+ teal10: string;
259
+ teal11: string;
260
+ teal12: string;
261
+ neutral1: string;
262
+ neutral2: string;
263
+ neutral3: string;
264
+ neutral4: string;
265
+ neutral5: string;
266
+ neutral6: string;
267
+ neutral7: string;
268
+ neutral8: string;
269
+ neutral9: string;
270
+ neutral10: string;
271
+ neutral11: string;
272
+ neutral12: string;
273
+ accent1: string;
274
+ accent2: string;
275
+ accent3: string;
276
+ accent4: string;
277
+ accent5: string;
278
+ accent6: string;
279
+ accent7: string;
280
+ accent8: string;
281
+ accent9: string;
282
+ accent10: string;
283
+ accent11: string;
284
+ accent12: string;
285
+ color01: string;
286
+ color0075: string;
287
+ color005: string;
288
+ color0025: string;
289
+ color002: string;
290
+ color001: string;
291
+ background01: string;
292
+ background0075: string;
293
+ background005: string;
294
+ background0025: string;
295
+ background002: string;
296
+ background001: string;
297
+ };
298
+ light: {
299
+ color4: string;
300
+ borderColor: string;
301
+ color12: string;
302
+ outlineColor: string;
303
+ accentBackground: string;
304
+ accentColor: string;
305
+ background0: string;
306
+ background02: string;
307
+ background04: string;
308
+ background06: string;
309
+ background08: string;
310
+ color1: string;
311
+ color2: string;
312
+ color3: string;
313
+ color5: string;
314
+ color6: string;
315
+ color7: string;
316
+ color8: string;
317
+ color9: string;
318
+ color10: string;
319
+ color11: string;
320
+ color0: string;
321
+ color02: string;
322
+ color04: string;
323
+ color06: string;
324
+ color08: string;
325
+ color: string;
326
+ colorHover: string;
327
+ colorPress: string;
328
+ colorFocus: string;
329
+ background: string;
330
+ backgroundHover: string;
331
+ backgroundPress: string;
332
+ backgroundFocus: string;
333
+ backgroundActive: string;
334
+ borderColorHover: string;
335
+ borderColorFocus: string;
336
+ borderColorPress: string;
337
+ placeholderColor: string;
338
+ colorTransparent: string;
339
+ black1: string;
340
+ black2: string;
341
+ black3: string;
342
+ black4: string;
343
+ black5: string;
344
+ black6: string;
345
+ black7: string;
346
+ black8: string;
347
+ black9: string;
348
+ black10: string;
349
+ black11: string;
350
+ black12: string;
351
+ white1: string;
352
+ white2: string;
353
+ white3: string;
354
+ white4: string;
355
+ white5: string;
356
+ white6: string;
357
+ white7: string;
358
+ white8: string;
359
+ white9: string;
360
+ white10: string;
361
+ white11: string;
362
+ white12: string;
363
+ white: string;
364
+ white0: string;
365
+ white02: string;
366
+ white04: string;
367
+ white06: string;
368
+ white08: string;
369
+ black: string;
370
+ black0: string;
371
+ black02: string;
372
+ black04: string;
373
+ black06: string;
374
+ black08: string;
375
+ shadow1: string;
376
+ shadow2: string;
377
+ shadow3: string;
378
+ shadow4: string;
379
+ shadow5: string;
380
+ shadow6: string;
381
+ shadow7: string;
382
+ shadow8: string;
383
+ highlight1: string;
384
+ highlight2: string;
385
+ highlight3: string;
386
+ highlight4: string;
387
+ highlight5: string;
388
+ highlight6: string;
389
+ highlight7: string;
390
+ highlight8: string;
391
+ shadowColor: string;
392
+ gray1: string;
393
+ gray2: string;
394
+ gray3: string;
395
+ gray4: string;
396
+ gray5: string;
397
+ gray6: string;
398
+ gray7: string;
399
+ gray8: string;
400
+ gray9: string;
401
+ gray10: string;
402
+ gray11: string;
403
+ gray12: string;
404
+ blue1: string;
405
+ blue2: string;
406
+ blue3: string;
407
+ blue4: string;
408
+ blue5: string;
409
+ blue6: string;
410
+ blue7: string;
411
+ blue8: string;
412
+ blue9: string;
413
+ blue10: string;
414
+ blue11: string;
415
+ blue12: string;
416
+ red1: string;
417
+ red2: string;
418
+ red3: string;
419
+ red4: string;
420
+ red5: string;
421
+ red6: string;
422
+ red7: string;
423
+ red8: string;
424
+ red9: string;
425
+ red10: string;
426
+ red11: string;
427
+ red12: string;
428
+ yellow1: string;
429
+ yellow2: string;
430
+ yellow3: string;
431
+ yellow4: string;
432
+ yellow5: string;
433
+ yellow6: string;
434
+ yellow7: string;
435
+ yellow8: string;
436
+ yellow9: string;
437
+ yellow10: string;
438
+ yellow11: string;
439
+ yellow12: string;
440
+ green1: string;
441
+ green2: string;
442
+ green3: string;
443
+ green4: string;
444
+ green5: string;
445
+ green6: string;
446
+ green7: string;
447
+ green8: string;
448
+ green9: string;
449
+ green10: string;
450
+ green11: string;
451
+ green12: string;
452
+ orange1: string;
453
+ orange2: string;
454
+ orange3: string;
455
+ orange4: string;
456
+ orange5: string;
457
+ orange6: string;
458
+ orange7: string;
459
+ orange8: string;
460
+ orange9: string;
461
+ orange10: string;
462
+ orange11: string;
463
+ orange12: string;
464
+ pink1: string;
465
+ pink2: string;
466
+ pink3: string;
467
+ pink4: string;
468
+ pink5: string;
469
+ pink6: string;
470
+ pink7: string;
471
+ pink8: string;
472
+ pink9: string;
473
+ pink10: string;
474
+ pink11: string;
475
+ pink12: string;
476
+ purple1: string;
477
+ purple2: string;
478
+ purple3: string;
479
+ purple4: string;
480
+ purple5: string;
481
+ purple6: string;
482
+ purple7: string;
483
+ purple8: string;
484
+ purple9: string;
485
+ purple10: string;
486
+ purple11: string;
487
+ purple12: string;
488
+ teal1: string;
489
+ teal2: string;
490
+ teal3: string;
491
+ teal4: string;
492
+ teal5: string;
493
+ teal6: string;
494
+ teal7: string;
495
+ teal8: string;
496
+ teal9: string;
497
+ teal10: string;
498
+ teal11: string;
499
+ teal12: string;
500
+ neutral1: string;
501
+ neutral2: string;
502
+ neutral3: string;
503
+ neutral4: string;
504
+ neutral5: string;
505
+ neutral6: string;
506
+ neutral7: string;
507
+ neutral8: string;
508
+ neutral9: string;
509
+ neutral10: string;
510
+ neutral11: string;
511
+ neutral12: string;
512
+ accent1: string;
513
+ accent2: string;
514
+ accent3: string;
515
+ accent4: string;
516
+ accent5: string;
517
+ accent6: string;
518
+ accent7: string;
519
+ accent8: string;
520
+ accent9: string;
521
+ accent10: string;
522
+ accent11: string;
523
+ accent12: string;
524
+ color01: string;
525
+ color0075: string;
526
+ color005: string;
527
+ color0025: string;
528
+ color002: string;
529
+ color001: string;
530
+ background01: string;
531
+ background0075: string;
532
+ background005: string;
533
+ background0025: string;
534
+ background002: string;
535
+ background001: string;
536
+ };
537
+ light_accent: import("@hanzogui/config/v5").V5Theme;
538
+ dark_accent: import("@hanzogui/config/v5").V5Theme;
539
+ light_black: import("@hanzogui/config/v5").V5Theme;
540
+ light_white: import("@hanzogui/config/v5").V5Theme;
541
+ light_gray: import("@hanzogui/config/v5").V5Theme;
542
+ light_blue: import("@hanzogui/config/v5").V5Theme;
543
+ light_red: import("@hanzogui/config/v5").V5Theme;
544
+ light_yellow: import("@hanzogui/config/v5").V5Theme;
545
+ light_green: import("@hanzogui/config/v5").V5Theme;
546
+ light_orange: import("@hanzogui/config/v5").V5Theme;
547
+ light_pink: import("@hanzogui/config/v5").V5Theme;
548
+ light_purple: import("@hanzogui/config/v5").V5Theme;
549
+ light_teal: import("@hanzogui/config/v5").V5Theme;
550
+ light_neutral: import("@hanzogui/config/v5").V5Theme;
551
+ dark_black: import("@hanzogui/config/v5").V5Theme;
552
+ dark_white: import("@hanzogui/config/v5").V5Theme;
553
+ dark_gray: import("@hanzogui/config/v5").V5Theme;
554
+ dark_blue: import("@hanzogui/config/v5").V5Theme;
555
+ dark_red: import("@hanzogui/config/v5").V5Theme;
556
+ dark_yellow: import("@hanzogui/config/v5").V5Theme;
557
+ dark_green: import("@hanzogui/config/v5").V5Theme;
558
+ dark_orange: import("@hanzogui/config/v5").V5Theme;
559
+ dark_pink: import("@hanzogui/config/v5").V5Theme;
560
+ dark_purple: import("@hanzogui/config/v5").V5Theme;
561
+ dark_teal: import("@hanzogui/config/v5").V5Theme;
562
+ dark_neutral: import("@hanzogui/config/v5").V5Theme;
563
+ light_surface1: import("@hanzogui/config/v5").V5Theme;
564
+ light_white_surface1: import("@hanzogui/config/v5").V5Theme;
565
+ light_surface2: import("@hanzogui/config/v5").V5Theme;
566
+ light_white_surface2: import("@hanzogui/config/v5").V5Theme;
567
+ dark_surface1: import("@hanzogui/config/v5").V5Theme;
568
+ dark_black_surface1: import("@hanzogui/config/v5").V5Theme;
569
+ dark_surface2: import("@hanzogui/config/v5").V5Theme;
570
+ dark_black_surface2: import("@hanzogui/config/v5").V5Theme;
571
+ light_black_accent: import("@hanzogui/config/v5").V5Theme;
572
+ light_black_surface1: import("@hanzogui/config/v5").V5Theme;
573
+ light_black_surface2: import("@hanzogui/config/v5").V5Theme;
574
+ light_white_accent: import("@hanzogui/config/v5").V5Theme;
575
+ light_gray_accent: import("@hanzogui/config/v5").V5Theme;
576
+ light_gray_surface1: import("@hanzogui/config/v5").V5Theme;
577
+ light_gray_surface2: import("@hanzogui/config/v5").V5Theme;
578
+ light_blue_accent: import("@hanzogui/config/v5").V5Theme;
579
+ light_blue_surface1: import("@hanzogui/config/v5").V5Theme;
580
+ light_blue_surface2: import("@hanzogui/config/v5").V5Theme;
581
+ light_red_accent: import("@hanzogui/config/v5").V5Theme;
582
+ light_red_surface1: import("@hanzogui/config/v5").V5Theme;
583
+ light_red_surface2: import("@hanzogui/config/v5").V5Theme;
584
+ light_yellow_accent: import("@hanzogui/config/v5").V5Theme;
585
+ light_yellow_surface1: import("@hanzogui/config/v5").V5Theme;
586
+ light_yellow_surface2: import("@hanzogui/config/v5").V5Theme;
587
+ light_green_accent: import("@hanzogui/config/v5").V5Theme;
588
+ light_green_surface1: import("@hanzogui/config/v5").V5Theme;
589
+ light_green_surface2: import("@hanzogui/config/v5").V5Theme;
590
+ light_orange_accent: import("@hanzogui/config/v5").V5Theme;
591
+ light_orange_surface1: import("@hanzogui/config/v5").V5Theme;
592
+ light_orange_surface2: import("@hanzogui/config/v5").V5Theme;
593
+ light_pink_accent: import("@hanzogui/config/v5").V5Theme;
594
+ light_pink_surface1: import("@hanzogui/config/v5").V5Theme;
595
+ light_pink_surface2: import("@hanzogui/config/v5").V5Theme;
596
+ light_purple_accent: import("@hanzogui/config/v5").V5Theme;
597
+ light_purple_surface1: import("@hanzogui/config/v5").V5Theme;
598
+ light_purple_surface2: import("@hanzogui/config/v5").V5Theme;
599
+ light_teal_accent: import("@hanzogui/config/v5").V5Theme;
600
+ light_teal_surface1: import("@hanzogui/config/v5").V5Theme;
601
+ light_teal_surface2: import("@hanzogui/config/v5").V5Theme;
602
+ light_neutral_accent: import("@hanzogui/config/v5").V5Theme;
603
+ light_neutral_surface1: import("@hanzogui/config/v5").V5Theme;
604
+ light_neutral_surface2: import("@hanzogui/config/v5").V5Theme;
605
+ dark_black_accent: import("@hanzogui/config/v5").V5Theme;
606
+ dark_white_accent: import("@hanzogui/config/v5").V5Theme;
607
+ dark_white_surface1: import("@hanzogui/config/v5").V5Theme;
608
+ dark_white_surface2: import("@hanzogui/config/v5").V5Theme;
609
+ dark_gray_accent: import("@hanzogui/config/v5").V5Theme;
610
+ dark_gray_surface1: import("@hanzogui/config/v5").V5Theme;
611
+ dark_gray_surface2: import("@hanzogui/config/v5").V5Theme;
612
+ dark_blue_accent: import("@hanzogui/config/v5").V5Theme;
613
+ dark_blue_surface1: import("@hanzogui/config/v5").V5Theme;
614
+ dark_blue_surface2: import("@hanzogui/config/v5").V5Theme;
615
+ dark_red_accent: import("@hanzogui/config/v5").V5Theme;
616
+ dark_red_surface1: import("@hanzogui/config/v5").V5Theme;
617
+ dark_red_surface2: import("@hanzogui/config/v5").V5Theme;
618
+ dark_yellow_accent: import("@hanzogui/config/v5").V5Theme;
619
+ dark_yellow_surface1: import("@hanzogui/config/v5").V5Theme;
620
+ dark_yellow_surface2: import("@hanzogui/config/v5").V5Theme;
621
+ dark_green_accent: import("@hanzogui/config/v5").V5Theme;
622
+ dark_green_surface1: import("@hanzogui/config/v5").V5Theme;
623
+ dark_green_surface2: import("@hanzogui/config/v5").V5Theme;
624
+ dark_orange_accent: import("@hanzogui/config/v5").V5Theme;
625
+ dark_orange_surface1: import("@hanzogui/config/v5").V5Theme;
626
+ dark_orange_surface2: import("@hanzogui/config/v5").V5Theme;
627
+ dark_pink_accent: import("@hanzogui/config/v5").V5Theme;
628
+ dark_pink_surface1: import("@hanzogui/config/v5").V5Theme;
629
+ dark_pink_surface2: import("@hanzogui/config/v5").V5Theme;
630
+ dark_purple_accent: import("@hanzogui/config/v5").V5Theme;
631
+ dark_purple_surface1: import("@hanzogui/config/v5").V5Theme;
632
+ dark_purple_surface2: import("@hanzogui/config/v5").V5Theme;
633
+ dark_teal_accent: import("@hanzogui/config/v5").V5Theme;
634
+ dark_teal_surface1: import("@hanzogui/config/v5").V5Theme;
635
+ dark_teal_surface2: import("@hanzogui/config/v5").V5Theme;
636
+ dark_neutral_accent: import("@hanzogui/config/v5").V5Theme;
637
+ dark_neutral_surface1: import("@hanzogui/config/v5").V5Theme;
638
+ dark_neutral_surface2: import("@hanzogui/config/v5").V5Theme;
639
+ }, {
59
640
  text: "textAlign";
60
641
  b: "bottom";
61
642
  bg: "backgroundColor";