@titan-design/react-ui 0.6.0 → 0.8.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 +956 -128
- package/dist/index.d.ts +956 -128
- package/dist/index.js +2873 -981
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2826 -982
- package/dist/index.mjs.map +1 -1
- package/dist/{pages-MO0JCySL.d.mts → pages-DCFBqp79.d.mts} +289 -57
- package/dist/{pages-D7Jlssvp.d.ts → pages-_fI3-x7Z.d.ts} +289 -57
- package/dist/pages.d.mts +1 -1
- package/dist/pages.d.ts +1 -1
- package/dist/pages.js +1659 -799
- package/dist/pages.js.map +1 -1
- package/dist/pages.mjs +1660 -800
- 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/CircularTimer/CircularTimer.stories.tsx +90 -0
- package/src/components/custom/CircularTimer/CircularTimer.test.tsx +62 -0
- package/src/components/custom/CircularTimer/CircularTimer.tsx +112 -0
- package/src/components/custom/CircularTimer/index.ts +1 -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 +85 -0
- package/src/components/custom/Workout/FatigueMeter.tsx +86 -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 +193 -4
- package/src/components/custom/Workout/ReadinessCheck.stories.tsx +1 -1
- package/src/components/custom/Workout/RestTimer.stories.tsx +133 -3
- package/src/components/custom/Workout/RestTimer.test.tsx +73 -0
- package/src/components/custom/Workout/RestTimer.tsx +155 -59
- 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 +70 -1
- package/src/components/custom/Workout/TempoBar.test.tsx +119 -4
- package/src/components/custom/Workout/TempoBar.tsx +107 -22
- 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 +262 -56
- package/src/components/custom/Workout/VelocityStrip.test.tsx +440 -141
- package/src/components/custom/Workout/VelocityStrip.tsx +776 -141
- 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 +139 -0
- package/src/components/custom/Workout/ZoneTrack.test.tsx +234 -0
- package/src/components/custom/Workout/ZoneTrack.tsx +373 -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 +2 -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 +86 -3
- package/src/components/ui/alert/Alert.test.tsx +52 -0
- package/src/components/ui/alert/Alert.tsx +54 -20
- 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/progress/Progress.tsx +47 -22
- 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.d.mts
CHANGED
|
@@ -142,30 +142,6 @@ declare const primitiveColors: {
|
|
|
142
142
|
readonly 800: "#1E40AF";
|
|
143
143
|
readonly 900: "#1E3A8A";
|
|
144
144
|
};
|
|
145
|
-
readonly green: {
|
|
146
|
-
readonly 50: "#ECFDF5";
|
|
147
|
-
readonly 100: "#D1FAE5";
|
|
148
|
-
readonly 200: "#A7F3D0";
|
|
149
|
-
readonly 300: "#6EE7B7";
|
|
150
|
-
readonly 400: "#3FC79A";
|
|
151
|
-
readonly 500: "#10B981";
|
|
152
|
-
readonly 600: "#059669";
|
|
153
|
-
readonly 700: "#0B815A";
|
|
154
|
-
readonly 800: "#065F46";
|
|
155
|
-
readonly 900: "#064E3B";
|
|
156
|
-
};
|
|
157
|
-
readonly teal: {
|
|
158
|
-
readonly 50: "#F0FDFA";
|
|
159
|
-
readonly 100: "#CCFBF1";
|
|
160
|
-
readonly 200: "#99F6E4";
|
|
161
|
-
readonly 300: "#5EEAD4";
|
|
162
|
-
readonly 400: "#43C6B7";
|
|
163
|
-
readonly 500: "#14B8A6";
|
|
164
|
-
readonly 600: "#0D9488";
|
|
165
|
-
readonly 700: "#0E8074";
|
|
166
|
-
readonly 800: "#115E59";
|
|
167
|
-
readonly 900: "#134E4A";
|
|
168
|
-
};
|
|
169
145
|
readonly red: {
|
|
170
146
|
readonly 50: "#FEF2F2";
|
|
171
147
|
readonly 100: "#FEE2E2";
|
|
@@ -178,18 +154,6 @@ declare const primitiveColors: {
|
|
|
178
154
|
readonly 800: "#991B1B";
|
|
179
155
|
readonly 900: "#7F1D1D";
|
|
180
156
|
};
|
|
181
|
-
readonly greenVivid: {
|
|
182
|
-
readonly 50: "#E9FBF0";
|
|
183
|
-
readonly 100: "#C8F7DA";
|
|
184
|
-
readonly 200: "#9FF0BF";
|
|
185
|
-
readonly 300: "#6BE79D";
|
|
186
|
-
readonly 400: "#47DE84";
|
|
187
|
-
readonly 500: "#2ED573";
|
|
188
|
-
readonly 600: "#22B85F";
|
|
189
|
-
readonly 700: "#1A9950";
|
|
190
|
-
readonly 800: "#157A40";
|
|
191
|
-
readonly 900: "#105C30";
|
|
192
|
-
};
|
|
193
157
|
readonly redVivid: {
|
|
194
158
|
readonly 50: "#FFECEE";
|
|
195
159
|
readonly 100: "#FFD6DB";
|
|
@@ -202,30 +166,6 @@ declare const primitiveColors: {
|
|
|
202
166
|
readonly 800: "#9E1C2C";
|
|
203
167
|
readonly 900: "#7A1520";
|
|
204
168
|
};
|
|
205
|
-
readonly amber: {
|
|
206
|
-
readonly 50: "#FFFBEB";
|
|
207
|
-
readonly 100: "#FEF3C7";
|
|
208
|
-
readonly 200: "#FDE68A";
|
|
209
|
-
readonly 300: "#FCD34D";
|
|
210
|
-
readonly 400: "#FFBF4C";
|
|
211
|
-
readonly 500: "#FFB020";
|
|
212
|
-
readonly 600: "#B27B16";
|
|
213
|
-
readonly 700: "#B45309";
|
|
214
|
-
readonly 800: "#92400E";
|
|
215
|
-
readonly 900: "#78350F";
|
|
216
|
-
};
|
|
217
|
-
readonly sky: {
|
|
218
|
-
readonly 50: "#F0F9FF";
|
|
219
|
-
readonly 100: "#E0F2FE";
|
|
220
|
-
readonly 200: "#BAE6FD";
|
|
221
|
-
readonly 300: "#7DD3FC";
|
|
222
|
-
readonly 400: "#64B6F7";
|
|
223
|
-
readonly 500: "#2196F3";
|
|
224
|
-
readonly 600: "#0284C7";
|
|
225
|
-
readonly 700: "#0B79D0";
|
|
226
|
-
readonly 800: "#075985";
|
|
227
|
-
readonly 900: "#0C4A6E";
|
|
228
|
-
};
|
|
229
169
|
readonly neutral: {
|
|
230
170
|
readonly 50: "#FAFAFA";
|
|
231
171
|
readonly 100: "#F3F4F6";
|
|
@@ -239,17 +179,6 @@ declare const primitiveColors: {
|
|
|
239
179
|
readonly 900: "#111827";
|
|
240
180
|
readonly 950: "#030712";
|
|
241
181
|
};
|
|
242
|
-
readonly accent: {
|
|
243
|
-
readonly 100: "#FFA860";
|
|
244
|
-
readonly 200: "#FF9630";
|
|
245
|
-
readonly 300: "#FF8500";
|
|
246
|
-
readonly 400: "#FF7900";
|
|
247
|
-
readonly 500: "#F56C00";
|
|
248
|
-
readonly 600: "#E06D10";
|
|
249
|
-
readonly 700: "#D0620C";
|
|
250
|
-
readonly 800: "#B75500";
|
|
251
|
-
readonly 900: "#A34900";
|
|
252
|
-
};
|
|
253
182
|
readonly charcoal: {
|
|
254
183
|
readonly 0: "#6E6E6E";
|
|
255
184
|
readonly 50: "#5D5D5D";
|
|
@@ -263,17 +192,6 @@ declare const primitiveColors: {
|
|
|
263
192
|
readonly 800: "#131313";
|
|
264
193
|
readonly 900: "#101010";
|
|
265
194
|
};
|
|
266
|
-
readonly steel: {
|
|
267
|
-
readonly 100: "#8AA4B8";
|
|
268
|
-
readonly 200: "#7894A8";
|
|
269
|
-
readonly 300: "#678498";
|
|
270
|
-
readonly 400: "#557488";
|
|
271
|
-
readonly 500: "#406D87";
|
|
272
|
-
readonly 600: "#39617A";
|
|
273
|
-
readonly 700: "#32556D";
|
|
274
|
-
readonly 800: "#243D53";
|
|
275
|
-
readonly 900: "#1D3146";
|
|
276
|
-
};
|
|
277
195
|
readonly white: "#FFFFFF";
|
|
278
196
|
readonly black: "#000000";
|
|
279
197
|
readonly transparent: "transparent";
|
|
@@ -612,6 +530,8 @@ declare const semanticColorsLight: {
|
|
|
612
530
|
readonly 'status-success-light': "#58F69E";
|
|
613
531
|
readonly 'status-success-dark': "#298732";
|
|
614
532
|
readonly 'status-success-subtle': "#E3FFEE";
|
|
533
|
+
readonly 'status-live': "#2ED573";
|
|
534
|
+
readonly 'status-live-muted': "#22A444";
|
|
615
535
|
readonly 'status-error': "#D14343";
|
|
616
536
|
readonly 'status-error-light': "#E05254";
|
|
617
537
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -707,6 +627,8 @@ declare const semanticColorsDark: {
|
|
|
707
627
|
readonly 'status-success-light': "#58F69E";
|
|
708
628
|
readonly 'status-success-dark': "#298732";
|
|
709
629
|
readonly 'status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
630
|
+
readonly 'status-live': "#2ED573";
|
|
631
|
+
readonly 'status-live-muted': "#22A444";
|
|
710
632
|
readonly 'status-error': "#D14343";
|
|
711
633
|
readonly 'status-error-light': "#E05254";
|
|
712
634
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -902,6 +824,8 @@ declare function getSemanticColors(mode: ThemeMode): {
|
|
|
902
824
|
readonly 'status-success-light': "#58F69E";
|
|
903
825
|
readonly 'status-success-dark': "#298732";
|
|
904
826
|
readonly 'status-success-subtle': "#E3FFEE";
|
|
827
|
+
readonly 'status-live': "#2ED573";
|
|
828
|
+
readonly 'status-live-muted': "#22A444";
|
|
905
829
|
readonly 'status-error': "#D14343";
|
|
906
830
|
readonly 'status-error-light': "#E05254";
|
|
907
831
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -996,6 +920,8 @@ declare function getSemanticColors(mode: ThemeMode): {
|
|
|
996
920
|
readonly 'status-success-light': "#58F69E";
|
|
997
921
|
readonly 'status-success-dark': "#298732";
|
|
998
922
|
readonly 'status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
923
|
+
readonly 'status-live': "#2ED573";
|
|
924
|
+
readonly 'status-live-muted': "#22A444";
|
|
999
925
|
readonly 'status-error': "#D14343";
|
|
1000
926
|
readonly 'status-error-light': "#E05254";
|
|
1001
927
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -1111,6 +1037,8 @@ declare const lightThemeCSSVars: {
|
|
|
1111
1037
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1112
1038
|
readonly '--color-status-success': "#2ED573";
|
|
1113
1039
|
readonly '--color-status-success-subtle': "#E3FFEE";
|
|
1040
|
+
readonly '--color-status-live': "#2ED573";
|
|
1041
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1114
1042
|
readonly '--color-status-error': "#D14343";
|
|
1115
1043
|
readonly '--color-status-error-subtle': "#FFF4F4";
|
|
1116
1044
|
readonly '--color-status-warning': "#F9B415";
|
|
@@ -1224,6 +1152,8 @@ declare const darkThemeCSSVars: {
|
|
|
1224
1152
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1225
1153
|
readonly '--color-status-success': "#2ED573";
|
|
1226
1154
|
readonly '--color-status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
1155
|
+
readonly '--color-status-live': "#2ED573";
|
|
1156
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1227
1157
|
readonly '--color-status-error': "#D14343";
|
|
1228
1158
|
readonly '--color-status-error-subtle': "rgba(209, 67, 67, 0.12)";
|
|
1229
1159
|
readonly '--color-status-warning': "#F9B415";
|
|
@@ -1337,6 +1267,8 @@ declare function getThemeCSSVars(mode: ThemeMode): {
|
|
|
1337
1267
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1338
1268
|
readonly '--color-status-success': "#2ED573";
|
|
1339
1269
|
readonly '--color-status-success-subtle': "#E3FFEE";
|
|
1270
|
+
readonly '--color-status-live': "#2ED573";
|
|
1271
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1340
1272
|
readonly '--color-status-error': "#D14343";
|
|
1341
1273
|
readonly '--color-status-error-subtle': "#FFF4F4";
|
|
1342
1274
|
readonly '--color-status-warning': "#F9B415";
|
|
@@ -1449,6 +1381,8 @@ declare function getThemeCSSVars(mode: ThemeMode): {
|
|
|
1449
1381
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1450
1382
|
readonly '--color-status-success': "#2ED573";
|
|
1451
1383
|
readonly '--color-status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
1384
|
+
readonly '--color-status-live': "#2ED573";
|
|
1385
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1452
1386
|
readonly '--color-status-error': "#D14343";
|
|
1453
1387
|
readonly '--color-status-error-subtle': "rgba(209, 67, 67, 0.12)";
|
|
1454
1388
|
readonly '--color-status-warning': "#F9B415";
|
package/dist/theme/index.d.ts
CHANGED
|
@@ -142,30 +142,6 @@ declare const primitiveColors: {
|
|
|
142
142
|
readonly 800: "#1E40AF";
|
|
143
143
|
readonly 900: "#1E3A8A";
|
|
144
144
|
};
|
|
145
|
-
readonly green: {
|
|
146
|
-
readonly 50: "#ECFDF5";
|
|
147
|
-
readonly 100: "#D1FAE5";
|
|
148
|
-
readonly 200: "#A7F3D0";
|
|
149
|
-
readonly 300: "#6EE7B7";
|
|
150
|
-
readonly 400: "#3FC79A";
|
|
151
|
-
readonly 500: "#10B981";
|
|
152
|
-
readonly 600: "#059669";
|
|
153
|
-
readonly 700: "#0B815A";
|
|
154
|
-
readonly 800: "#065F46";
|
|
155
|
-
readonly 900: "#064E3B";
|
|
156
|
-
};
|
|
157
|
-
readonly teal: {
|
|
158
|
-
readonly 50: "#F0FDFA";
|
|
159
|
-
readonly 100: "#CCFBF1";
|
|
160
|
-
readonly 200: "#99F6E4";
|
|
161
|
-
readonly 300: "#5EEAD4";
|
|
162
|
-
readonly 400: "#43C6B7";
|
|
163
|
-
readonly 500: "#14B8A6";
|
|
164
|
-
readonly 600: "#0D9488";
|
|
165
|
-
readonly 700: "#0E8074";
|
|
166
|
-
readonly 800: "#115E59";
|
|
167
|
-
readonly 900: "#134E4A";
|
|
168
|
-
};
|
|
169
145
|
readonly red: {
|
|
170
146
|
readonly 50: "#FEF2F2";
|
|
171
147
|
readonly 100: "#FEE2E2";
|
|
@@ -178,18 +154,6 @@ declare const primitiveColors: {
|
|
|
178
154
|
readonly 800: "#991B1B";
|
|
179
155
|
readonly 900: "#7F1D1D";
|
|
180
156
|
};
|
|
181
|
-
readonly greenVivid: {
|
|
182
|
-
readonly 50: "#E9FBF0";
|
|
183
|
-
readonly 100: "#C8F7DA";
|
|
184
|
-
readonly 200: "#9FF0BF";
|
|
185
|
-
readonly 300: "#6BE79D";
|
|
186
|
-
readonly 400: "#47DE84";
|
|
187
|
-
readonly 500: "#2ED573";
|
|
188
|
-
readonly 600: "#22B85F";
|
|
189
|
-
readonly 700: "#1A9950";
|
|
190
|
-
readonly 800: "#157A40";
|
|
191
|
-
readonly 900: "#105C30";
|
|
192
|
-
};
|
|
193
157
|
readonly redVivid: {
|
|
194
158
|
readonly 50: "#FFECEE";
|
|
195
159
|
readonly 100: "#FFD6DB";
|
|
@@ -202,30 +166,6 @@ declare const primitiveColors: {
|
|
|
202
166
|
readonly 800: "#9E1C2C";
|
|
203
167
|
readonly 900: "#7A1520";
|
|
204
168
|
};
|
|
205
|
-
readonly amber: {
|
|
206
|
-
readonly 50: "#FFFBEB";
|
|
207
|
-
readonly 100: "#FEF3C7";
|
|
208
|
-
readonly 200: "#FDE68A";
|
|
209
|
-
readonly 300: "#FCD34D";
|
|
210
|
-
readonly 400: "#FFBF4C";
|
|
211
|
-
readonly 500: "#FFB020";
|
|
212
|
-
readonly 600: "#B27B16";
|
|
213
|
-
readonly 700: "#B45309";
|
|
214
|
-
readonly 800: "#92400E";
|
|
215
|
-
readonly 900: "#78350F";
|
|
216
|
-
};
|
|
217
|
-
readonly sky: {
|
|
218
|
-
readonly 50: "#F0F9FF";
|
|
219
|
-
readonly 100: "#E0F2FE";
|
|
220
|
-
readonly 200: "#BAE6FD";
|
|
221
|
-
readonly 300: "#7DD3FC";
|
|
222
|
-
readonly 400: "#64B6F7";
|
|
223
|
-
readonly 500: "#2196F3";
|
|
224
|
-
readonly 600: "#0284C7";
|
|
225
|
-
readonly 700: "#0B79D0";
|
|
226
|
-
readonly 800: "#075985";
|
|
227
|
-
readonly 900: "#0C4A6E";
|
|
228
|
-
};
|
|
229
169
|
readonly neutral: {
|
|
230
170
|
readonly 50: "#FAFAFA";
|
|
231
171
|
readonly 100: "#F3F4F6";
|
|
@@ -239,17 +179,6 @@ declare const primitiveColors: {
|
|
|
239
179
|
readonly 900: "#111827";
|
|
240
180
|
readonly 950: "#030712";
|
|
241
181
|
};
|
|
242
|
-
readonly accent: {
|
|
243
|
-
readonly 100: "#FFA860";
|
|
244
|
-
readonly 200: "#FF9630";
|
|
245
|
-
readonly 300: "#FF8500";
|
|
246
|
-
readonly 400: "#FF7900";
|
|
247
|
-
readonly 500: "#F56C00";
|
|
248
|
-
readonly 600: "#E06D10";
|
|
249
|
-
readonly 700: "#D0620C";
|
|
250
|
-
readonly 800: "#B75500";
|
|
251
|
-
readonly 900: "#A34900";
|
|
252
|
-
};
|
|
253
182
|
readonly charcoal: {
|
|
254
183
|
readonly 0: "#6E6E6E";
|
|
255
184
|
readonly 50: "#5D5D5D";
|
|
@@ -263,17 +192,6 @@ declare const primitiveColors: {
|
|
|
263
192
|
readonly 800: "#131313";
|
|
264
193
|
readonly 900: "#101010";
|
|
265
194
|
};
|
|
266
|
-
readonly steel: {
|
|
267
|
-
readonly 100: "#8AA4B8";
|
|
268
|
-
readonly 200: "#7894A8";
|
|
269
|
-
readonly 300: "#678498";
|
|
270
|
-
readonly 400: "#557488";
|
|
271
|
-
readonly 500: "#406D87";
|
|
272
|
-
readonly 600: "#39617A";
|
|
273
|
-
readonly 700: "#32556D";
|
|
274
|
-
readonly 800: "#243D53";
|
|
275
|
-
readonly 900: "#1D3146";
|
|
276
|
-
};
|
|
277
195
|
readonly white: "#FFFFFF";
|
|
278
196
|
readonly black: "#000000";
|
|
279
197
|
readonly transparent: "transparent";
|
|
@@ -612,6 +530,8 @@ declare const semanticColorsLight: {
|
|
|
612
530
|
readonly 'status-success-light': "#58F69E";
|
|
613
531
|
readonly 'status-success-dark': "#298732";
|
|
614
532
|
readonly 'status-success-subtle': "#E3FFEE";
|
|
533
|
+
readonly 'status-live': "#2ED573";
|
|
534
|
+
readonly 'status-live-muted': "#22A444";
|
|
615
535
|
readonly 'status-error': "#D14343";
|
|
616
536
|
readonly 'status-error-light': "#E05254";
|
|
617
537
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -707,6 +627,8 @@ declare const semanticColorsDark: {
|
|
|
707
627
|
readonly 'status-success-light': "#58F69E";
|
|
708
628
|
readonly 'status-success-dark': "#298732";
|
|
709
629
|
readonly 'status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
630
|
+
readonly 'status-live': "#2ED573";
|
|
631
|
+
readonly 'status-live-muted': "#22A444";
|
|
710
632
|
readonly 'status-error': "#D14343";
|
|
711
633
|
readonly 'status-error-light': "#E05254";
|
|
712
634
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -902,6 +824,8 @@ declare function getSemanticColors(mode: ThemeMode): {
|
|
|
902
824
|
readonly 'status-success-light': "#58F69E";
|
|
903
825
|
readonly 'status-success-dark': "#298732";
|
|
904
826
|
readonly 'status-success-subtle': "#E3FFEE";
|
|
827
|
+
readonly 'status-live': "#2ED573";
|
|
828
|
+
readonly 'status-live-muted': "#22A444";
|
|
905
829
|
readonly 'status-error': "#D14343";
|
|
906
830
|
readonly 'status-error-light': "#E05254";
|
|
907
831
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -996,6 +920,8 @@ declare function getSemanticColors(mode: ThemeMode): {
|
|
|
996
920
|
readonly 'status-success-light': "#58F69E";
|
|
997
921
|
readonly 'status-success-dark': "#298732";
|
|
998
922
|
readonly 'status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
923
|
+
readonly 'status-live': "#2ED573";
|
|
924
|
+
readonly 'status-live-muted': "#22A444";
|
|
999
925
|
readonly 'status-error': "#D14343";
|
|
1000
926
|
readonly 'status-error-light': "#E05254";
|
|
1001
927
|
readonly 'status-error-dark': "#A4221C";
|
|
@@ -1111,6 +1037,8 @@ declare const lightThemeCSSVars: {
|
|
|
1111
1037
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1112
1038
|
readonly '--color-status-success': "#2ED573";
|
|
1113
1039
|
readonly '--color-status-success-subtle': "#E3FFEE";
|
|
1040
|
+
readonly '--color-status-live': "#2ED573";
|
|
1041
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1114
1042
|
readonly '--color-status-error': "#D14343";
|
|
1115
1043
|
readonly '--color-status-error-subtle': "#FFF4F4";
|
|
1116
1044
|
readonly '--color-status-warning': "#F9B415";
|
|
@@ -1224,6 +1152,8 @@ declare const darkThemeCSSVars: {
|
|
|
1224
1152
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1225
1153
|
readonly '--color-status-success': "#2ED573";
|
|
1226
1154
|
readonly '--color-status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
1155
|
+
readonly '--color-status-live': "#2ED573";
|
|
1156
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1227
1157
|
readonly '--color-status-error': "#D14343";
|
|
1228
1158
|
readonly '--color-status-error-subtle': "rgba(209, 67, 67, 0.12)";
|
|
1229
1159
|
readonly '--color-status-warning': "#F9B415";
|
|
@@ -1337,6 +1267,8 @@ declare function getThemeCSSVars(mode: ThemeMode): {
|
|
|
1337
1267
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1338
1268
|
readonly '--color-status-success': "#2ED573";
|
|
1339
1269
|
readonly '--color-status-success-subtle': "#E3FFEE";
|
|
1270
|
+
readonly '--color-status-live': "#2ED573";
|
|
1271
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1340
1272
|
readonly '--color-status-error': "#D14343";
|
|
1341
1273
|
readonly '--color-status-error-subtle': "#FFF4F4";
|
|
1342
1274
|
readonly '--color-status-warning': "#F9B415";
|
|
@@ -1449,6 +1381,8 @@ declare function getThemeCSSVars(mode: ThemeMode): {
|
|
|
1449
1381
|
readonly '--color-on-brand-secondary': "#FFFFFF";
|
|
1450
1382
|
readonly '--color-status-success': "#2ED573";
|
|
1451
1383
|
readonly '--color-status-success-subtle': "rgba(46, 213, 115, 0.12)";
|
|
1384
|
+
readonly '--color-status-live': "#2ED573";
|
|
1385
|
+
readonly '--color-status-live-muted': "#22A444";
|
|
1452
1386
|
readonly '--color-status-error': "#D14343";
|
|
1453
1387
|
readonly '--color-status-error-subtle': "rgba(209, 67, 67, 0.12)";
|
|
1454
1388
|
readonly '--color-status-warning': "#F9B415";
|
package/dist/theme/index.js
CHANGED
|
@@ -6,7 +6,7 @@ var jsxRuntime = require('react/jsx-runtime');
|
|
|
6
6
|
|
|
7
7
|
// src/theme/tokens/primitives.ts
|
|
8
8
|
var primitiveColors = {
|
|
9
|
-
// Blue scale
|
|
9
|
+
// Blue scale
|
|
10
10
|
blue: {
|
|
11
11
|
50: "#EFF6FF",
|
|
12
12
|
100: "#DBEAFE",
|
|
@@ -15,124 +15,36 @@ var primitiveColors = {
|
|
|
15
15
|
400: "#60A5FA",
|
|
16
16
|
500: "#3B82F6",
|
|
17
17
|
600: "#5048E5",
|
|
18
|
-
// Primary main
|
|
19
18
|
700: "#3832A0",
|
|
20
|
-
// Primary dark
|
|
21
19
|
800: "#1E40AF",
|
|
22
20
|
900: "#1E3A8A"
|
|
23
21
|
},
|
|
24
|
-
//
|
|
25
|
-
green: {
|
|
26
|
-
50: "#ECFDF5",
|
|
27
|
-
100: "#D1FAE5",
|
|
28
|
-
200: "#A7F3D0",
|
|
29
|
-
300: "#6EE7B7",
|
|
30
|
-
400: "#3FC79A",
|
|
31
|
-
// Secondary light
|
|
32
|
-
500: "#10B981",
|
|
33
|
-
// Secondary main
|
|
34
|
-
600: "#059669",
|
|
35
|
-
700: "#0B815A",
|
|
36
|
-
// Secondary dark
|
|
37
|
-
800: "#065F46",
|
|
38
|
-
900: "#064E3B"
|
|
39
|
-
},
|
|
40
|
-
// Teal scale (success)
|
|
41
|
-
teal: {
|
|
42
|
-
50: "#F0FDFA",
|
|
43
|
-
100: "#CCFBF1",
|
|
44
|
-
200: "#99F6E4",
|
|
45
|
-
300: "#5EEAD4",
|
|
46
|
-
400: "#43C6B7",
|
|
47
|
-
// Success light
|
|
48
|
-
500: "#14B8A6",
|
|
49
|
-
// Success main
|
|
50
|
-
600: "#0D9488",
|
|
51
|
-
700: "#0E8074",
|
|
52
|
-
// Success dark
|
|
53
|
-
800: "#115E59",
|
|
54
|
-
900: "#134E4A"
|
|
55
|
-
},
|
|
56
|
-
// Red scale (error)
|
|
22
|
+
// Red scale
|
|
57
23
|
red: {
|
|
58
24
|
50: "#FEF2F2",
|
|
59
25
|
100: "#FEE2E2",
|
|
60
26
|
200: "#FECACA",
|
|
61
27
|
300: "#FCA5A5",
|
|
62
28
|
400: "#DA6868",
|
|
63
|
-
// Error light
|
|
64
29
|
500: "#EF4444",
|
|
65
30
|
600: "#D14343",
|
|
66
|
-
// Error main
|
|
67
31
|
700: "#922E2E",
|
|
68
|
-
// Error dark
|
|
69
32
|
800: "#991B1B",
|
|
70
33
|
900: "#7F1D1D"
|
|
71
34
|
},
|
|
72
|
-
// Vivid
|
|
73
|
-
greenVivid: {
|
|
74
|
-
50: "#E9FBF0",
|
|
75
|
-
100: "#C8F7DA",
|
|
76
|
-
200: "#9FF0BF",
|
|
77
|
-
300: "#6BE79D",
|
|
78
|
-
400: "#47DE84",
|
|
79
|
-
// Success vivid light
|
|
80
|
-
500: "#2ED573",
|
|
81
|
-
// Success vivid main
|
|
82
|
-
600: "#22B85F",
|
|
83
|
-
700: "#1A9950",
|
|
84
|
-
// Success vivid dark
|
|
85
|
-
800: "#157A40",
|
|
86
|
-
900: "#105C30"
|
|
87
|
-
},
|
|
88
|
-
// Vivid red scale (alert)
|
|
35
|
+
// Vivid red scale
|
|
89
36
|
redVivid: {
|
|
90
37
|
50: "#FFECEE",
|
|
91
38
|
100: "#FFD6DB",
|
|
92
39
|
200: "#FFB3BC",
|
|
93
40
|
300: "#FF8593",
|
|
94
41
|
400: "#FF6070",
|
|
95
|
-
// Error vivid light
|
|
96
42
|
500: "#FF4757",
|
|
97
|
-
// Error vivid main
|
|
98
43
|
600: "#E63548",
|
|
99
44
|
700: "#C42539",
|
|
100
|
-
// Error vivid dark
|
|
101
45
|
800: "#9E1C2C",
|
|
102
46
|
900: "#7A1520"
|
|
103
47
|
},
|
|
104
|
-
// Amber scale (warning)
|
|
105
|
-
amber: {
|
|
106
|
-
50: "#FFFBEB",
|
|
107
|
-
100: "#FEF3C7",
|
|
108
|
-
200: "#FDE68A",
|
|
109
|
-
300: "#FCD34D",
|
|
110
|
-
400: "#FFBF4C",
|
|
111
|
-
// Warning light
|
|
112
|
-
500: "#FFB020",
|
|
113
|
-
// Warning main
|
|
114
|
-
600: "#B27B16",
|
|
115
|
-
// Warning dark
|
|
116
|
-
700: "#B45309",
|
|
117
|
-
800: "#92400E",
|
|
118
|
-
900: "#78350F"
|
|
119
|
-
},
|
|
120
|
-
// Sky/Blue scale (info)
|
|
121
|
-
sky: {
|
|
122
|
-
50: "#F0F9FF",
|
|
123
|
-
100: "#E0F2FE",
|
|
124
|
-
200: "#BAE6FD",
|
|
125
|
-
300: "#7DD3FC",
|
|
126
|
-
400: "#64B6F7",
|
|
127
|
-
// Info light
|
|
128
|
-
500: "#2196F3",
|
|
129
|
-
// Info main
|
|
130
|
-
600: "#0284C7",
|
|
131
|
-
700: "#0B79D0",
|
|
132
|
-
// Info dark
|
|
133
|
-
800: "#075985",
|
|
134
|
-
900: "#0C4A6E"
|
|
135
|
-
},
|
|
136
48
|
// Neutral/Gray scale
|
|
137
49
|
neutral: {
|
|
138
50
|
50: "#FAFAFA",
|
|
@@ -147,18 +59,6 @@ var primitiveColors = {
|
|
|
147
59
|
900: "#111827",
|
|
148
60
|
950: "#030712"
|
|
149
61
|
},
|
|
150
|
-
// Orange scale (accent/brand color)
|
|
151
|
-
accent: {
|
|
152
|
-
100: "#FFA860",
|
|
153
|
-
200: "#FF9630",
|
|
154
|
-
300: "#FF8500",
|
|
155
|
-
400: "#FF7900",
|
|
156
|
-
500: "#F56C00",
|
|
157
|
-
600: "#E06D10",
|
|
158
|
-
700: "#D0620C",
|
|
159
|
-
800: "#B75500",
|
|
160
|
-
900: "#A34900"
|
|
161
|
-
},
|
|
162
62
|
// Charcoal scale (dark backgrounds)
|
|
163
63
|
charcoal: {
|
|
164
64
|
0: "#6E6E6E",
|
|
@@ -173,18 +73,6 @@ var primitiveColors = {
|
|
|
173
73
|
800: "#131313",
|
|
174
74
|
900: "#101010"
|
|
175
75
|
},
|
|
176
|
-
// Steel scale (cool accent)
|
|
177
|
-
steel: {
|
|
178
|
-
100: "#8AA4B8",
|
|
179
|
-
200: "#7894A8",
|
|
180
|
-
300: "#678498",
|
|
181
|
-
400: "#557488",
|
|
182
|
-
500: "#406D87",
|
|
183
|
-
600: "#39617A",
|
|
184
|
-
700: "#32556D",
|
|
185
|
-
800: "#243D53",
|
|
186
|
-
900: "#1D3146"
|
|
187
|
-
},
|
|
188
76
|
// Pure colors
|
|
189
77
|
white: "#FFFFFF",
|
|
190
78
|
black: "#000000",
|
|
@@ -575,6 +463,9 @@ var semanticColorsLight = {
|
|
|
575
463
|
"status-success-light": primitiveRamps.green[200],
|
|
576
464
|
"status-success-dark": primitiveRamps.green[600],
|
|
577
465
|
"status-success-subtle": primitiveRamps.green[50],
|
|
466
|
+
// Live-session accent — its OWN role, decoupled from success so the two can diverge
|
|
467
|
+
"status-live": primitiveRamps.green[300],
|
|
468
|
+
"status-live-muted": primitiveRamps.green[500],
|
|
578
469
|
"status-error": primitiveRamps.red[600],
|
|
579
470
|
"status-error-light": primitiveRamps.red[500],
|
|
580
471
|
"status-error-dark": primitiveRamps.red[700],
|
|
@@ -708,6 +599,9 @@ var semanticColorsDark = {
|
|
|
708
599
|
"status-success-light": primitiveRamps.green[200],
|
|
709
600
|
"status-success-dark": primitiveRamps.green[600],
|
|
710
601
|
"status-success-subtle": "rgba(46, 213, 115, 0.12)",
|
|
602
|
+
// Live-session accent — its OWN role, decoupled from success so the two can diverge
|
|
603
|
+
"status-live": primitiveRamps.green[300],
|
|
604
|
+
"status-live-muted": primitiveRamps.green[500],
|
|
711
605
|
"status-error": primitiveRamps.red[600],
|
|
712
606
|
"status-error-light": primitiveRamps.red[500],
|
|
713
607
|
"status-error-dark": primitiveRamps.red[700],
|
|
@@ -950,6 +844,8 @@ var lightThemeCSSVars = {
|
|
|
950
844
|
"--color-on-brand-secondary": semanticColorsLight["on-brand-secondary"],
|
|
951
845
|
"--color-status-success": semanticColorsLight["status-success"],
|
|
952
846
|
"--color-status-success-subtle": semanticColorsLight["status-success-subtle"],
|
|
847
|
+
"--color-status-live": semanticColorsLight["status-live"],
|
|
848
|
+
"--color-status-live-muted": semanticColorsLight["status-live-muted"],
|
|
953
849
|
"--color-status-error": semanticColorsLight["status-error"],
|
|
954
850
|
"--color-status-error-subtle": semanticColorsLight["status-error-subtle"],
|
|
955
851
|
"--color-status-warning": semanticColorsLight["status-warning"],
|
|
@@ -1046,6 +942,8 @@ var darkThemeCSSVars = {
|
|
|
1046
942
|
"--color-on-brand-secondary": semanticColorsDark["on-brand-secondary"],
|
|
1047
943
|
"--color-status-success": semanticColorsDark["status-success"],
|
|
1048
944
|
"--color-status-success-subtle": semanticColorsDark["status-success-subtle"],
|
|
945
|
+
"--color-status-live": semanticColorsDark["status-live"],
|
|
946
|
+
"--color-status-live-muted": semanticColorsDark["status-live-muted"],
|
|
1049
947
|
"--color-status-error": semanticColorsDark["status-error"],
|
|
1050
948
|
"--color-status-error-subtle": semanticColorsDark["status-error-subtle"],
|
|
1051
949
|
"--color-status-warning": semanticColorsDark["status-warning"],
|