@titan-design/react-ui 0.6.0 → 0.7.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.
- package/dist/bodymap.js +12 -7
- package/dist/bodymap.js.map +1 -1
- package/dist/bodymap.mjs +12 -7
- package/dist/bodymap.mjs.map +1 -1
- package/dist/index.d.mts +855 -124
- package/dist/index.d.ts +855 -124
- package/dist/index.js +2276 -801
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2230 -802
- package/dist/index.mjs.map +1 -1
- package/dist/{pages-MO0JCySL.d.mts → pages-8u_4WbL-.d.mts} +280 -57
- package/dist/{pages-D7Jlssvp.d.ts → pages-DaWiBOGa.d.ts} +280 -57
- package/dist/pages.d.mts +1 -1
- package/dist/pages.d.ts +1 -1
- package/dist/pages.js +1255 -798
- package/dist/pages.js.map +1 -1
- package/dist/pages.mjs +1255 -798
- package/dist/pages.mjs.map +1 -1
- package/dist/theme/index.d.mts +16 -82
- package/dist/theme/index.d.ts +16 -82
- package/dist/theme/index.js +13 -115
- package/dist/theme/index.js.map +1 -1
- package/dist/theme/index.mjs +13 -115
- package/dist/theme/index.mjs.map +1 -1
- package/dist/theme/tokens-css.js +14 -6
- package/dist/theme/tokens-css.js.map +1 -1
- package/dist/theme/tokens-css.mjs +14 -6
- package/dist/theme/tokens-css.mjs.map +1 -1
- package/package.json +1 -1
- package/src/arch/Architecture.stories.tsx +870 -0
- package/src/arch/annotations.json +48 -0
- package/src/arch/arch-graph.json +4301 -0
- package/src/components/custom/DateTime/DateTime.stories.tsx +1 -1
- package/src/components/custom/EmptyState/EmptyState.stories.tsx +1 -1
- package/src/components/custom/Gauge/Gauge.stories.tsx +1 -1
- package/src/components/custom/Metric/Metric.stories.tsx +1 -1
- package/src/components/custom/Scatter/Scatter.stories.tsx +1 -1
- package/src/components/custom/Sidebar/Sidebar.stories.tsx +1 -1
- package/src/components/custom/Table/Table.stories.tsx +1 -1
- package/src/components/custom/TimerReadout/TimerReadout.stories.tsx +62 -0
- package/src/components/custom/TimerReadout/TimerReadout.test.tsx +72 -0
- package/src/components/custom/TimerReadout/TimerReadout.tsx +75 -0
- package/src/components/custom/TimerReadout/index.ts +1 -0
- package/src/components/custom/Treemap/Treemap.stories.tsx +1 -1
- package/src/components/custom/Typography/Typography.stories.tsx +1 -1
- package/src/components/custom/Workout/ActiveWorkoutPage.stories.tsx +21 -13
- package/src/components/custom/Workout/ActiveWorkoutPage.test.tsx +16 -13
- package/src/components/custom/Workout/ActiveWorkoutPage.tsx +9 -15
- package/src/components/custom/Workout/BaseBadge.stories.tsx +1 -1
- package/src/components/custom/Workout/BodyMap.stories.tsx +1 -1
- package/src/components/custom/Workout/BodyMapDetailPanel.stories.tsx +1 -1
- package/src/components/custom/Workout/CapacityBandChart.stories.tsx +1 -1
- package/src/components/custom/Workout/DeviationBar.stories.tsx +1 -1
- package/src/components/custom/Workout/ExerciseCard.stories.tsx +51 -66
- package/src/components/custom/Workout/ExerciseCard.test.tsx +146 -143
- package/src/components/custom/Workout/ExerciseCard.tsx +176 -198
- package/src/components/custom/Workout/ExerciseCardHeading.stories.tsx +99 -0
- package/src/components/custom/Workout/ExerciseCardHeading.test.tsx +72 -0
- package/src/components/custom/Workout/ExerciseCardHeading.tsx +43 -0
- package/src/components/custom/Workout/ExerciseCardUnified.stories.tsx +151 -0
- package/src/components/custom/Workout/ExerciseDetailPage.stories.tsx +5 -3
- package/src/components/custom/Workout/ExerciseDetailPage.test.tsx +4 -4
- package/src/components/custom/Workout/ExerciseDetailPage.tsx +4 -5
- package/src/components/custom/Workout/ExerciseHeading.stories.tsx +81 -0
- package/src/components/custom/Workout/ExerciseHeading.test.tsx +77 -0
- package/src/components/custom/Workout/ExerciseHeading.tsx +85 -0
- package/src/components/custom/Workout/ExerciseIndicator.stories.tsx +110 -0
- package/src/components/custom/Workout/ExerciseIndicator.test.tsx +93 -0
- package/src/components/custom/Workout/ExerciseIndicator.tsx +120 -0
- package/src/components/custom/Workout/FatigueMeter.stories.tsx +51 -0
- package/src/components/custom/Workout/FatigueMeter.test.tsx +73 -0
- package/src/components/custom/Workout/FatigueMeter.tsx +82 -0
- package/src/components/custom/Workout/InputBar.stories.tsx +1 -1
- package/src/components/custom/Workout/IntensityBar.stories.tsx +1 -1
- package/src/components/custom/Workout/LiveAuraFrame.stories.tsx +153 -0
- package/src/components/custom/Workout/LiveAuraFrame.test.tsx +74 -0
- package/src/components/custom/Workout/LiveAuraFrame.tsx +105 -0
- package/src/components/custom/Workout/MesoCard.stories.tsx +1 -1
- package/src/components/custom/Workout/MesoProgressBar.stories.tsx +1 -1
- package/src/components/custom/Workout/MesoStatusCard.stories.tsx +1 -1
- package/src/components/custom/Workout/MetricTiles.stories.tsx +60 -0
- package/src/components/custom/Workout/MetricTiles.test.tsx +58 -0
- package/src/components/custom/Workout/MetricTiles.tsx +48 -0
- package/src/components/custom/Workout/MuscleGroupChip.stories.tsx +1 -1
- package/src/components/custom/Workout/PlaceholderStrip.stories.tsx +1 -1
- package/src/components/custom/Workout/PrBadge.stories.tsx +1 -1
- package/src/components/custom/Workout/PrHistoryModal.stories.tsx +1 -1
- package/src/components/custom/Workout/ProgramPlanningPage.stories.tsx +4 -16
- package/src/components/custom/Workout/ProgramPlanningPage.tsx +8 -6
- package/src/components/custom/Workout/README.md +146 -4
- package/src/components/custom/Workout/ReadinessCheck.stories.tsx +1 -1
- package/src/components/custom/Workout/RestTimer.stories.tsx +1 -1
- package/src/components/custom/Workout/RestTimer.tsx +15 -10
- package/src/components/custom/Workout/RowInventory.stories.tsx +405 -0
- package/src/components/custom/Workout/S3FullRail.stories.tsx +34 -0
- package/src/components/custom/Workout/S3SessionPace.stories.tsx +95 -0
- package/src/components/custom/Workout/S3SessionRailHeading.stories.tsx +61 -0
- package/src/components/custom/Workout/S3SetTypes.stories.tsx +176 -0
- package/src/components/custom/Workout/S3WorkoutExpansion.stories.tsx +240 -0
- package/src/components/custom/Workout/ScheduleTiles.stories.tsx +40 -0
- package/src/components/custom/Workout/ScheduleTiles.test.tsx +34 -0
- package/src/components/custom/Workout/ScheduleTiles.tsx +70 -0
- package/src/components/custom/Workout/SegmentedBar.stories.tsx +99 -0
- package/src/components/custom/Workout/SegmentedBar.test.tsx +77 -0
- package/src/components/custom/Workout/SegmentedBar.tsx +172 -0
- package/src/components/custom/Workout/SegmentedProgressBar.stories.tsx +50 -0
- package/src/components/custom/Workout/SegmentedProgressBar.test.tsx +80 -0
- package/src/components/custom/Workout/SegmentedProgressBar.tsx +67 -0
- package/src/components/custom/Workout/SessionHeader.stories.tsx +121 -0
- package/src/components/custom/Workout/SessionHeader.test.tsx +122 -0
- package/src/components/custom/Workout/SessionHeader.tsx +152 -0
- package/src/components/custom/Workout/SessionRail.stories.tsx +153 -0
- package/src/components/custom/Workout/SessionRail.test.tsx +86 -0
- package/src/components/custom/Workout/SessionRail.tsx +126 -0
- package/src/components/custom/Workout/SetBar.stories.tsx +124 -0
- package/src/components/custom/Workout/SetBar.test.tsx +123 -0
- package/src/components/custom/Workout/SetBar.tsx +171 -0
- package/src/components/custom/Workout/SetRow.stories.tsx +50 -100
- package/src/components/custom/Workout/SetRow.test.tsx +94 -166
- package/src/components/custom/Workout/SetRow.tsx +169 -232
- package/src/components/custom/Workout/SetStrip.stories.tsx +154 -0
- package/src/components/custom/Workout/SetStrip.test.tsx +109 -0
- package/src/components/custom/Workout/SetStrip.tsx +71 -0
- package/src/components/custom/Workout/SetTableHeader.stories.tsx +66 -0
- package/src/components/custom/Workout/SetTableHeader.test.tsx +47 -0
- package/src/components/custom/Workout/SetTableHeader.tsx +88 -0
- package/src/components/custom/Workout/SetsRepsLoad.stories.tsx +47 -0
- package/src/components/custom/Workout/SetsRepsLoad.test.tsx +44 -0
- package/src/components/custom/Workout/SetsRepsLoad.tsx +52 -0
- package/src/components/custom/Workout/Sparkline.stories.tsx +1 -1
- package/src/components/custom/Workout/StatusDot.stories.tsx +1 -1
- package/src/components/custom/Workout/StatusPill.stories.tsx +59 -0
- package/src/components/custom/Workout/StatusPill.test.tsx +63 -0
- package/src/components/custom/Workout/StatusPill.tsx +88 -0
- package/src/components/custom/Workout/StrengthTrendChart.stories.tsx +1 -1
- package/src/components/custom/Workout/SupersetWrapper.stories.tsx +1 -1
- package/src/components/custom/Workout/TempoBar.stories.tsx +1 -1
- package/src/components/custom/Workout/TempoDisplay.stories.tsx +12 -1
- package/src/components/custom/Workout/TempoDisplay.tsx +23 -33
- package/src/components/custom/Workout/TrainingStatusPage.stories.tsx +1 -1
- package/src/components/custom/Workout/VelocityStrip.modalities.stories.tsx +254 -0
- package/src/components/custom/Workout/VelocityStrip.responsive.stories.tsx +145 -0
- package/src/components/custom/Workout/VelocityStrip.stories.tsx +129 -66
- package/src/components/custom/Workout/VelocityStrip.test.tsx +376 -141
- package/src/components/custom/Workout/VelocityStrip.tsx +508 -120
- package/src/components/custom/Workout/VolumeLandmarkBar.stories.tsx +73 -0
- package/src/components/custom/Workout/VolumeLandmarkBar.test.tsx +119 -0
- package/src/components/custom/Workout/VolumeLandmarkBar.tsx +154 -0
- package/src/components/custom/Workout/WeekRow.stories.tsx +1 -1
- package/src/components/custom/Workout/WeightBadge.stories.tsx +1 -1
- package/src/components/custom/Workout/WorkoutCard.stories.tsx +2 -6
- package/src/components/custom/Workout/WorkoutCard.test.tsx +13 -46
- package/src/components/custom/Workout/WorkoutPill.stories.tsx +1 -1
- package/src/components/custom/Workout/ZoneTrack.stories.tsx +140 -0
- package/src/components/custom/Workout/ZoneTrack.test.tsx +200 -0
- package/src/components/custom/Workout/ZoneTrack.tsx +315 -0
- package/src/components/custom/Workout/index.ts +55 -2
- package/src/components/custom/Workout/metricText.stories.tsx +69 -0
- package/src/components/custom/Workout/metricText.tsx +34 -0
- package/src/components/custom/Workout/paceTone.test.ts +29 -0
- package/src/components/custom/Workout/paceTone.ts +27 -0
- package/src/components/custom/Workout/setHeadingKit.tsx +177 -0
- package/src/components/custom/index.ts +1 -0
- package/src/components/custom/stepper/Stepper.stories.tsx +1 -1
- package/src/components/icons/icons.stories.tsx +67 -2
- package/src/components/icons/icons.test.tsx +32 -2
- package/src/components/icons/icons.tsx +108 -0
- package/src/components/shell/BrandLockup.stories.tsx +3 -3
- package/src/components/shell/DashboardShell.stories.tsx +65 -0
- package/src/components/shell/DashboardShell.test.tsx +42 -0
- package/src/components/shell/DashboardShell.tsx +74 -0
- package/src/components/shell/DeviceIndicator.stories.tsx +2 -2
- package/src/components/shell/DeviceMenu.stories.tsx +5 -5
- package/src/components/shell/DeviceRow.stories.tsx +3 -3
- package/src/components/shell/NavItem.stories.tsx +52 -0
- package/src/components/shell/NavItem.test.tsx +35 -0
- package/src/components/shell/NavItem.tsx +75 -0
- package/src/components/shell/README.md +30 -0
- package/src/components/shell/SessionRailSpecimen.stories.tsx +753 -0
- package/src/components/shell/SessionStatePill.stories.tsx +3 -3
- package/src/components/shell/SessionStatePill.tsx +1 -1
- package/src/components/shell/SideNav.stories.tsx +81 -0
- package/src/components/shell/SideNav.test.tsx +51 -0
- package/src/components/shell/SideNav.tsx +74 -0
- package/src/components/shell/TopBar.stories.tsx +5 -5
- package/src/components/shell/index.ts +5 -0
- package/src/components/ui/alert/Alert.stories.tsx +1 -1
- package/src/components/ui/autocomplete/Autocomplete.stories.tsx +1 -1
- package/src/components/ui/avatar/Avatar.stories.tsx +1 -1
- package/src/components/ui/badge/Badge.stories.tsx +1 -1
- package/src/components/ui/breadcrumbs/Breadcrumbs.stories.tsx +1 -1
- package/src/components/ui/button/Button.stories.tsx +1 -1
- package/src/components/ui/card/Card.stories.tsx +1 -1
- package/src/components/ui/checkbox/Checkbox.stories.tsx +1 -1
- package/src/components/ui/chip/Chip.stories.tsx +1 -1
- package/src/components/ui/collapse/Collapse.stories.tsx +1 -1
- package/src/components/ui/data-row/DataRow.stories.tsx +1 -1
- package/src/components/ui/divider/Divider.stories.tsx +1 -1
- package/src/components/ui/drawer/Drawer.stories.tsx +1 -1
- package/src/components/ui/form-field/FormField.stories.tsx +1 -1
- package/src/components/ui/help-tip/HelpTip.stories.tsx +1 -1
- package/src/components/ui/icon-box/IconBox.stories.tsx +1 -1
- package/src/components/ui/index.ts +1 -0
- package/src/components/ui/indicator/Indicator.stories.tsx +2 -2
- package/src/components/ui/indicator/Indicator.test.tsx +1 -0
- package/src/components/ui/indicator/Indicator.tsx +6 -1
- package/src/components/ui/input/Input.stories.tsx +1 -1
- package/src/components/ui/link/Link.stories.tsx +1 -1
- package/src/components/ui/list-item/ListItem.stories.tsx +1 -1
- package/src/components/ui/menu/Menu.stories.tsx +1 -1
- package/src/components/ui/modal/Modal.stories.tsx +1 -1
- package/src/components/ui/pill/Pill.stories.tsx +1 -1
- package/src/components/ui/popover/Popover.stories.tsx +1 -1
- package/src/components/ui/progress/Progress.stories.tsx +1 -1
- package/src/components/ui/radio/Radio.stories.tsx +1 -1
- package/src/components/ui/section/Section.stories.tsx +1 -1
- package/src/components/ui/select/Select.stories.tsx +1 -1
- package/src/components/ui/skeleton/Skeleton.stories.tsx +1 -1
- package/src/components/ui/spinner/Spinner.stories.tsx +1 -1
- package/src/components/ui/stack/Stack.stories.tsx +1 -1
- package/src/components/ui/surface/Surface.stories.tsx +1 -1
- package/src/components/ui/switch/Switch.stories.tsx +1 -1
- package/src/components/ui/tabs/Tabs.stories.tsx +1 -1
- package/src/components/ui/tile/Tile.stories.tsx +79 -0
- package/src/components/ui/tile/Tile.test.tsx +48 -0
- package/src/components/ui/tile/Tile.tsx +64 -0
- package/src/components/ui/tile/index.ts +2 -0
- package/src/components/ui/toast/Toast.stories.tsx +1 -1
- package/src/components/ui/toolbar-button/ToolbarButton.stories.tsx +1 -1
- package/src/components/ui/tooltip/Tooltip.stories.tsx +1 -1
- package/src/examples/react-hook-form/ReactHookForm.stories.tsx +1 -1
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useTimer.test.ts +150 -0
- package/src/hooks/useTimer.ts +77 -0
- package/src/index.ts +3 -0
- package/src/pages.ts +1 -1
- package/src/stories/PresetShowcase.stories.tsx +1 -1
- package/src/stories/ThemePresets.stories.tsx +1 -1
- package/src/theme/ColorSystem.stories.tsx +1 -1
- package/src/theme/Colors.stories.tsx +5 -8
- package/src/theme/config.ts +4 -0
- package/src/theme/elevation.stories.tsx +1 -1
- package/src/theme/global.css +5 -1
- package/src/theme/shadows.stories.tsx +1 -1
- package/src/theme/tokens/primitives.ts +11 -107
- package/src/theme/tokens/semantic.ts +8 -0
- package/src/theme/workout-tokens.ts +11 -7
- package/tailwind.config.js +5 -0
package/dist/theme/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { jsx as jsx$1 } from 'react/jsx-runtime';
|
|
|
4
4
|
|
|
5
5
|
// src/theme/tokens/primitives.ts
|
|
6
6
|
var primitiveColors = {
|
|
7
|
-
// Blue scale
|
|
7
|
+
// Blue scale
|
|
8
8
|
blue: {
|
|
9
9
|
50: "#EFF6FF",
|
|
10
10
|
100: "#DBEAFE",
|
|
@@ -13,124 +13,36 @@ var primitiveColors = {
|
|
|
13
13
|
400: "#60A5FA",
|
|
14
14
|
500: "#3B82F6",
|
|
15
15
|
600: "#5048E5",
|
|
16
|
-
// Primary main
|
|
17
16
|
700: "#3832A0",
|
|
18
|
-
// Primary dark
|
|
19
17
|
800: "#1E40AF",
|
|
20
18
|
900: "#1E3A8A"
|
|
21
19
|
},
|
|
22
|
-
//
|
|
23
|
-
green: {
|
|
24
|
-
50: "#ECFDF5",
|
|
25
|
-
100: "#D1FAE5",
|
|
26
|
-
200: "#A7F3D0",
|
|
27
|
-
300: "#6EE7B7",
|
|
28
|
-
400: "#3FC79A",
|
|
29
|
-
// Secondary light
|
|
30
|
-
500: "#10B981",
|
|
31
|
-
// Secondary main
|
|
32
|
-
600: "#059669",
|
|
33
|
-
700: "#0B815A",
|
|
34
|
-
// Secondary dark
|
|
35
|
-
800: "#065F46",
|
|
36
|
-
900: "#064E3B"
|
|
37
|
-
},
|
|
38
|
-
// Teal scale (success)
|
|
39
|
-
teal: {
|
|
40
|
-
50: "#F0FDFA",
|
|
41
|
-
100: "#CCFBF1",
|
|
42
|
-
200: "#99F6E4",
|
|
43
|
-
300: "#5EEAD4",
|
|
44
|
-
400: "#43C6B7",
|
|
45
|
-
// Success light
|
|
46
|
-
500: "#14B8A6",
|
|
47
|
-
// Success main
|
|
48
|
-
600: "#0D9488",
|
|
49
|
-
700: "#0E8074",
|
|
50
|
-
// Success dark
|
|
51
|
-
800: "#115E59",
|
|
52
|
-
900: "#134E4A"
|
|
53
|
-
},
|
|
54
|
-
// Red scale (error)
|
|
20
|
+
// Red scale
|
|
55
21
|
red: {
|
|
56
22
|
50: "#FEF2F2",
|
|
57
23
|
100: "#FEE2E2",
|
|
58
24
|
200: "#FECACA",
|
|
59
25
|
300: "#FCA5A5",
|
|
60
26
|
400: "#DA6868",
|
|
61
|
-
// Error light
|
|
62
27
|
500: "#EF4444",
|
|
63
28
|
600: "#D14343",
|
|
64
|
-
// Error main
|
|
65
29
|
700: "#922E2E",
|
|
66
|
-
// Error dark
|
|
67
30
|
800: "#991B1B",
|
|
68
31
|
900: "#7F1D1D"
|
|
69
32
|
},
|
|
70
|
-
// Vivid
|
|
71
|
-
greenVivid: {
|
|
72
|
-
50: "#E9FBF0",
|
|
73
|
-
100: "#C8F7DA",
|
|
74
|
-
200: "#9FF0BF",
|
|
75
|
-
300: "#6BE79D",
|
|
76
|
-
400: "#47DE84",
|
|
77
|
-
// Success vivid light
|
|
78
|
-
500: "#2ED573",
|
|
79
|
-
// Success vivid main
|
|
80
|
-
600: "#22B85F",
|
|
81
|
-
700: "#1A9950",
|
|
82
|
-
// Success vivid dark
|
|
83
|
-
800: "#157A40",
|
|
84
|
-
900: "#105C30"
|
|
85
|
-
},
|
|
86
|
-
// Vivid red scale (alert)
|
|
33
|
+
// Vivid red scale
|
|
87
34
|
redVivid: {
|
|
88
35
|
50: "#FFECEE",
|
|
89
36
|
100: "#FFD6DB",
|
|
90
37
|
200: "#FFB3BC",
|
|
91
38
|
300: "#FF8593",
|
|
92
39
|
400: "#FF6070",
|
|
93
|
-
// Error vivid light
|
|
94
40
|
500: "#FF4757",
|
|
95
|
-
// Error vivid main
|
|
96
41
|
600: "#E63548",
|
|
97
42
|
700: "#C42539",
|
|
98
|
-
// Error vivid dark
|
|
99
43
|
800: "#9E1C2C",
|
|
100
44
|
900: "#7A1520"
|
|
101
45
|
},
|
|
102
|
-
// Amber scale (warning)
|
|
103
|
-
amber: {
|
|
104
|
-
50: "#FFFBEB",
|
|
105
|
-
100: "#FEF3C7",
|
|
106
|
-
200: "#FDE68A",
|
|
107
|
-
300: "#FCD34D",
|
|
108
|
-
400: "#FFBF4C",
|
|
109
|
-
// Warning light
|
|
110
|
-
500: "#FFB020",
|
|
111
|
-
// Warning main
|
|
112
|
-
600: "#B27B16",
|
|
113
|
-
// Warning dark
|
|
114
|
-
700: "#B45309",
|
|
115
|
-
800: "#92400E",
|
|
116
|
-
900: "#78350F"
|
|
117
|
-
},
|
|
118
|
-
// Sky/Blue scale (info)
|
|
119
|
-
sky: {
|
|
120
|
-
50: "#F0F9FF",
|
|
121
|
-
100: "#E0F2FE",
|
|
122
|
-
200: "#BAE6FD",
|
|
123
|
-
300: "#7DD3FC",
|
|
124
|
-
400: "#64B6F7",
|
|
125
|
-
// Info light
|
|
126
|
-
500: "#2196F3",
|
|
127
|
-
// Info main
|
|
128
|
-
600: "#0284C7",
|
|
129
|
-
700: "#0B79D0",
|
|
130
|
-
// Info dark
|
|
131
|
-
800: "#075985",
|
|
132
|
-
900: "#0C4A6E"
|
|
133
|
-
},
|
|
134
46
|
// Neutral/Gray scale
|
|
135
47
|
neutral: {
|
|
136
48
|
50: "#FAFAFA",
|
|
@@ -145,18 +57,6 @@ var primitiveColors = {
|
|
|
145
57
|
900: "#111827",
|
|
146
58
|
950: "#030712"
|
|
147
59
|
},
|
|
148
|
-
// Orange scale (accent/brand color)
|
|
149
|
-
accent: {
|
|
150
|
-
100: "#FFA860",
|
|
151
|
-
200: "#FF9630",
|
|
152
|
-
300: "#FF8500",
|
|
153
|
-
400: "#FF7900",
|
|
154
|
-
500: "#F56C00",
|
|
155
|
-
600: "#E06D10",
|
|
156
|
-
700: "#D0620C",
|
|
157
|
-
800: "#B75500",
|
|
158
|
-
900: "#A34900"
|
|
159
|
-
},
|
|
160
60
|
// Charcoal scale (dark backgrounds)
|
|
161
61
|
charcoal: {
|
|
162
62
|
0: "#6E6E6E",
|
|
@@ -171,18 +71,6 @@ var primitiveColors = {
|
|
|
171
71
|
800: "#131313",
|
|
172
72
|
900: "#101010"
|
|
173
73
|
},
|
|
174
|
-
// Steel scale (cool accent)
|
|
175
|
-
steel: {
|
|
176
|
-
100: "#8AA4B8",
|
|
177
|
-
200: "#7894A8",
|
|
178
|
-
300: "#678498",
|
|
179
|
-
400: "#557488",
|
|
180
|
-
500: "#406D87",
|
|
181
|
-
600: "#39617A",
|
|
182
|
-
700: "#32556D",
|
|
183
|
-
800: "#243D53",
|
|
184
|
-
900: "#1D3146"
|
|
185
|
-
},
|
|
186
74
|
// Pure colors
|
|
187
75
|
white: "#FFFFFF",
|
|
188
76
|
black: "#000000",
|
|
@@ -573,6 +461,9 @@ var semanticColorsLight = {
|
|
|
573
461
|
"status-success-light": primitiveRamps.green[200],
|
|
574
462
|
"status-success-dark": primitiveRamps.green[600],
|
|
575
463
|
"status-success-subtle": primitiveRamps.green[50],
|
|
464
|
+
// Live-session accent — its OWN role, decoupled from success so the two can diverge
|
|
465
|
+
"status-live": primitiveRamps.green[300],
|
|
466
|
+
"status-live-muted": primitiveRamps.green[500],
|
|
576
467
|
"status-error": primitiveRamps.red[600],
|
|
577
468
|
"status-error-light": primitiveRamps.red[500],
|
|
578
469
|
"status-error-dark": primitiveRamps.red[700],
|
|
@@ -706,6 +597,9 @@ var semanticColorsDark = {
|
|
|
706
597
|
"status-success-light": primitiveRamps.green[200],
|
|
707
598
|
"status-success-dark": primitiveRamps.green[600],
|
|
708
599
|
"status-success-subtle": "rgba(46, 213, 115, 0.12)",
|
|
600
|
+
// Live-session accent — its OWN role, decoupled from success so the two can diverge
|
|
601
|
+
"status-live": primitiveRamps.green[300],
|
|
602
|
+
"status-live-muted": primitiveRamps.green[500],
|
|
709
603
|
"status-error": primitiveRamps.red[600],
|
|
710
604
|
"status-error-light": primitiveRamps.red[500],
|
|
711
605
|
"status-error-dark": primitiveRamps.red[700],
|
|
@@ -948,6 +842,8 @@ var lightThemeCSSVars = {
|
|
|
948
842
|
"--color-on-brand-secondary": semanticColorsLight["on-brand-secondary"],
|
|
949
843
|
"--color-status-success": semanticColorsLight["status-success"],
|
|
950
844
|
"--color-status-success-subtle": semanticColorsLight["status-success-subtle"],
|
|
845
|
+
"--color-status-live": semanticColorsLight["status-live"],
|
|
846
|
+
"--color-status-live-muted": semanticColorsLight["status-live-muted"],
|
|
951
847
|
"--color-status-error": semanticColorsLight["status-error"],
|
|
952
848
|
"--color-status-error-subtle": semanticColorsLight["status-error-subtle"],
|
|
953
849
|
"--color-status-warning": semanticColorsLight["status-warning"],
|
|
@@ -1044,6 +940,8 @@ var darkThemeCSSVars = {
|
|
|
1044
940
|
"--color-on-brand-secondary": semanticColorsDark["on-brand-secondary"],
|
|
1045
941
|
"--color-status-success": semanticColorsDark["status-success"],
|
|
1046
942
|
"--color-status-success-subtle": semanticColorsDark["status-success-subtle"],
|
|
943
|
+
"--color-status-live": semanticColorsDark["status-live"],
|
|
944
|
+
"--color-status-live-muted": semanticColorsDark["status-live-muted"],
|
|
1047
945
|
"--color-status-error": semanticColorsDark["status-error"],
|
|
1048
946
|
"--color-status-error-subtle": semanticColorsDark["status-error-subtle"],
|
|
1049
947
|
"--color-status-warning": semanticColorsDark["status-warning"],
|