@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
@@ -4,6 +4,26 @@
4
4
  var primitiveColors = {
5
5
  white: "#FFFFFF"};
6
6
  var alertRedVivid = "#FF4757";
7
+ var resultPaletteColors = {
8
+ improve: "#4caf50",
9
+ improveDark: "#248a24",
10
+ degrade: "#ef5350",
11
+ degradeDark: "#b30000",
12
+ inconclusive: "#9E9A97"
13
+ };
14
+ var semanticPins = {
15
+ // Cool navy-black; darker and more blue-shifted than any warm greyRamp step.
16
+ textPrimaryLight: "#121828",
17
+ // Cool blue-grey; outside greyRamp's warm (R>=G>=B) scale.
18
+ textSecondaryLight: "#65748B",
19
+ // Pure neutral grey (R=G=B); no warm greyRamp step lands on it exactly.
20
+ backgroundBaseLight: "#EBEBEB",
21
+ // Near-neutral grey, kept one step off backgroundBaseLight by design.
22
+ dividerLight: "#E8E9EB",
23
+ // Periwinkle/indigo; more purple than any primitiveRamps.blue step. Shared by
24
+ // dark-mode text-link, border-focus and border-input-focus.
25
+ focusIndigoDark: "#828DF8"
26
+ };
7
27
  var greyRamp = {
8
28
  50: "#F9F6F3",
9
29
  // L*97.0 W6
@@ -37,6 +57,7 @@ var greyRamp = {
37
57
  var primitiveRamps = {
38
58
  red: {
39
59
  50: "#FFF4F4",
60
+ 400: "#F77175",
40
61
  500: "#E05254",
41
62
  600: "#D14343",
42
63
  // pin
@@ -60,6 +81,7 @@ var primitiveRamps = {
60
81
  500: "#22A444",
61
82
  600: "#298732"},
62
83
  cyan: {
84
+ 300: "#22D3EE",
63
85
  // pin
64
86
  400: "#01B5D1",
65
87
  500: "#2697B7",
@@ -128,6 +150,12 @@ var semanticColorsLight = {
128
150
  // Text on brand backgrounds (on-*)
129
151
  "on-brand-primary": primitiveColors.white,
130
152
  "on-brand-secondary": primitiveColors.white,
153
+ // Text ON a `-subtle` fill. Light mode keeps today's pairing (the base token) so
154
+ // nothing moves here: light has the same disease mirrored — a light rung on a
155
+ // near-white ramp[50] fill — but correcting it belongs with the light-mode pass
156
+ // in AW-121, not this one.
157
+ "on-brand-primary-subtle": primitiveRamps.orange[400],
158
+ "on-brand-secondary-subtle": primitiveRamps.cyan[600],
131
159
  // Status colors (status-*)
132
160
  "status-success": primitiveRamps.green[300],
133
161
  "status-success-light": primitiveRamps.green[200],
@@ -163,21 +191,26 @@ var semanticColorsLight = {
163
191
  "status-info-subtle": primitiveRamps.blue[50],
164
192
  "status-info-muted": "rgba(33, 150, 243, 0.30)",
165
193
  "status-info-strong": "rgba(33, 150, 243, 0.50)",
194
+ // Text ON a `-subtle` fill — see the on-brand-*-subtle note above.
195
+ "on-status-success-subtle": primitiveRamps.green[300],
196
+ "on-status-error-subtle": primitiveRamps.red[600],
197
+ "on-status-warning-subtle": primitiveRamps.amber[300],
198
+ "on-status-info-subtle": primitiveRamps.blue[500],
166
199
  // Text on status backgrounds (on-status-*)
167
200
  "on-status-success": primitiveColors.white,
168
201
  "on-status-error": primitiveColors.white,
169
202
  "on-status-warning": primitiveColors.white,
170
203
  "on-status-info": primitiveColors.white,
171
204
  // Result/outcome indicators (result-*)
172
- "result-improve": "#4caf50",
205
+ "result-improve": resultPaletteColors.improve,
173
206
  // Green - positive outcome
174
207
  "result-improve-light": "rgba(76, 175, 80, 0.12)",
175
- "result-improve-dark": "#248a24",
176
- "result-degrade": "#ef5350",
208
+ "result-improve-dark": resultPaletteColors.improveDark,
209
+ "result-degrade": resultPaletteColors.degrade,
177
210
  // Red - negative outcome
178
211
  "result-degrade-light": "rgba(239, 83, 80, 0.12)",
179
- "result-degrade-dark": "#b30000",
180
- "result-inconclusive": "#9E9A97",
212
+ "result-degrade-dark": resultPaletteColors.degradeDark,
213
+ "result-inconclusive": resultPaletteColors.inconclusive,
181
214
  // Gray - no clear result
182
215
  "result-inconclusive-light": "rgba(158, 154, 151, 0.12)",
183
216
  "result-neutral": greyRamp[600],
@@ -209,8 +242,8 @@ var semanticColorsLight = {
209
242
  "data-10": discreteRainbow[22],
210
243
  // Dark Orange
211
244
  // Text colors (text-*)
212
- "text-primary": "#121828",
213
- "text-secondary": "#65748B",
245
+ "text-primary": semanticPins.textPrimaryLight,
246
+ "text-secondary": semanticPins.textSecondaryLight,
214
247
  "text-tertiary": greyRamp[400],
215
248
  "text-disabled": "rgba(55, 65, 81, 0.48)",
216
249
  "text-inverse": primitiveColors.white,
@@ -226,7 +259,7 @@ var semanticColorsLight = {
226
259
  "surface-input": greyRamp[50],
227
260
  // Input field background (filled variant)
228
261
  // Background colors (background-*)
229
- "background-base": "#EBEBEB",
262
+ "background-base": semanticPins.backgroundBaseLight,
230
263
  "background-default": primitiveColors.white,
231
264
  "background-subtle": greyRamp[50],
232
265
  // Frame/bezel chrome — top bar + side nav shell, one step below
@@ -257,7 +290,7 @@ var semanticColorsLight = {
257
290
  "interactive-disabled": "rgba(55, 65, 81, 0.12)",
258
291
  "interactive-disabled-text": "rgba(55, 65, 81, 0.26)",
259
292
  // Divider
260
- divider: "#E8E9EB",
293
+ divider: semanticPins.dividerLight,
261
294
  // Avatar default
262
295
  "avatar-background": greyRamp[600],
263
296
  "avatar-text": primitiveColors.white
@@ -275,7 +308,7 @@ var semanticColorsDark = {
275
308
  "brand-secondary": primitiveRamps.cyan[600],
276
309
  "brand-secondary-light": primitiveRamps.cyan[500],
277
310
  "brand-secondary-dark": primitiveRamps.cyan[700],
278
- "brand-secondary-subtle": "rgba(48, 123, 155, 0.12)",
311
+ "brand-secondary-subtle": "rgba(34, 211, 238, 0.12)",
279
312
  "brand-secondary-muted": "rgba(48, 123, 155, 0.30)",
280
313
  "brand-secondary-strong": "rgba(48, 123, 155, 0.50)",
281
314
  "brand-secondary-hover": primitiveRamps.cyan[500],
@@ -283,6 +316,14 @@ var semanticColorsDark = {
283
316
  // Text on brand backgrounds
284
317
  "on-brand-primary": primitiveColors.white,
285
318
  "on-brand-secondary": primitiveColors.white,
319
+ // Text ON a `-subtle` fill. Its own role: `brand-primary` and friends are tuned to
320
+ // carry a white label as a solid fill, which makes the two deepest of them
321
+ // (cyan[600], red[600]) too dark to read as text on a dark plane. Levelling the
322
+ // family at rung 300 puts every tone within OKLCH L 0.769-0.813 instead of
323
+ // 0.550-0.813. Brand is deliberately left at its own orange[400] (operator, AW-133)
324
+ // so the Voltras tone never drifts; it is the one tone under AA on a raised card.
325
+ "on-brand-primary-subtle": primitiveRamps.orange[400],
326
+ "on-brand-secondary-subtle": primitiveRamps.cyan[300],
286
327
  // Status colors
287
328
  "status-success": primitiveRamps.green[300],
288
329
  "status-success-light": primitiveRamps.green[200],
@@ -296,7 +337,10 @@ var semanticColorsDark = {
296
337
  "status-error": primitiveRamps.red[600],
297
338
  "status-error-light": primitiveRamps.red[500],
298
339
  "status-error-dark": primitiveRamps.red[700],
299
- "status-error-subtle": "rgba(209, 67, 67, 0.12)",
340
+ // Alpha 0.08, not the family's 0.12: error's label is red[400], a rung darker than
341
+ // its siblings so it reads RED rather than pink (rung 300 has only 0.121 chroma).
342
+ // Thinning the fill buys back the contrast that extra darkness costs. See AW-133.
343
+ "status-error-subtle": "rgba(247, 113, 117, 0.08)",
300
344
  "status-error-muted": "rgba(209, 67, 67, 0.30)",
301
345
  "status-error-strong": "rgba(209, 67, 67, 0.50)",
302
346
  "status-error-vivid": alertRedVivid,
@@ -314,7 +358,7 @@ var semanticColorsDark = {
314
358
  "status-info": primitiveRamps.blue[500],
315
359
  "status-info-light": primitiveRamps.blue[300],
316
360
  "status-info-dark": primitiveRamps.blue[600],
317
- "status-info-subtle": "rgba(33, 150, 243, 0.12)",
361
+ "status-info-subtle": "rgba(120, 194, 255, 0.12)",
318
362
  "status-info-muted": "rgba(33, 150, 243, 0.30)",
319
363
  "status-info-strong": "rgba(33, 150, 243, 0.50)",
320
364
  // Text on status backgrounds
@@ -322,14 +366,22 @@ var semanticColorsDark = {
322
366
  "on-status-error": primitiveColors.white,
323
367
  "on-status-warning": primitiveColors.white,
324
368
  "on-status-info": primitiveColors.white,
369
+ // Text ON a `-subtle` fill — see the on-brand-*-subtle note above. Error is the
370
+ // second deliberate exception to the rung-300 rule (operator, AW-133): red[300]
371
+ // levelled perfectly but read PINK, because a red that light can only hold 0.121
372
+ // chroma. red[400] carries 0.165 and reads red; its fill is thinned to compensate.
373
+ "on-status-success-subtle": primitiveRamps.green[300],
374
+ "on-status-error-subtle": primitiveRamps.red[400],
375
+ "on-status-warning-subtle": primitiveRamps.amber[300],
376
+ "on-status-info-subtle": primitiveRamps.blue[300],
325
377
  // Result/outcome indicators (result-*)
326
- "result-improve": "#4caf50",
378
+ "result-improve": resultPaletteColors.improve,
327
379
  "result-improve-light": "rgba(76, 175, 80, 0.16)",
328
- "result-improve-dark": "#248a24",
329
- "result-degrade": "#ef5350",
380
+ "result-improve-dark": resultPaletteColors.improveDark,
381
+ "result-degrade": resultPaletteColors.degrade,
330
382
  "result-degrade-light": "rgba(239, 83, 80, 0.16)",
331
- "result-degrade-dark": "#b30000",
332
- "result-inconclusive": "#9E9A97",
383
+ "result-degrade-dark": resultPaletteColors.degradeDark,
384
+ "result-inconclusive": resultPaletteColors.inconclusive,
333
385
  "result-inconclusive-light": "rgba(158, 154, 151, 0.16)",
334
386
  "result-neutral": greyRamp[400],
335
387
  // Text on result backgrounds
@@ -360,7 +412,7 @@ var semanticColorsDark = {
360
412
  "text-tertiary": greyRamp[500],
361
413
  "text-disabled": "rgba(255, 255, 255, 0.38)",
362
414
  "text-inverse": greyRamp[950],
363
- "text-link": "#828DF8",
415
+ "text-link": semanticPins.focusIndigoDark,
364
416
  "text-link-hover": primitiveRamps.blue[400],
365
417
  // Surface colors - dark backgrounds — warm-tapered DERIVED ramp (TD-surface-tokens,
366
418
  // S-1, re-spaced S-3). Shipped verbatim from `deriveSurfaceRamp()` — see
@@ -410,10 +462,10 @@ var semanticColorsDark = {
410
462
  // plane, so it keeps its job without collision.
411
463
  "border-prominent": greyRamp[800],
412
464
  // high-visibility divider
413
- "border-focus": "#828DF8",
465
+ "border-focus": semanticPins.focusIndigoDark,
414
466
  "border-input": greyRamp[700],
415
467
  "border-input-hover": greyRamp[600],
416
- "border-input-focus": "#828DF8",
468
+ "border-input-focus": semanticPins.focusIndigoDark,
417
469
  "border-input-error": primitiveRamps.red[500],
418
470
  // Alpha hairline separators — the primary separation cue (§4/S-2). Self-
419
471
  // normalizing: composites toward white by ~the same amount on ANY plane, so
@@ -501,6 +553,8 @@ var lightThemeCSSVars = {
501
553
  "--color-brand-secondary-strong": semanticColorsLight["brand-secondary-strong"],
502
554
  "--color-on-brand-primary": semanticColorsLight["on-brand-primary"],
503
555
  "--color-on-brand-secondary": semanticColorsLight["on-brand-secondary"],
556
+ "--color-on-brand-primary-subtle": semanticColorsLight["on-brand-primary-subtle"],
557
+ "--color-on-brand-secondary-subtle": semanticColorsLight["on-brand-secondary-subtle"],
504
558
  "--color-status-success": semanticColorsLight["status-success"],
505
559
  "--color-status-success-subtle": semanticColorsLight["status-success-subtle"],
506
560
  "--color-status-success-muted": semanticColorsLight["status-success-muted"],
@@ -562,6 +616,10 @@ var lightThemeCSSVars = {
562
616
  "--color-on-status-error": semanticColorsLight["on-status-error"],
563
617
  "--color-on-status-warning": semanticColorsLight["on-status-warning"],
564
618
  "--color-on-status-info": semanticColorsLight["on-status-info"],
619
+ "--color-on-status-success-subtle": semanticColorsLight["on-status-success-subtle"],
620
+ "--color-on-status-error-subtle": semanticColorsLight["on-status-error-subtle"],
621
+ "--color-on-status-warning-subtle": semanticColorsLight["on-status-warning-subtle"],
622
+ "--color-on-status-info-subtle": semanticColorsLight["on-status-info-subtle"],
565
623
  "--color-result-improve": semanticColorsLight["result-improve"],
566
624
  "--color-result-improve-light": semanticColorsLight["result-improve-light"],
567
625
  "--color-result-improve-dark": semanticColorsLight["result-improve-dark"],
@@ -614,6 +672,8 @@ var darkThemeCSSVars = {
614
672
  "--color-brand-secondary-strong": semanticColorsDark["brand-secondary-strong"],
615
673
  "--color-on-brand-primary": semanticColorsDark["on-brand-primary"],
616
674
  "--color-on-brand-secondary": semanticColorsDark["on-brand-secondary"],
675
+ "--color-on-brand-primary-subtle": semanticColorsDark["on-brand-primary-subtle"],
676
+ "--color-on-brand-secondary-subtle": semanticColorsDark["on-brand-secondary-subtle"],
617
677
  "--color-status-success": semanticColorsDark["status-success"],
618
678
  "--color-status-success-subtle": semanticColorsDark["status-success-subtle"],
619
679
  "--color-status-success-muted": semanticColorsDark["status-success-muted"],
@@ -675,6 +735,10 @@ var darkThemeCSSVars = {
675
735
  "--color-on-status-error": semanticColorsDark["on-status-error"],
676
736
  "--color-on-status-warning": semanticColorsDark["on-status-warning"],
677
737
  "--color-on-status-info": semanticColorsDark["on-status-info"],
738
+ "--color-on-status-success-subtle": semanticColorsDark["on-status-success-subtle"],
739
+ "--color-on-status-error-subtle": semanticColorsDark["on-status-error-subtle"],
740
+ "--color-on-status-warning-subtle": semanticColorsDark["on-status-warning-subtle"],
741
+ "--color-on-status-info-subtle": semanticColorsDark["on-status-info-subtle"],
678
742
  "--color-result-improve": semanticColorsDark["result-improve"],
679
743
  "--color-result-improve-light": semanticColorsDark["result-improve-light"],
680
744
  "--color-result-improve-dark": semanticColorsDark["result-improve-dark"],