@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
@@ -10,6 +10,26 @@ var primitiveColors = {
10
10
  transparent: "transparent"
11
11
  };
12
12
  var alertRedVivid = "#FF4757";
13
+ var resultPaletteColors = {
14
+ improve: "#4caf50",
15
+ improveDark: "#248a24",
16
+ degrade: "#ef5350",
17
+ degradeDark: "#b30000",
18
+ inconclusive: "#9E9A97"
19
+ };
20
+ var semanticPins = {
21
+ // Cool navy-black; darker and more blue-shifted than any warm greyRamp step.
22
+ textPrimaryLight: "#121828",
23
+ // Cool blue-grey; outside greyRamp's warm (R>=G>=B) scale.
24
+ textSecondaryLight: "#65748B",
25
+ // Pure neutral grey (R=G=B); no warm greyRamp step lands on it exactly.
26
+ backgroundBaseLight: "#EBEBEB",
27
+ // Near-neutral grey, kept one step off backgroundBaseLight by design.
28
+ dividerLight: "#E8E9EB",
29
+ // Periwinkle/indigo; more purple than any primitiveRamps.blue step. Shared by
30
+ // dark-mode text-link, border-focus and border-input-focus.
31
+ focusIndigoDark: "#828DF8"
32
+ };
13
33
  var greyRamp = {
14
34
  50: "#F9F6F3",
15
35
  // L*97.0 W6
@@ -442,6 +462,12 @@ var semanticColorsLight = {
442
462
  // Text on brand backgrounds (on-*)
443
463
  "on-brand-primary": primitiveColors.white,
444
464
  "on-brand-secondary": primitiveColors.white,
465
+ // Text ON a `-subtle` fill. Light mode keeps today's pairing (the base token) so
466
+ // nothing moves here: light has the same disease mirrored — a light rung on a
467
+ // near-white ramp[50] fill — but correcting it belongs with the light-mode pass
468
+ // in AW-121, not this one.
469
+ "on-brand-primary-subtle": primitiveRamps.orange[400],
470
+ "on-brand-secondary-subtle": primitiveRamps.cyan[600],
445
471
  // Status colors (status-*)
446
472
  "status-success": primitiveRamps.green[300],
447
473
  "status-success-light": primitiveRamps.green[200],
@@ -477,21 +503,26 @@ var semanticColorsLight = {
477
503
  "status-info-subtle": primitiveRamps.blue[50],
478
504
  "status-info-muted": "rgba(33, 150, 243, 0.30)",
479
505
  "status-info-strong": "rgba(33, 150, 243, 0.50)",
506
+ // Text ON a `-subtle` fill — see the on-brand-*-subtle note above.
507
+ "on-status-success-subtle": primitiveRamps.green[300],
508
+ "on-status-error-subtle": primitiveRamps.red[600],
509
+ "on-status-warning-subtle": primitiveRamps.amber[300],
510
+ "on-status-info-subtle": primitiveRamps.blue[500],
480
511
  // Text on status backgrounds (on-status-*)
481
512
  "on-status-success": primitiveColors.white,
482
513
  "on-status-error": primitiveColors.white,
483
514
  "on-status-warning": primitiveColors.white,
484
515
  "on-status-info": primitiveColors.white,
485
516
  // Result/outcome indicators (result-*)
486
- "result-improve": "#4caf50",
517
+ "result-improve": resultPaletteColors.improve,
487
518
  // Green - positive outcome
488
519
  "result-improve-light": "rgba(76, 175, 80, 0.12)",
489
- "result-improve-dark": "#248a24",
490
- "result-degrade": "#ef5350",
520
+ "result-improve-dark": resultPaletteColors.improveDark,
521
+ "result-degrade": resultPaletteColors.degrade,
491
522
  // Red - negative outcome
492
523
  "result-degrade-light": "rgba(239, 83, 80, 0.12)",
493
- "result-degrade-dark": "#b30000",
494
- "result-inconclusive": "#9E9A97",
524
+ "result-degrade-dark": resultPaletteColors.degradeDark,
525
+ "result-inconclusive": resultPaletteColors.inconclusive,
495
526
  // Gray - no clear result
496
527
  "result-inconclusive-light": "rgba(158, 154, 151, 0.12)",
497
528
  "result-neutral": greyRamp[600],
@@ -523,8 +554,8 @@ var semanticColorsLight = {
523
554
  "data-10": discreteRainbow[22],
524
555
  // Dark Orange
525
556
  // Text colors (text-*)
526
- "text-primary": "#121828",
527
- "text-secondary": "#65748B",
557
+ "text-primary": semanticPins.textPrimaryLight,
558
+ "text-secondary": semanticPins.textSecondaryLight,
528
559
  "text-tertiary": greyRamp[400],
529
560
  "text-disabled": "rgba(55, 65, 81, 0.48)",
530
561
  "text-inverse": primitiveColors.white,
@@ -540,7 +571,7 @@ var semanticColorsLight = {
540
571
  "surface-input": greyRamp[50],
541
572
  // Input field background (filled variant)
542
573
  // Background colors (background-*)
543
- "background-base": "#EBEBEB",
574
+ "background-base": semanticPins.backgroundBaseLight,
544
575
  "background-default": primitiveColors.white,
545
576
  "background-subtle": greyRamp[50],
546
577
  // Frame/bezel chrome — top bar + side nav shell, one step below
@@ -571,7 +602,7 @@ var semanticColorsLight = {
571
602
  "interactive-disabled": "rgba(55, 65, 81, 0.12)",
572
603
  "interactive-disabled-text": "rgba(55, 65, 81, 0.26)",
573
604
  // Divider
574
- divider: "#E8E9EB",
605
+ divider: semanticPins.dividerLight,
575
606
  // Avatar default
576
607
  "avatar-background": greyRamp[600],
577
608
  "avatar-text": primitiveColors.white
@@ -589,7 +620,7 @@ var semanticColorsDark = {
589
620
  "brand-secondary": primitiveRamps.cyan[600],
590
621
  "brand-secondary-light": primitiveRamps.cyan[500],
591
622
  "brand-secondary-dark": primitiveRamps.cyan[700],
592
- "brand-secondary-subtle": "rgba(48, 123, 155, 0.12)",
623
+ "brand-secondary-subtle": "rgba(34, 211, 238, 0.12)",
593
624
  "brand-secondary-muted": "rgba(48, 123, 155, 0.30)",
594
625
  "brand-secondary-strong": "rgba(48, 123, 155, 0.50)",
595
626
  "brand-secondary-hover": primitiveRamps.cyan[500],
@@ -597,6 +628,14 @@ var semanticColorsDark = {
597
628
  // Text on brand backgrounds
598
629
  "on-brand-primary": primitiveColors.white,
599
630
  "on-brand-secondary": primitiveColors.white,
631
+ // Text ON a `-subtle` fill. Its own role: `brand-primary` and friends are tuned to
632
+ // carry a white label as a solid fill, which makes the two deepest of them
633
+ // (cyan[600], red[600]) too dark to read as text on a dark plane. Levelling the
634
+ // family at rung 300 puts every tone within OKLCH L 0.769-0.813 instead of
635
+ // 0.550-0.813. Brand is deliberately left at its own orange[400] (operator, AW-133)
636
+ // so the Voltras tone never drifts; it is the one tone under AA on a raised card.
637
+ "on-brand-primary-subtle": primitiveRamps.orange[400],
638
+ "on-brand-secondary-subtle": primitiveRamps.cyan[300],
600
639
  // Status colors
601
640
  "status-success": primitiveRamps.green[300],
602
641
  "status-success-light": primitiveRamps.green[200],
@@ -610,7 +649,10 @@ var semanticColorsDark = {
610
649
  "status-error": primitiveRamps.red[600],
611
650
  "status-error-light": primitiveRamps.red[500],
612
651
  "status-error-dark": primitiveRamps.red[700],
613
- "status-error-subtle": "rgba(209, 67, 67, 0.12)",
652
+ // Alpha 0.08, not the family's 0.12: error's label is red[400], a rung darker than
653
+ // its siblings so it reads RED rather than pink (rung 300 has only 0.121 chroma).
654
+ // Thinning the fill buys back the contrast that extra darkness costs. See AW-133.
655
+ "status-error-subtle": "rgba(247, 113, 117, 0.08)",
614
656
  "status-error-muted": "rgba(209, 67, 67, 0.30)",
615
657
  "status-error-strong": "rgba(209, 67, 67, 0.50)",
616
658
  "status-error-vivid": alertRedVivid,
@@ -628,7 +670,7 @@ var semanticColorsDark = {
628
670
  "status-info": primitiveRamps.blue[500],
629
671
  "status-info-light": primitiveRamps.blue[300],
630
672
  "status-info-dark": primitiveRamps.blue[600],
631
- "status-info-subtle": "rgba(33, 150, 243, 0.12)",
673
+ "status-info-subtle": "rgba(120, 194, 255, 0.12)",
632
674
  "status-info-muted": "rgba(33, 150, 243, 0.30)",
633
675
  "status-info-strong": "rgba(33, 150, 243, 0.50)",
634
676
  // Text on status backgrounds
@@ -636,14 +678,22 @@ var semanticColorsDark = {
636
678
  "on-status-error": primitiveColors.white,
637
679
  "on-status-warning": primitiveColors.white,
638
680
  "on-status-info": primitiveColors.white,
681
+ // Text ON a `-subtle` fill — see the on-brand-*-subtle note above. Error is the
682
+ // second deliberate exception to the rung-300 rule (operator, AW-133): red[300]
683
+ // levelled perfectly but read PINK, because a red that light can only hold 0.121
684
+ // chroma. red[400] carries 0.165 and reads red; its fill is thinned to compensate.
685
+ "on-status-success-subtle": primitiveRamps.green[300],
686
+ "on-status-error-subtle": primitiveRamps.red[400],
687
+ "on-status-warning-subtle": primitiveRamps.amber[300],
688
+ "on-status-info-subtle": primitiveRamps.blue[300],
639
689
  // Result/outcome indicators (result-*)
640
- "result-improve": "#4caf50",
690
+ "result-improve": resultPaletteColors.improve,
641
691
  "result-improve-light": "rgba(76, 175, 80, 0.16)",
642
- "result-improve-dark": "#248a24",
643
- "result-degrade": "#ef5350",
692
+ "result-improve-dark": resultPaletteColors.improveDark,
693
+ "result-degrade": resultPaletteColors.degrade,
644
694
  "result-degrade-light": "rgba(239, 83, 80, 0.16)",
645
- "result-degrade-dark": "#b30000",
646
- "result-inconclusive": "#9E9A97",
695
+ "result-degrade-dark": resultPaletteColors.degradeDark,
696
+ "result-inconclusive": resultPaletteColors.inconclusive,
647
697
  "result-inconclusive-light": "rgba(158, 154, 151, 0.16)",
648
698
  "result-neutral": greyRamp[400],
649
699
  // Text on result backgrounds
@@ -674,7 +724,7 @@ var semanticColorsDark = {
674
724
  "text-tertiary": greyRamp[500],
675
725
  "text-disabled": "rgba(255, 255, 255, 0.38)",
676
726
  "text-inverse": greyRamp[950],
677
- "text-link": "#828DF8",
727
+ "text-link": semanticPins.focusIndigoDark,
678
728
  "text-link-hover": primitiveRamps.blue[400],
679
729
  // Surface colors - dark backgrounds — warm-tapered DERIVED ramp (TD-surface-tokens,
680
730
  // S-1, re-spaced S-3). Shipped verbatim from `deriveSurfaceRamp()` — see
@@ -724,10 +774,10 @@ var semanticColorsDark = {
724
774
  // plane, so it keeps its job without collision.
725
775
  "border-prominent": greyRamp[800],
726
776
  // high-visibility divider
727
- "border-focus": "#828DF8",
777
+ "border-focus": semanticPins.focusIndigoDark,
728
778
  "border-input": greyRamp[700],
729
779
  "border-input-hover": greyRamp[600],
730
- "border-input-focus": "#828DF8",
780
+ "border-input-focus": semanticPins.focusIndigoDark,
731
781
  "border-input-error": primitiveRamps.red[500],
732
782
  // Alpha hairline separators — the primary separation cue (§4/S-2). Self-
733
783
  // normalizing: composites toward white by ~the same amount on ANY plane, so
@@ -919,6 +969,8 @@ var lightThemeCSSVars = {
919
969
  "--color-brand-secondary-strong": semanticColorsLight["brand-secondary-strong"],
920
970
  "--color-on-brand-primary": semanticColorsLight["on-brand-primary"],
921
971
  "--color-on-brand-secondary": semanticColorsLight["on-brand-secondary"],
972
+ "--color-on-brand-primary-subtle": semanticColorsLight["on-brand-primary-subtle"],
973
+ "--color-on-brand-secondary-subtle": semanticColorsLight["on-brand-secondary-subtle"],
922
974
  "--color-status-success": semanticColorsLight["status-success"],
923
975
  "--color-status-success-subtle": semanticColorsLight["status-success-subtle"],
924
976
  "--color-status-success-muted": semanticColorsLight["status-success-muted"],
@@ -980,6 +1032,10 @@ var lightThemeCSSVars = {
980
1032
  "--color-on-status-error": semanticColorsLight["on-status-error"],
981
1033
  "--color-on-status-warning": semanticColorsLight["on-status-warning"],
982
1034
  "--color-on-status-info": semanticColorsLight["on-status-info"],
1035
+ "--color-on-status-success-subtle": semanticColorsLight["on-status-success-subtle"],
1036
+ "--color-on-status-error-subtle": semanticColorsLight["on-status-error-subtle"],
1037
+ "--color-on-status-warning-subtle": semanticColorsLight["on-status-warning-subtle"],
1038
+ "--color-on-status-info-subtle": semanticColorsLight["on-status-info-subtle"],
983
1039
  "--color-result-improve": semanticColorsLight["result-improve"],
984
1040
  "--color-result-improve-light": semanticColorsLight["result-improve-light"],
985
1041
  "--color-result-improve-dark": semanticColorsLight["result-improve-dark"],
@@ -1032,6 +1088,8 @@ var darkThemeCSSVars = {
1032
1088
  "--color-brand-secondary-strong": semanticColorsDark["brand-secondary-strong"],
1033
1089
  "--color-on-brand-primary": semanticColorsDark["on-brand-primary"],
1034
1090
  "--color-on-brand-secondary": semanticColorsDark["on-brand-secondary"],
1091
+ "--color-on-brand-primary-subtle": semanticColorsDark["on-brand-primary-subtle"],
1092
+ "--color-on-brand-secondary-subtle": semanticColorsDark["on-brand-secondary-subtle"],
1035
1093
  "--color-status-success": semanticColorsDark["status-success"],
1036
1094
  "--color-status-success-subtle": semanticColorsDark["status-success-subtle"],
1037
1095
  "--color-status-success-muted": semanticColorsDark["status-success-muted"],
@@ -1093,6 +1151,10 @@ var darkThemeCSSVars = {
1093
1151
  "--color-on-status-error": semanticColorsDark["on-status-error"],
1094
1152
  "--color-on-status-warning": semanticColorsDark["on-status-warning"],
1095
1153
  "--color-on-status-info": semanticColorsDark["on-status-info"],
1154
+ "--color-on-status-success-subtle": semanticColorsDark["on-status-success-subtle"],
1155
+ "--color-on-status-error-subtle": semanticColorsDark["on-status-error-subtle"],
1156
+ "--color-on-status-warning-subtle": semanticColorsDark["on-status-warning-subtle"],
1157
+ "--color-on-status-info-subtle": semanticColorsDark["on-status-info-subtle"],
1096
1158
  "--color-result-improve": semanticColorsDark["result-improve"],
1097
1159
  "--color-result-improve-light": semanticColorsDark["result-improve-light"],
1098
1160
  "--color-result-improve-dark": semanticColorsDark["result-improve-dark"],
@@ -1791,6 +1853,6 @@ function ThemeProvider({
1791
1853
  return /* @__PURE__ */ jsx(SurfaceContext.Provider, { value: { mode: resolved, level: "base" }, children: /* @__PURE__ */ jsx(View, { style: [MODE_VARS[resolved], { flex: 1 }, style], ...props, children }) });
1792
1854
  }
1793
1855
 
1794
- export { CATEGORICAL_CVD_SAFE_MAX, ELEVATION_PLANE, FLOATING_ELEVATION_MIN, FLOATING_LIFT_MIN, LIFT_RIM_ALPHA, PLANE_ORDER, PRESSED_ELEVATION_LEVEL, SURFACE_LEVEL_TOKEN, SURFACE_PLANE_STEPS, ThemeProvider, alertRedVivid, applyThemePreset, audiobookPreset, barPaper, bestTextColor, buttonSizes, categoricalPalette, darkThemeCSSVars, darken, debossLabel, defaultPreset, discreteRainbow, divergingScale, elevationPlane, getCategoricalColor, getDiscreteRainbowColor, getElevationShadow, getElevationSurface, getGlowShadow, getHoverColors, getPressedRecessShadow, getSemanticColors, getThemeCSSVars, gluestackConfig, grainForTone, grainOpacityForTone, greyRamp, hexToRgb, hsvToRgb, insetWell, isCssPropertyManifest, isDark, liftShadow, liftStyle, lightThemeCSSVars, lighten, linearGradient, paperSheet, postIt, pressedLevel, primitiveBorderRadius, primitiveBreakpoints, primitiveColors, primitiveRamps, primitiveSpacing, primitiveTypography, primitiveZIndex, raisedLevel, resolveColor, rgbToHex, rgbToHsv, semanticColorsDark, semanticColorsLight, semanticTypography, sequentialEffort, surfaceBackground, surfaceGradient, validateCssPropertyManifest };
1856
+ export { CATEGORICAL_CVD_SAFE_MAX, ELEVATION_PLANE, FLOATING_ELEVATION_MIN, FLOATING_LIFT_MIN, LIFT_RIM_ALPHA, PLANE_ORDER, PRESSED_ELEVATION_LEVEL, SURFACE_LEVEL_TOKEN, SURFACE_PLANE_STEPS, ThemeProvider, alertRedVivid, applyThemePreset, audiobookPreset, barPaper, bestTextColor, buttonSizes, categoricalPalette, darkThemeCSSVars, darken, debossLabel, defaultPreset, discreteRainbow, divergingScale, elevationPlane, getCategoricalColor, getDiscreteRainbowColor, getElevationShadow, getElevationSurface, getGlowShadow, getHoverColors, getPressedRecessShadow, getSemanticColors, getThemeCSSVars, gluestackConfig, grainForTone, grainOpacityForTone, greyRamp, hexToRgb, hsvToRgb, insetWell, isCssPropertyManifest, isDark, liftShadow, liftStyle, lightThemeCSSVars, lighten, linearGradient, paperSheet, postIt, pressedLevel, primitiveBorderRadius, primitiveBreakpoints, primitiveColors, primitiveRamps, primitiveSpacing, primitiveTypography, primitiveZIndex, raisedLevel, resolveColor, resultPaletteColors, rgbToHex, rgbToHsv, semanticColorsDark, semanticColorsLight, semanticPins, semanticTypography, sequentialEffort, surfaceBackground, surfaceGradient, validateCssPropertyManifest };
1795
1857
  //# sourceMappingURL=index.mjs.map
1796
1858
  //# sourceMappingURL=index.mjs.map