@titan-design/react-ui 0.13.0 → 0.14.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.
Files changed (146) hide show
  1. package/README.md +14 -0
  2. package/dist/bodymap.js +129 -76
  3. package/dist/bodymap.js.map +1 -1
  4. package/dist/bodymap.mjs +129 -76
  5. package/dist/bodymap.mjs.map +1 -1
  6. package/dist/index.d.mts +117 -26
  7. package/dist/index.d.ts +117 -26
  8. package/dist/index.js +677 -450
  9. package/dist/index.js.map +1 -1
  10. package/dist/index.mjs +673 -451
  11. package/dist/index.mjs.map +1 -1
  12. package/dist/{pages-_3Ajpiqu.d.ts → pages-CsjsUn0G.d.ts} +30 -13
  13. package/dist/{pages-CpW3OB3g.d.mts → pages-ZbT_pD_U.d.mts} +30 -13
  14. package/dist/pages.d.mts +1 -1
  15. package/dist/pages.d.ts +1 -1
  16. package/dist/pages.js +676 -701
  17. package/dist/pages.js.map +1 -1
  18. package/dist/pages.mjs +676 -701
  19. package/dist/pages.mjs.map +1 -1
  20. package/dist/theme/index.d.mts +31 -7
  21. package/dist/theme/index.d.ts +31 -7
  22. package/dist/theme/index.js +84 -20
  23. package/dist/theme/index.js.map +1 -1
  24. package/dist/theme/index.mjs +83 -21
  25. package/dist/theme/index.mjs.map +1 -1
  26. package/dist/theme/tokens-css.js +84 -20
  27. package/dist/theme/tokens-css.js.map +1 -1
  28. package/dist/theme/tokens-css.mjs +84 -20
  29. package/dist/theme/tokens-css.mjs.map +1 -1
  30. package/dist/theme/tokens.d.mts +56 -7
  31. package/dist/theme/tokens.d.ts +56 -7
  32. package/dist/theme/tokens.js +72 -20
  33. package/dist/theme/tokens.js.map +1 -1
  34. package/dist/theme/tokens.mjs +71 -21
  35. package/dist/theme/tokens.mjs.map +1 -1
  36. package/docs/render-testing-pattern.md +130 -0
  37. package/package.json +1 -1
  38. package/src/arch/Architecture.stories.tsx +3 -1
  39. package/src/arch/arch-graph.json +74 -72
  40. package/src/components/custom/ActiveWork/InitiativeBrief.tsx +2 -1
  41. package/src/components/custom/CircularTimer/CircularTimer.stories.tsx +8 -3
  42. package/src/components/custom/EmptyState/EmptyState.stories.tsx +1 -1
  43. package/src/components/custom/Gauge/Gauge.stories.tsx +4 -1
  44. package/src/components/custom/Gauge/Gauge.tsx +3 -1
  45. package/src/components/custom/Scatter/Scatter.stories.tsx +10 -7
  46. package/src/components/custom/Scatter/Scatter.tsx +6 -4
  47. package/src/components/custom/Sidebar/Sidebar.stories.tsx +1 -1
  48. package/src/components/custom/Table/Table.stories.tsx +1 -1
  49. package/src/components/custom/Table/Table.tsx +2 -2
  50. package/src/components/custom/Treemap/Treemap.stories.tsx +13 -10
  51. package/src/components/custom/Treemap/Treemap.tsx +4 -1
  52. package/src/components/custom/Workout/ActiveWorkoutPage.stories.tsx +2 -1
  53. package/src/components/custom/Workout/BaseBadge.stories.tsx +11 -7
  54. package/src/components/custom/Workout/BaseBadge.tsx +3 -2
  55. package/src/components/custom/Workout/BodyMap.tsx +5 -3
  56. package/src/components/custom/Workout/BodyMapDetailPanel.stories.tsx +13 -3
  57. package/src/components/custom/Workout/BodyMapDetailPanel.tsx +5 -3
  58. package/src/components/custom/Workout/CapacityBandChart.stories.tsx +2 -1
  59. package/src/components/custom/Workout/CapacityBandChart.tsx +5 -3
  60. package/src/components/custom/Workout/DeviationBar.test.tsx +5 -2
  61. package/src/components/custom/Workout/DeviationBar.tsx +5 -2
  62. package/src/components/custom/Workout/DualVelocityStrip.stories.tsx +7 -6
  63. package/src/components/custom/Workout/DualVelocityStrip.test.tsx +29 -16
  64. package/src/components/custom/Workout/ExerciseCard.stories.tsx +8 -8
  65. package/src/components/custom/Workout/ExerciseCard.test.tsx +39 -19
  66. package/src/components/custom/Workout/ExerciseCard.tsx +92 -167
  67. package/src/components/custom/Workout/ExerciseCardHeading.stories.tsx +89 -6
  68. package/src/components/custom/Workout/ExerciseCardHeading.test.tsx +189 -1
  69. package/src/components/custom/Workout/ExerciseCardHeading.tsx +167 -18
  70. package/src/components/custom/Workout/ExerciseDetailPage.tsx +3 -2
  71. package/src/components/custom/Workout/ExerciseHeading.tsx +192 -47
  72. package/src/components/custom/Workout/ExerciseIndicator.stories.tsx +6 -5
  73. package/src/components/custom/Workout/InputBar.tsx +4 -2
  74. package/src/components/custom/Workout/IntensityBar.tsx +4 -1
  75. package/src/components/custom/Workout/MesoCard.tsx +2 -1
  76. package/src/components/custom/Workout/MesoStatusCard.tsx +11 -10
  77. package/src/components/custom/Workout/PlaceholderStrip.stories.tsx +8 -3
  78. package/src/components/custom/Workout/PrHistoryModal.stories.tsx +12 -2
  79. package/src/components/custom/Workout/README.md +58 -12
  80. package/src/components/custom/Workout/ReadinessCheck.tsx +4 -2
  81. package/src/components/custom/Workout/RestTimer.stories.tsx +13 -2
  82. package/src/components/custom/Workout/RestTimer.tsx +4 -2
  83. package/src/components/custom/Workout/SegmentedBar.stories.tsx +16 -12
  84. package/src/components/custom/Workout/SegmentedBar.tsx +4 -3
  85. package/src/components/custom/Workout/SetStrip.stories.tsx +3 -2
  86. package/src/components/custom/Workout/SetsRepsLoad.tsx +23 -9
  87. package/src/components/custom/Workout/Sparkline.stories.tsx +13 -10
  88. package/src/components/custom/Workout/StrengthTrendChart.stories.tsx +2 -1
  89. package/src/components/custom/Workout/StrengthTrendChart.tsx +8 -6
  90. package/src/components/custom/Workout/TempoDisplay.stories.tsx +4 -3
  91. package/src/components/custom/Workout/TempoDisplay.tsx +2 -0
  92. package/src/components/custom/Workout/VelocityStrip.dual.stories.tsx +3 -2
  93. package/src/components/custom/Workout/VelocityStrip.expanded.stories.tsx +1 -1
  94. package/src/components/custom/Workout/VelocityStrip.hero.stories.tsx +40 -0
  95. package/src/components/custom/Workout/VelocityStrip.test.tsx +48 -6
  96. package/src/components/custom/Workout/VelocityStrip.tsx +23 -14
  97. package/src/components/custom/Workout/ZoneTrack.stories.tsx +3 -1
  98. package/src/components/custom/Workout/exerciseRowState.ts +29 -0
  99. package/src/components/custom/Workout/index.ts +12 -2
  100. package/src/components/custom/Workout/metricText.stories.tsx +9 -8
  101. package/src/components/custom/Workout/metricText.tsx +4 -2
  102. package/src/components/custom/Workout/setHeadingKit.tsx +12 -10
  103. package/src/components/custom/Workout/velocity-story-kit.tsx +2 -2
  104. package/src/components/custom/charts/README.md +5 -0
  105. package/src/components/custom/charts/SetBarChart.test.tsx +16 -0
  106. package/src/components/custom/charts/SetBarChart.tsx +14 -5
  107. package/src/components/custom/charts/flatBarGeometry.test.ts +41 -0
  108. package/src/components/custom/charts/flatBarGeometry.ts +32 -0
  109. package/src/components/custom/stepper/Stepper.tsx +8 -6
  110. package/src/components/ui/alert/Alert.stories.tsx +14 -4
  111. package/src/components/ui/alert/Alert.tsx +24 -3
  112. package/src/components/ui/button/Button.tsx +12 -12
  113. package/src/components/ui/checkbox/Checkbox.tsx +2 -2
  114. package/src/components/ui/data-row/DataRow.stories.tsx +6 -2
  115. package/src/components/ui/drawer/Drawer.tsx +4 -1
  116. package/src/components/ui/icon-box/IconBox.tsx +8 -6
  117. package/src/components/ui/indicator/Indicator.stories.tsx +4 -3
  118. package/src/components/ui/list-item/ListItem.stories.tsx +7 -4
  119. package/src/components/ui/modal/Modal.tsx +2 -0
  120. package/src/components/ui/pill/Pill.stories.tsx +53 -0
  121. package/src/components/ui/pill/Pill.tsx +10 -6
  122. package/src/components/ui/popover/Popover.stories.tsx +1 -1
  123. package/src/components/ui/progress/Progress.tsx +9 -6
  124. package/src/components/ui/radio/Radio.tsx +1 -1
  125. package/src/components/ui/section/Section.stories.tsx +10 -10
  126. package/src/components/ui/select/Select.tsx +2 -1
  127. package/src/components/ui/spinner/Spinner.tsx +3 -1
  128. package/src/components/ui/stack/Stack.stories.tsx +7 -7
  129. package/src/components/ui/surface/Surface.stories.tsx +75 -28
  130. package/src/components/ui/switch/Switch.tsx +1 -1
  131. package/src/components/ui/tabs/Tabs.tsx +4 -2
  132. package/src/components/ui/toast/Toast.tsx +6 -4
  133. package/src/components/ui/toolbar-button/ToolbarButton.tsx +13 -6
  134. package/src/stories/PresetShowcase.stories.tsx +1 -1
  135. package/src/test/no-raw-color.test.ts +39 -0
  136. package/src/theme/Alpha.stories.tsx +103 -0
  137. package/src/theme/ProposedTokensVW82.stories.tsx +414 -0
  138. package/src/theme/config.ts +12 -0
  139. package/src/theme/global.css +15 -3
  140. package/src/theme/subtle-tone-weight.test.ts +163 -0
  141. package/src/theme/tailwind-var-opacity.test.ts +163 -0
  142. package/src/theme/tokens/primitives.ts +33 -0
  143. package/src/theme/tokens/semantic-hex-guard.test.ts +322 -0
  144. package/src/theme/tokens/semantic.ts +56 -20
  145. package/src/utils/colors.alpha-adoption.test.ts +408 -0
  146. package/tailwind.config.js +50 -9
@@ -2,6 +2,26 @@
2
2
  var primitiveColors = {
3
3
  white: "#FFFFFF"};
4
4
  var alertRedVivid = "#FF4757";
5
+ var resultPaletteColors = {
6
+ improve: "#4caf50",
7
+ improveDark: "#248a24",
8
+ degrade: "#ef5350",
9
+ degradeDark: "#b30000",
10
+ inconclusive: "#9E9A97"
11
+ };
12
+ var semanticPins = {
13
+ // Cool navy-black; darker and more blue-shifted than any warm greyRamp step.
14
+ textPrimaryLight: "#121828",
15
+ // Cool blue-grey; outside greyRamp's warm (R>=G>=B) scale.
16
+ textSecondaryLight: "#65748B",
17
+ // Pure neutral grey (R=G=B); no warm greyRamp step lands on it exactly.
18
+ backgroundBaseLight: "#EBEBEB",
19
+ // Near-neutral grey, kept one step off backgroundBaseLight by design.
20
+ dividerLight: "#E8E9EB",
21
+ // Periwinkle/indigo; more purple than any primitiveRamps.blue step. Shared by
22
+ // dark-mode text-link, border-focus and border-input-focus.
23
+ focusIndigoDark: "#828DF8"
24
+ };
5
25
  var greyRamp = {
6
26
  50: "#F9F6F3",
7
27
  // L*97.0 W6
@@ -35,6 +55,7 @@ var greyRamp = {
35
55
  var primitiveRamps = {
36
56
  red: {
37
57
  50: "#FFF4F4",
58
+ 400: "#F77175",
38
59
  500: "#E05254",
39
60
  600: "#D14343",
40
61
  // pin
@@ -58,6 +79,7 @@ var primitiveRamps = {
58
79
  500: "#22A444",
59
80
  600: "#298732"},
60
81
  cyan: {
82
+ 300: "#22D3EE",
61
83
  // pin
62
84
  400: "#01B5D1",
63
85
  500: "#2697B7",
@@ -126,6 +148,12 @@ var semanticColorsLight = {
126
148
  // Text on brand backgrounds (on-*)
127
149
  "on-brand-primary": primitiveColors.white,
128
150
  "on-brand-secondary": primitiveColors.white,
151
+ // Text ON a `-subtle` fill. Light mode keeps today's pairing (the base token) so
152
+ // nothing moves here: light has the same disease mirrored — a light rung on a
153
+ // near-white ramp[50] fill — but correcting it belongs with the light-mode pass
154
+ // in AW-121, not this one.
155
+ "on-brand-primary-subtle": primitiveRamps.orange[400],
156
+ "on-brand-secondary-subtle": primitiveRamps.cyan[600],
129
157
  // Status colors (status-*)
130
158
  "status-success": primitiveRamps.green[300],
131
159
  "status-success-light": primitiveRamps.green[200],
@@ -161,21 +189,26 @@ var semanticColorsLight = {
161
189
  "status-info-subtle": primitiveRamps.blue[50],
162
190
  "status-info-muted": "rgba(33, 150, 243, 0.30)",
163
191
  "status-info-strong": "rgba(33, 150, 243, 0.50)",
192
+ // Text ON a `-subtle` fill — see the on-brand-*-subtle note above.
193
+ "on-status-success-subtle": primitiveRamps.green[300],
194
+ "on-status-error-subtle": primitiveRamps.red[600],
195
+ "on-status-warning-subtle": primitiveRamps.amber[300],
196
+ "on-status-info-subtle": primitiveRamps.blue[500],
164
197
  // Text on status backgrounds (on-status-*)
165
198
  "on-status-success": primitiveColors.white,
166
199
  "on-status-error": primitiveColors.white,
167
200
  "on-status-warning": primitiveColors.white,
168
201
  "on-status-info": primitiveColors.white,
169
202
  // Result/outcome indicators (result-*)
170
- "result-improve": "#4caf50",
203
+ "result-improve": resultPaletteColors.improve,
171
204
  // Green - positive outcome
172
205
  "result-improve-light": "rgba(76, 175, 80, 0.12)",
173
- "result-improve-dark": "#248a24",
174
- "result-degrade": "#ef5350",
206
+ "result-improve-dark": resultPaletteColors.improveDark,
207
+ "result-degrade": resultPaletteColors.degrade,
175
208
  // Red - negative outcome
176
209
  "result-degrade-light": "rgba(239, 83, 80, 0.12)",
177
- "result-degrade-dark": "#b30000",
178
- "result-inconclusive": "#9E9A97",
210
+ "result-degrade-dark": resultPaletteColors.degradeDark,
211
+ "result-inconclusive": resultPaletteColors.inconclusive,
179
212
  // Gray - no clear result
180
213
  "result-inconclusive-light": "rgba(158, 154, 151, 0.12)",
181
214
  "result-neutral": greyRamp[600],
@@ -207,8 +240,8 @@ var semanticColorsLight = {
207
240
  "data-10": discreteRainbow[22],
208
241
  // Dark Orange
209
242
  // Text colors (text-*)
210
- "text-primary": "#121828",
211
- "text-secondary": "#65748B",
243
+ "text-primary": semanticPins.textPrimaryLight,
244
+ "text-secondary": semanticPins.textSecondaryLight,
212
245
  "text-tertiary": greyRamp[400],
213
246
  "text-disabled": "rgba(55, 65, 81, 0.48)",
214
247
  "text-inverse": primitiveColors.white,
@@ -224,7 +257,7 @@ var semanticColorsLight = {
224
257
  "surface-input": greyRamp[50],
225
258
  // Input field background (filled variant)
226
259
  // Background colors (background-*)
227
- "background-base": "#EBEBEB",
260
+ "background-base": semanticPins.backgroundBaseLight,
228
261
  "background-default": primitiveColors.white,
229
262
  "background-subtle": greyRamp[50],
230
263
  // Frame/bezel chrome — top bar + side nav shell, one step below
@@ -255,7 +288,7 @@ var semanticColorsLight = {
255
288
  "interactive-disabled": "rgba(55, 65, 81, 0.12)",
256
289
  "interactive-disabled-text": "rgba(55, 65, 81, 0.26)",
257
290
  // Divider
258
- divider: "#E8E9EB",
291
+ divider: semanticPins.dividerLight,
259
292
  // Avatar default
260
293
  "avatar-background": greyRamp[600],
261
294
  "avatar-text": primitiveColors.white
@@ -273,7 +306,7 @@ var semanticColorsDark = {
273
306
  "brand-secondary": primitiveRamps.cyan[600],
274
307
  "brand-secondary-light": primitiveRamps.cyan[500],
275
308
  "brand-secondary-dark": primitiveRamps.cyan[700],
276
- "brand-secondary-subtle": "rgba(48, 123, 155, 0.12)",
309
+ "brand-secondary-subtle": "rgba(34, 211, 238, 0.12)",
277
310
  "brand-secondary-muted": "rgba(48, 123, 155, 0.30)",
278
311
  "brand-secondary-strong": "rgba(48, 123, 155, 0.50)",
279
312
  "brand-secondary-hover": primitiveRamps.cyan[500],
@@ -281,6 +314,14 @@ var semanticColorsDark = {
281
314
  // Text on brand backgrounds
282
315
  "on-brand-primary": primitiveColors.white,
283
316
  "on-brand-secondary": primitiveColors.white,
317
+ // Text ON a `-subtle` fill. Its own role: `brand-primary` and friends are tuned to
318
+ // carry a white label as a solid fill, which makes the two deepest of them
319
+ // (cyan[600], red[600]) too dark to read as text on a dark plane. Levelling the
320
+ // family at rung 300 puts every tone within OKLCH L 0.769-0.813 instead of
321
+ // 0.550-0.813. Brand is deliberately left at its own orange[400] (operator, AW-133)
322
+ // so the Voltras tone never drifts; it is the one tone under AA on a raised card.
323
+ "on-brand-primary-subtle": primitiveRamps.orange[400],
324
+ "on-brand-secondary-subtle": primitiveRamps.cyan[300],
284
325
  // Status colors
285
326
  "status-success": primitiveRamps.green[300],
286
327
  "status-success-light": primitiveRamps.green[200],
@@ -294,7 +335,10 @@ var semanticColorsDark = {
294
335
  "status-error": primitiveRamps.red[600],
295
336
  "status-error-light": primitiveRamps.red[500],
296
337
  "status-error-dark": primitiveRamps.red[700],
297
- "status-error-subtle": "rgba(209, 67, 67, 0.12)",
338
+ // Alpha 0.08, not the family's 0.12: error's label is red[400], a rung darker than
339
+ // its siblings so it reads RED rather than pink (rung 300 has only 0.121 chroma).
340
+ // Thinning the fill buys back the contrast that extra darkness costs. See AW-133.
341
+ "status-error-subtle": "rgba(247, 113, 117, 0.08)",
298
342
  "status-error-muted": "rgba(209, 67, 67, 0.30)",
299
343
  "status-error-strong": "rgba(209, 67, 67, 0.50)",
300
344
  "status-error-vivid": alertRedVivid,
@@ -312,7 +356,7 @@ var semanticColorsDark = {
312
356
  "status-info": primitiveRamps.blue[500],
313
357
  "status-info-light": primitiveRamps.blue[300],
314
358
  "status-info-dark": primitiveRamps.blue[600],
315
- "status-info-subtle": "rgba(33, 150, 243, 0.12)",
359
+ "status-info-subtle": "rgba(120, 194, 255, 0.12)",
316
360
  "status-info-muted": "rgba(33, 150, 243, 0.30)",
317
361
  "status-info-strong": "rgba(33, 150, 243, 0.50)",
318
362
  // Text on status backgrounds
@@ -320,14 +364,22 @@ var semanticColorsDark = {
320
364
  "on-status-error": primitiveColors.white,
321
365
  "on-status-warning": primitiveColors.white,
322
366
  "on-status-info": primitiveColors.white,
367
+ // Text ON a `-subtle` fill — see the on-brand-*-subtle note above. Error is the
368
+ // second deliberate exception to the rung-300 rule (operator, AW-133): red[300]
369
+ // levelled perfectly but read PINK, because a red that light can only hold 0.121
370
+ // chroma. red[400] carries 0.165 and reads red; its fill is thinned to compensate.
371
+ "on-status-success-subtle": primitiveRamps.green[300],
372
+ "on-status-error-subtle": primitiveRamps.red[400],
373
+ "on-status-warning-subtle": primitiveRamps.amber[300],
374
+ "on-status-info-subtle": primitiveRamps.blue[300],
323
375
  // Result/outcome indicators (result-*)
324
- "result-improve": "#4caf50",
376
+ "result-improve": resultPaletteColors.improve,
325
377
  "result-improve-light": "rgba(76, 175, 80, 0.16)",
326
- "result-improve-dark": "#248a24",
327
- "result-degrade": "#ef5350",
378
+ "result-improve-dark": resultPaletteColors.improveDark,
379
+ "result-degrade": resultPaletteColors.degrade,
328
380
  "result-degrade-light": "rgba(239, 83, 80, 0.16)",
329
- "result-degrade-dark": "#b30000",
330
- "result-inconclusive": "#9E9A97",
381
+ "result-degrade-dark": resultPaletteColors.degradeDark,
382
+ "result-inconclusive": resultPaletteColors.inconclusive,
331
383
  "result-inconclusive-light": "rgba(158, 154, 151, 0.16)",
332
384
  "result-neutral": greyRamp[400],
333
385
  // Text on result backgrounds
@@ -358,7 +410,7 @@ var semanticColorsDark = {
358
410
  "text-tertiary": greyRamp[500],
359
411
  "text-disabled": "rgba(255, 255, 255, 0.38)",
360
412
  "text-inverse": greyRamp[950],
361
- "text-link": "#828DF8",
413
+ "text-link": semanticPins.focusIndigoDark,
362
414
  "text-link-hover": primitiveRamps.blue[400],
363
415
  // Surface colors - dark backgrounds — warm-tapered DERIVED ramp (TD-surface-tokens,
364
416
  // S-1, re-spaced S-3). Shipped verbatim from `deriveSurfaceRamp()` — see
@@ -408,10 +460,10 @@ var semanticColorsDark = {
408
460
  // plane, so it keeps its job without collision.
409
461
  "border-prominent": greyRamp[800],
410
462
  // high-visibility divider
411
- "border-focus": "#828DF8",
463
+ "border-focus": semanticPins.focusIndigoDark,
412
464
  "border-input": greyRamp[700],
413
465
  "border-input-hover": greyRamp[600],
414
- "border-input-focus": "#828DF8",
466
+ "border-input-focus": semanticPins.focusIndigoDark,
415
467
  "border-input-error": primitiveRamps.red[500],
416
468
  // Alpha hairline separators — the primary separation cue (§4/S-2). Self-
417
469
  // normalizing: composites toward white by ~the same amount on ANY plane, so
@@ -499,6 +551,8 @@ var lightThemeCSSVars = {
499
551
  "--color-brand-secondary-strong": semanticColorsLight["brand-secondary-strong"],
500
552
  "--color-on-brand-primary": semanticColorsLight["on-brand-primary"],
501
553
  "--color-on-brand-secondary": semanticColorsLight["on-brand-secondary"],
554
+ "--color-on-brand-primary-subtle": semanticColorsLight["on-brand-primary-subtle"],
555
+ "--color-on-brand-secondary-subtle": semanticColorsLight["on-brand-secondary-subtle"],
502
556
  "--color-status-success": semanticColorsLight["status-success"],
503
557
  "--color-status-success-subtle": semanticColorsLight["status-success-subtle"],
504
558
  "--color-status-success-muted": semanticColorsLight["status-success-muted"],
@@ -560,6 +614,10 @@ var lightThemeCSSVars = {
560
614
  "--color-on-status-error": semanticColorsLight["on-status-error"],
561
615
  "--color-on-status-warning": semanticColorsLight["on-status-warning"],
562
616
  "--color-on-status-info": semanticColorsLight["on-status-info"],
617
+ "--color-on-status-success-subtle": semanticColorsLight["on-status-success-subtle"],
618
+ "--color-on-status-error-subtle": semanticColorsLight["on-status-error-subtle"],
619
+ "--color-on-status-warning-subtle": semanticColorsLight["on-status-warning-subtle"],
620
+ "--color-on-status-info-subtle": semanticColorsLight["on-status-info-subtle"],
563
621
  "--color-result-improve": semanticColorsLight["result-improve"],
564
622
  "--color-result-improve-light": semanticColorsLight["result-improve-light"],
565
623
  "--color-result-improve-dark": semanticColorsLight["result-improve-dark"],
@@ -612,6 +670,8 @@ var darkThemeCSSVars = {
612
670
  "--color-brand-secondary-strong": semanticColorsDark["brand-secondary-strong"],
613
671
  "--color-on-brand-primary": semanticColorsDark["on-brand-primary"],
614
672
  "--color-on-brand-secondary": semanticColorsDark["on-brand-secondary"],
673
+ "--color-on-brand-primary-subtle": semanticColorsDark["on-brand-primary-subtle"],
674
+ "--color-on-brand-secondary-subtle": semanticColorsDark["on-brand-secondary-subtle"],
615
675
  "--color-status-success": semanticColorsDark["status-success"],
616
676
  "--color-status-success-subtle": semanticColorsDark["status-success-subtle"],
617
677
  "--color-status-success-muted": semanticColorsDark["status-success-muted"],
@@ -673,6 +733,10 @@ var darkThemeCSSVars = {
673
733
  "--color-on-status-error": semanticColorsDark["on-status-error"],
674
734
  "--color-on-status-warning": semanticColorsDark["on-status-warning"],
675
735
  "--color-on-status-info": semanticColorsDark["on-status-info"],
736
+ "--color-on-status-success-subtle": semanticColorsDark["on-status-success-subtle"],
737
+ "--color-on-status-error-subtle": semanticColorsDark["on-status-error-subtle"],
738
+ "--color-on-status-warning-subtle": semanticColorsDark["on-status-warning-subtle"],
739
+ "--color-on-status-info-subtle": semanticColorsDark["on-status-info-subtle"],
676
740
  "--color-result-improve": semanticColorsDark["result-improve"],
677
741
  "--color-result-improve-light": semanticColorsDark["result-improve-light"],
678
742
  "--color-result-improve-dark": semanticColorsDark["result-improve-dark"],