@keyfunc/keybricks-ds 1.0.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/DEPLOY.md +204 -0
- package/DESIGN.md +269 -0
- package/INTEGRATION.md +417 -0
- package/SKILL.md +32 -0
- package/_adherence.oxlintrc.json +1469 -0
- package/_scripts/build-index.mjs +80 -0
- package/_scripts/build-tokens.mjs +135 -0
- package/assets/icons/icon-index.js +1 -0
- package/assets/icons/icon-index.json +1 -0
- package/assets/icons/unicons-index.js +1 -0
- package/assets/icons/unicons-index.json +1 -0
- package/assets/keybricks-logo.png +0 -0
- package/components/_cards/accordion.card.html +32 -0
- package/components/_cards/action-chip.card.html +22 -0
- package/components/_cards/activity.card.html +34 -0
- package/components/_cards/alert.card.html +32 -0
- package/components/_cards/app-chrome.card.html +36 -0
- package/components/_cards/banner.card.html +21 -0
- package/components/_cards/brand-visual.card.html +43 -0
- package/components/_cards/breadcrumb.card.html +23 -0
- package/components/_cards/button-1-base.card.html +39 -0
- package/components/_cards/button-2-states.card.html +56 -0
- package/components/_cards/button-3-sizes-icons.card.html +32 -0
- package/components/_cards/button-4-group.card.html +47 -0
- package/components/_cards/canvas-zoom-controls.card.html +19 -0
- package/components/_cards/cards-indicators.card.html +59 -0
- package/components/_cards/charts-1-sparkline.card.html +55 -0
- package/components/_cards/charts-10-gauge.card.html +31 -0
- package/components/_cards/charts-11-funnel.card.html +28 -0
- package/components/_cards/charts-12-treemap.card.html +23 -0
- package/components/_cards/charts-14-radar.card.html +31 -0
- package/components/_cards/charts-15-distribution.card.html +32 -0
- package/components/_cards/charts-16-pareto.card.html +25 -0
- package/components/_cards/charts-17-candlestick.card.html +34 -0
- package/components/_cards/charts-18-sankey.card.html +29 -0
- package/components/_cards/charts-19-chord.card.html +31 -0
- package/components/_cards/charts-2-line.card.html +46 -0
- package/components/_cards/charts-20-sunburst.card.html +38 -0
- package/components/_cards/charts-21-worldmap.card.html +33 -0
- package/components/_cards/charts-22-gantt.card.html +37 -0
- package/components/_cards/charts-23-bar3d.card.html +26 -0
- package/components/_cards/charts-24-pie3d.card.html +32 -0
- package/components/_cards/charts-25-surface3d.card.html +24 -0
- package/components/_cards/charts-26-scatter3d.card.html +24 -0
- package/components/_cards/charts-27-ribbon3d.card.html +23 -0
- package/components/_cards/charts-3-bar.card.html +71 -0
- package/components/_cards/charts-4-barlist.card.html +30 -0
- package/components/_cards/charts-5-donut.card.html +35 -0
- package/components/_cards/charts-6-scatter.card.html +26 -0
- package/components/_cards/charts-7-heatmap.card.html +28 -0
- package/components/_cards/charts-8-waterfall.card.html +25 -0
- package/components/_cards/charts-9-bullet.card.html +31 -0
- package/components/_cards/charts-99-fullpage.card.html +194 -0
- package/components/_cards/checkbox.card.html +34 -0
- package/components/_cards/codeblock.card.html +19 -0
- package/components/_cards/combobox.card.html +25 -0
- package/components/_cards/context-menu.card.html +21 -0
- package/components/_cards/datatable.card.html +48 -0
- package/components/_cards/date-picker.card.html +31 -0
- package/components/_cards/diffvalue.card.html +21 -0
- package/components/_cards/divider.card.html +24 -0
- package/components/_cards/drawer.card.html +30 -0
- package/components/_cards/dropdown-menu.card.html +38 -0
- package/components/_cards/dropzone.card.html +22 -0
- package/components/_cards/empty-state.card.html +29 -0
- package/components/_cards/filter-bar.card.html +34 -0
- package/components/_cards/icon-button.card.html +27 -0
- package/components/_cards/icons-1-core.card.html +49 -0
- package/components/_cards/icons-2-feather.card.html +39 -0
- package/components/_cards/icons-3-unicons.card.html +44 -0
- package/components/_cards/input.card.html +25 -0
- package/components/_cards/kbd.card.html +20 -0
- package/components/_cards/keyvalue.card.html +23 -0
- package/components/_cards/listrow.card.html +30 -0
- package/components/_cards/loading.card.html +33 -0
- package/components/_cards/log-viewer.card.html +23 -0
- package/components/_cards/modal.card.html +35 -0
- package/components/_cards/multi-select.card.html +26 -0
- package/components/_cards/number-stepper.card.html +24 -0
- package/components/_cards/pagination.card.html +25 -0
- package/components/_cards/people.card.html +46 -0
- package/components/_cards/pipeline-node.card.html +76 -0
- package/components/_cards/pipeline-palette.card.html +54 -0
- package/components/_cards/search.card.html +23 -0
- package/components/_cards/select.card.html +23 -0
- package/components/_cards/slider.card.html +25 -0
- package/components/_cards/smart-table.card.html +37 -0
- package/components/_cards/spreadsheet.card.html +31 -0
- package/components/_cards/stepper.card.html +25 -0
- package/components/_cards/tabs.card.html +25 -0
- package/components/_cards/tag.card.html +26 -0
- package/components/_cards/textarea.card.html +27 -0
- package/components/_cards/timeline.card.html +32 -0
- package/components/_cards/toast.card.html +33 -0
- package/components/_cards/toggles.card.html +68 -0
- package/components/_cards/tooltip.card.html +22 -0
- package/components/_cards/tree.card.html +150 -0
- package/components/_shared/frame-theme.js +16 -0
- package/components/_shared/src-brand.js +1 -0
- package/components/_shared/src-buttons.js +1 -0
- package/components/_shared/src-charts.js +1 -0
- package/components/_shared/src-data.js +1 -0
- package/components/_shared/src-display.js +1 -0
- package/components/_shared/src-feedback.js +1 -0
- package/components/_shared/src-forms.js +1 -0
- package/components/_shared/src-icons.js +1 -0
- package/components/_shared/src-navigation.js +1 -0
- package/components/_shared/src-pipeline.js +1 -0
- package/components/_shared/src-tabs.js +1 -0
- package/components/_shared/svg-download.js +19 -0
- package/components/_shared/view-source.js +185 -0
- package/components/_vue/index.mjs +114 -0
- package/components/brand/BrandVisual.d.ts +17 -0
- package/components/brand/BrandVisual.jsx +29 -0
- package/components/brand/BrandVisual.vue +34 -0
- package/components/brand/_dir.card.html +13 -0
- package/components/brand/brandMotifs.js +210 -0
- package/components/buttons/ActionChip.d.ts +10 -0
- package/components/buttons/ActionChip.jsx +20 -0
- package/components/buttons/ActionChip.vue +18 -0
- package/components/buttons/Button.d.ts +40 -0
- package/components/buttons/Button.jsx +101 -0
- package/components/buttons/Button.vue +87 -0
- package/components/buttons/IconButton.d.ts +26 -0
- package/components/buttons/IconButton.jsx +28 -0
- package/components/buttons/IconButton.vue +21 -0
- package/components/buttons/_dir.card.html +13 -0
- package/components/buttons/buttons.prompt.md +19 -0
- package/components/charts/Bar3D.d.ts +15 -0
- package/components/charts/Bar3D.jsx +93 -0
- package/components/charts/Bar3D.vue +79 -0
- package/components/charts/BarChart.d.ts +23 -0
- package/components/charts/BarChart.jsx +135 -0
- package/components/charts/BarChart.vue +139 -0
- package/components/charts/BarList.d.ts +13 -0
- package/components/charts/BarList.jsx +31 -0
- package/components/charts/BarList.vue +25 -0
- package/components/charts/BoxPlot.d.ts +18 -0
- package/components/charts/BoxPlot.jsx +62 -0
- package/components/charts/BoxPlot.vue +58 -0
- package/components/charts/BulletChart.d.ts +12 -0
- package/components/charts/BulletChart.jsx +41 -0
- package/components/charts/BulletChart.vue +33 -0
- package/components/charts/CandlestickChart.d.ts +15 -0
- package/components/charts/CandlestickChart.jsx +63 -0
- package/components/charts/CandlestickChart.vue +62 -0
- package/components/charts/ChartKit.d.ts +8 -0
- package/components/charts/ChartKit.jsx +76 -0
- package/components/charts/ChartKit.vue +47 -0
- package/components/charts/ChordChart.d.ts +13 -0
- package/components/charts/ChordChart.jsx +55 -0
- package/components/charts/ChordChart.vue +54 -0
- package/components/charts/DonutChart.d.ts +15 -0
- package/components/charts/DonutChart.jsx +73 -0
- package/components/charts/DonutChart.vue +61 -0
- package/components/charts/FunnelChart.d.ts +11 -0
- package/components/charts/FunnelChart.jsx +37 -0
- package/components/charts/FunnelChart.vue +29 -0
- package/components/charts/GanttChart.d.ts +20 -0
- package/components/charts/GanttChart.jsx +80 -0
- package/components/charts/GanttChart.vue +60 -0
- package/components/charts/GaugeChart.d.ts +13 -0
- package/components/charts/GaugeChart.jsx +33 -0
- package/components/charts/GaugeChart.vue +29 -0
- package/components/charts/HeatmapChart.d.ts +13 -0
- package/components/charts/HeatmapChart.jsx +62 -0
- package/components/charts/HeatmapChart.vue +38 -0
- package/components/charts/Histogram.d.ts +16 -0
- package/components/charts/Histogram.jsx +56 -0
- package/components/charts/Histogram.vue +53 -0
- package/components/charts/LineChart.d.ts +17 -0
- package/components/charts/LineChart.jsx +84 -0
- package/components/charts/LineChart.vue +86 -0
- package/components/charts/ParetoChart.d.ts +13 -0
- package/components/charts/ParetoChart.jsx +54 -0
- package/components/charts/ParetoChart.vue +55 -0
- package/components/charts/Pie3D.d.ts +17 -0
- package/components/charts/Pie3D.jsx +145 -0
- package/components/charts/Pie3D.vue +115 -0
- package/components/charts/RadarChart.d.ts +14 -0
- package/components/charts/RadarChart.jsx +79 -0
- package/components/charts/RadarChart.vue +73 -0
- package/components/charts/Ribbon3D.d.ts +13 -0
- package/components/charts/Ribbon3D.jsx +89 -0
- package/components/charts/Ribbon3D.vue +79 -0
- package/components/charts/SankeyChart.d.ts +15 -0
- package/components/charts/SankeyChart.jsx +59 -0
- package/components/charts/SankeyChart.vue +53 -0
- package/components/charts/Scatter3D.d.ts +12 -0
- package/components/charts/Scatter3D.jsx +69 -0
- package/components/charts/Scatter3D.vue +59 -0
- package/components/charts/ScatterChart.d.ts +12 -0
- package/components/charts/ScatterChart.jsx +53 -0
- package/components/charts/ScatterChart.vue +57 -0
- package/components/charts/Sparkline.d.ts +19 -0
- package/components/charts/Sparkline.jsx +63 -0
- package/components/charts/Sparkline.vue +54 -0
- package/components/charts/SunburstChart.d.ts +12 -0
- package/components/charts/SunburstChart.jsx +61 -0
- package/components/charts/SunburstChart.vue +60 -0
- package/components/charts/Surface3D.d.ts +13 -0
- package/components/charts/Surface3D.jsx +70 -0
- package/components/charts/Surface3D.vue +63 -0
- package/components/charts/TreemapChart.d.ts +11 -0
- package/components/charts/TreemapChart.jsx +35 -0
- package/components/charts/TreemapChart.vue +27 -0
- package/components/charts/WaterfallChart.d.ts +11 -0
- package/components/charts/WaterfallChart.jsx +59 -0
- package/components/charts/WaterfallChart.vue +46 -0
- package/components/charts/WorldMap.d.ts +21 -0
- package/components/charts/WorldMap.jsx +107 -0
- package/components/charts/WorldMap.vue +73 -0
- package/components/charts/_dir.card.html +7 -0
- package/components/charts/chart-3d.js +84 -0
- package/components/charts/chart-geometry.js +223 -0
- package/components/charts/charts.prompt.md +24 -0
- package/components/data/CodeBlock.d.ts +9 -0
- package/components/data/CodeBlock.jsx +19 -0
- package/components/data/CodeBlock.vue +22 -0
- package/components/data/DataTable.d.ts +28 -0
- package/components/data/DataTable.jsx +32 -0
- package/components/data/DataTable.vue +25 -0
- package/components/data/DiffValue.d.ts +11 -0
- package/components/data/DiffValue.jsx +15 -0
- package/components/data/DiffValue.vue +13 -0
- package/components/data/FilterBar.d.ts +16 -0
- package/components/data/FilterBar.jsx +22 -0
- package/components/data/FilterBar.vue +23 -0
- package/components/data/KeyValue.d.ts +16 -0
- package/components/data/KeyValue.jsx +25 -0
- package/components/data/KeyValue.vue +26 -0
- package/components/data/ListRow.d.ts +14 -0
- package/components/data/ListRow.jsx +25 -0
- package/components/data/ListRow.vue +25 -0
- package/components/data/Pagination.d.ts +12 -0
- package/components/data/Pagination.jsx +27 -0
- package/components/data/Pagination.vue +24 -0
- package/components/data/SmartTable.d.ts +30 -0
- package/components/data/SmartTable.jsx +73 -0
- package/components/data/SmartTable.vue +74 -0
- package/components/data/Spreadsheet.d.ts +33 -0
- package/components/data/Spreadsheet.jsx +110 -0
- package/components/data/Spreadsheet.vue +95 -0
- package/components/data/_dir.card.html +13 -0
- package/components/data/data.prompt.md +33 -0
- package/components/display/Avatar.d.ts +21 -0
- package/components/display/Avatar.jsx +31 -0
- package/components/display/Avatar.vue +34 -0
- package/components/display/Badge.d.ts +27 -0
- package/components/display/Badge.jsx +40 -0
- package/components/display/Badge.vue +47 -0
- package/components/display/Card.d.ts +27 -0
- package/components/display/Card.jsx +27 -0
- package/components/display/Card.vue +28 -0
- package/components/display/Divider.d.ts +8 -0
- package/components/display/Divider.jsx +14 -0
- package/components/display/Divider.vue +13 -0
- package/components/display/Kbd.d.ts +7 -0
- package/components/display/Kbd.jsx +12 -0
- package/components/display/Kbd.vue +9 -0
- package/components/display/ProgressBar.d.ts +42 -0
- package/components/display/ProgressBar.jsx +70 -0
- package/components/display/ProgressBar.vue +69 -0
- package/components/display/Tag.d.ts +9 -0
- package/components/display/Tag.jsx +15 -0
- package/components/display/Tag.vue +15 -0
- package/components/display/_dir.card.html +13 -0
- package/components/display/display.prompt.md +30 -0
- package/components/feedback/Accordion.d.ts +13 -0
- package/components/feedback/Accordion.jsx +21 -0
- package/components/feedback/Accordion.vue +22 -0
- package/components/feedback/ActivityItem.d.ts +25 -0
- package/components/feedback/ActivityItem.jsx +39 -0
- package/components/feedback/ActivityItem.vue +46 -0
- package/components/feedback/Alert.d.ts +36 -0
- package/components/feedback/Alert.jsx +48 -0
- package/components/feedback/Alert.vue +59 -0
- package/components/feedback/Banner.d.ts +15 -0
- package/components/feedback/Banner.jsx +25 -0
- package/components/feedback/Banner.vue +25 -0
- package/components/feedback/ContextMenu.d.ts +8 -0
- package/components/feedback/ContextMenu.jsx +18 -0
- package/components/feedback/ContextMenu.vue +19 -0
- package/components/feedback/Drawer.d.ts +18 -0
- package/components/feedback/Drawer.jsx +26 -0
- package/components/feedback/Drawer.vue +24 -0
- package/components/feedback/Menu.d.ts +10 -0
- package/components/feedback/Menu.jsx +24 -0
- package/components/feedback/Menu.vue +21 -0
- package/components/feedback/Modal.d.ts +38 -0
- package/components/feedback/Modal.jsx +69 -0
- package/components/feedback/Modal.vue +65 -0
- package/components/feedback/Stepper.d.ts +9 -0
- package/components/feedback/Stepper.jsx +24 -0
- package/components/feedback/Stepper.vue +18 -0
- package/components/feedback/Timeline.d.ts +15 -0
- package/components/feedback/Timeline.jsx +27 -0
- package/components/feedback/Timeline.vue +21 -0
- package/components/feedback/_dir.card.html +13 -0
- package/components/feedback/feedback.prompt.md +35 -0
- package/components/forms/Checkbox.d.ts +13 -0
- package/components/forms/Checkbox.jsx +17 -0
- package/components/forms/Checkbox.vue +18 -0
- package/components/forms/Combobox.d.ts +13 -0
- package/components/forms/Combobox.jsx +34 -0
- package/components/forms/Combobox.vue +35 -0
- package/components/forms/DatePicker.d.ts +12 -0
- package/components/forms/DatePicker.jsx +48 -0
- package/components/forms/DatePicker.vue +46 -0
- package/components/forms/Dropzone.d.ts +20 -0
- package/components/forms/Dropzone.jsx +36 -0
- package/components/forms/Dropzone.vue +28 -0
- package/components/forms/Field.d.ts +13 -0
- package/components/forms/Field.jsx +13 -0
- package/components/forms/Field.vue +12 -0
- package/components/forms/Input.d.ts +18 -0
- package/components/forms/Input.jsx +35 -0
- package/components/forms/Input.vue +38 -0
- package/components/forms/MultiSelect.d.ts +14 -0
- package/components/forms/MultiSelect.jsx +33 -0
- package/components/forms/MultiSelect.vue +36 -0
- package/components/forms/NumberStepper.d.ts +13 -0
- package/components/forms/NumberStepper.jsx +15 -0
- package/components/forms/NumberStepper.vue +17 -0
- package/components/forms/Radio.vue +16 -0
- package/components/forms/RadioGroup.vue +11 -0
- package/components/forms/SearchInput.d.ts +12 -0
- package/components/forms/SearchInput.jsx +17 -0
- package/components/forms/SearchInput.vue +14 -0
- package/components/forms/Select.d.ts +14 -0
- package/components/forms/Select.jsx +17 -0
- package/components/forms/Select.vue +16 -0
- package/components/forms/Slider.d.ts +15 -0
- package/components/forms/Slider.jsx +21 -0
- package/components/forms/Slider.vue +23 -0
- package/components/forms/Switch.d.ts +31 -0
- package/components/forms/Switch.jsx +40 -0
- package/components/forms/Switch.vue +16 -0
- package/components/forms/_dir.card.html +13 -0
- package/components/forms/forms.prompt.md +23 -0
- package/components/icons/Icon.d.ts +19 -0
- package/components/icons/Icon.jsx +93 -0
- package/components/icons/Icon.prompt.md +8 -0
- package/components/icons/Icon.vue +12 -0
- package/components/icons/Unicon.d.ts +12 -0
- package/components/icons/Unicon.jsx +16 -0
- package/components/icons/Unicon.vue +15 -0
- package/components/icons/_dir.card.html +13 -0
- package/components/icons/feather-paths.js +2 -0
- package/components/icons/icon-paths.js +73 -0
- package/components/index.d.ts +87 -0
- package/components/index.js +110 -0
- package/components/navigation/Breadcrumb.d.ts +24 -0
- package/components/navigation/Breadcrumb.jsx +120 -0
- package/components/navigation/Breadcrumb.vue +94 -0
- package/components/navigation/DocTree.d.ts +18 -0
- package/components/navigation/DocTree.jsx +37 -0
- package/components/navigation/DocTree.vue +25 -0
- package/components/navigation/Sidebar.d.ts +29 -0
- package/components/navigation/Sidebar.jsx +75 -0
- package/components/navigation/Sidebar.vue +54 -0
- package/components/navigation/TopBar.d.ts +27 -0
- package/components/navigation/TopBar.jsx +44 -0
- package/components/navigation/TopBar.vue +51 -0
- package/components/navigation/Tree.d.ts +83 -0
- package/components/navigation/Tree.jsx +347 -0
- package/components/navigation/Tree.vue +258 -0
- package/components/navigation/_dir.card.html +13 -0
- package/components/navigation/navigation.prompt.md +22 -0
- package/components/pipeline/ConfigPanel.d.ts +18 -0
- package/components/pipeline/ConfigPanel.jsx +30 -0
- package/components/pipeline/ConfigPanel.vue +32 -0
- package/components/pipeline/DataPreview.d.ts +14 -0
- package/components/pipeline/DataPreview.jsx +24 -0
- package/components/pipeline/DataPreview.vue +21 -0
- package/components/pipeline/NodeCard.d.ts +47 -0
- package/components/pipeline/NodeCard.jsx +97 -0
- package/components/pipeline/NodeCard.vue +75 -0
- package/components/pipeline/PaletteItem.vue +15 -0
- package/components/pipeline/PaletteListItem.vue +15 -0
- package/components/pipeline/PalettePanel.d.ts +20 -0
- package/components/pipeline/PalettePanel.jsx +74 -0
- package/components/pipeline/PalettePanel.vue +45 -0
- package/components/pipeline/PipelineCanvas.d.ts +25 -0
- package/components/pipeline/PipelineCanvas.jsx +94 -0
- package/components/pipeline/PipelineCanvas.vue +73 -0
- package/components/pipeline/ZoomControls.d.ts +9 -0
- package/components/pipeline/ZoomControls.jsx +15 -0
- package/components/pipeline/ZoomControls.vue +15 -0
- package/components/pipeline/_dir.card.html +13 -0
- package/components/pipeline/pipeline.prompt.md +22 -0
- package/components/tabs/SegmentedControl.d.ts +11 -0
- package/components/tabs/SegmentedControl.jsx +21 -0
- package/components/tabs/SegmentedControl.vue +15 -0
- package/components/tabs/Tabs.d.ts +13 -0
- package/components/tabs/Tabs.jsx +52 -0
- package/components/tabs/Tabs.vue +39 -0
- package/components/tabs/ViewToggle.d.ts +8 -0
- package/components/tabs/ViewToggle.jsx +12 -0
- package/components/tabs/ViewToggle.vue +12 -0
- package/components/tabs/_dir.card.html +13 -0
- package/components/tabs/tabs.prompt.md +14 -0
- package/package.json +76 -0
- package/readme.md +150 -0
- package/styles.css +10 -0
- package/tokens/alpha.css +27 -0
- package/tokens/charts.css +55 -0
- package/tokens/colors-extended.css +40 -0
- package/tokens/colors.css +39 -0
- package/tokens/dark.css +96 -0
- package/tokens/fonts.css +4 -0
- package/tokens/interaction.css +48 -0
- package/tokens/layout.css +30 -0
- package/tokens/motion.css +22 -0
- package/tokens/tokens.d.ts +680 -0
- package/tokens/tokens.js +1018 -0
- package/tokens/tokens.json +2928 -0
- package/tokens/typography.css +22 -0
|
@@ -0,0 +1,680 @@
|
|
|
1
|
+
/* Generated from tokens/*.css by scripts/build-tokens.mjs — do not edit by hand. */
|
|
2
|
+
export type TokenName =
|
|
3
|
+
| "--action-dark"
|
|
4
|
+
| "--action-dark-active"
|
|
5
|
+
| "--action-dark-fg"
|
|
6
|
+
| "--action-dark-hover"
|
|
7
|
+
| "--action-primary"
|
|
8
|
+
| "--action-primary-active"
|
|
9
|
+
| "--action-primary-hover"
|
|
10
|
+
| "--amber-100"
|
|
11
|
+
| "--amber-200"
|
|
12
|
+
| "--amber-300"
|
|
13
|
+
| "--amber-400"
|
|
14
|
+
| "--amber-50"
|
|
15
|
+
| "--amber-500"
|
|
16
|
+
| "--amber-600"
|
|
17
|
+
| "--amber-700"
|
|
18
|
+
| "--amber-800"
|
|
19
|
+
| "--amber-900"
|
|
20
|
+
| "--amber-950"
|
|
21
|
+
| "--bg-active"
|
|
22
|
+
| "--bg-app"
|
|
23
|
+
| "--bg-hover"
|
|
24
|
+
| "--bg-inset"
|
|
25
|
+
| "--bg-press"
|
|
26
|
+
| "--bg-raised"
|
|
27
|
+
| "--bg-scrim"
|
|
28
|
+
| "--bg-surface"
|
|
29
|
+
| "--blue-100"
|
|
30
|
+
| "--blue-200"
|
|
31
|
+
| "--blue-300"
|
|
32
|
+
| "--blue-400"
|
|
33
|
+
| "--blue-50"
|
|
34
|
+
| "--blue-500"
|
|
35
|
+
| "--blue-600"
|
|
36
|
+
| "--blue-700"
|
|
37
|
+
| "--blue-800"
|
|
38
|
+
| "--blue-900"
|
|
39
|
+
| "--blue-950"
|
|
40
|
+
| "--border-card"
|
|
41
|
+
| "--border-control"
|
|
42
|
+
| "--border-strong"
|
|
43
|
+
| "--border-subtle"
|
|
44
|
+
| "--brand-alpha-12"
|
|
45
|
+
| "--brand-alpha-16"
|
|
46
|
+
| "--brand-alpha-24"
|
|
47
|
+
| "--brand-alpha-32"
|
|
48
|
+
| "--brand-alpha-8"
|
|
49
|
+
| "--card-pad"
|
|
50
|
+
| "--card-pad-sm"
|
|
51
|
+
| "--cat-join"
|
|
52
|
+
| "--cat-join-bg"
|
|
53
|
+
| "--cat-merge"
|
|
54
|
+
| "--cat-merge-bg"
|
|
55
|
+
| "--cat-output"
|
|
56
|
+
| "--cat-output-bg"
|
|
57
|
+
| "--cat-source"
|
|
58
|
+
| "--cat-source-bg"
|
|
59
|
+
| "--cat-transform"
|
|
60
|
+
| "--cat-transform-bg"
|
|
61
|
+
| "--chart-area-alpha"
|
|
62
|
+
| "--chart-axis"
|
|
63
|
+
| "--chart-blue"
|
|
64
|
+
| "--chart-grid"
|
|
65
|
+
| "--chart-guide"
|
|
66
|
+
| "--chart-heat-1"
|
|
67
|
+
| "--chart-heat-2"
|
|
68
|
+
| "--chart-heat-3"
|
|
69
|
+
| "--chart-heat-4"
|
|
70
|
+
| "--chart-heat-5"
|
|
71
|
+
| "--chart-heat-ink"
|
|
72
|
+
| "--chart-label"
|
|
73
|
+
| "--chart-neg"
|
|
74
|
+
| "--chart-pos"
|
|
75
|
+
| "--chart-total"
|
|
76
|
+
| "--chart-track"
|
|
77
|
+
| "--checkbox-border"
|
|
78
|
+
| "--cyan-100"
|
|
79
|
+
| "--cyan-200"
|
|
80
|
+
| "--cyan-300"
|
|
81
|
+
| "--cyan-400"
|
|
82
|
+
| "--cyan-50"
|
|
83
|
+
| "--cyan-500"
|
|
84
|
+
| "--cyan-600"
|
|
85
|
+
| "--cyan-700"
|
|
86
|
+
| "--cyan-800"
|
|
87
|
+
| "--cyan-900"
|
|
88
|
+
| "--cyan-950"
|
|
89
|
+
| "--danger"
|
|
90
|
+
| "--danger-active"
|
|
91
|
+
| "--danger-bg"
|
|
92
|
+
| "--danger-soft-active"
|
|
93
|
+
| "--danger-text"
|
|
94
|
+
| "--dot-neutral"
|
|
95
|
+
| "--drawer-h"
|
|
96
|
+
| "--dropzone-border"
|
|
97
|
+
| "--dropzone-border-hover"
|
|
98
|
+
| "--dur"
|
|
99
|
+
| "--dur-fast"
|
|
100
|
+
| "--dur-instant"
|
|
101
|
+
| "--dur-slow"
|
|
102
|
+
| "--dur-slower"
|
|
103
|
+
| "--ease-in"
|
|
104
|
+
| "--ease-in-out"
|
|
105
|
+
| "--ease-out"
|
|
106
|
+
| "--edge"
|
|
107
|
+
| "--emerald-100"
|
|
108
|
+
| "--emerald-200"
|
|
109
|
+
| "--emerald-300"
|
|
110
|
+
| "--emerald-400"
|
|
111
|
+
| "--emerald-50"
|
|
112
|
+
| "--emerald-500"
|
|
113
|
+
| "--emerald-600"
|
|
114
|
+
| "--emerald-700"
|
|
115
|
+
| "--emerald-800"
|
|
116
|
+
| "--emerald-900"
|
|
117
|
+
| "--emerald-950"
|
|
118
|
+
| "--focus-border"
|
|
119
|
+
| "--focus-ring"
|
|
120
|
+
| "--font-mono"
|
|
121
|
+
| "--font-sans"
|
|
122
|
+
| "--h-button"
|
|
123
|
+
| "--h-button-sm"
|
|
124
|
+
| "--h-input"
|
|
125
|
+
| "--h-nav-item"
|
|
126
|
+
| "--h-subnav-item"
|
|
127
|
+
| "--h-tree-item"
|
|
128
|
+
| "--hue-amber-bg"
|
|
129
|
+
| "--hue-amber-fg"
|
|
130
|
+
| "--hue-blue-bg"
|
|
131
|
+
| "--hue-blue-fg"
|
|
132
|
+
| "--hue-cyan-bg"
|
|
133
|
+
| "--hue-cyan-fg"
|
|
134
|
+
| "--hue-gray-bg"
|
|
135
|
+
| "--hue-gray-fg"
|
|
136
|
+
| "--hue-green-bg"
|
|
137
|
+
| "--hue-green-fg"
|
|
138
|
+
| "--hue-orange-bg"
|
|
139
|
+
| "--hue-orange-fg"
|
|
140
|
+
| "--hue-pink-bg"
|
|
141
|
+
| "--hue-pink-fg"
|
|
142
|
+
| "--hue-purple-bg"
|
|
143
|
+
| "--hue-purple-fg"
|
|
144
|
+
| "--hue-red-bg"
|
|
145
|
+
| "--hue-red-fg"
|
|
146
|
+
| "--hue-teal-bg"
|
|
147
|
+
| "--hue-teal-fg"
|
|
148
|
+
| "--info-bg"
|
|
149
|
+
| "--info-fg"
|
|
150
|
+
| "--leading-2xl"
|
|
151
|
+
| "--leading-2xs"
|
|
152
|
+
| "--leading-3xl"
|
|
153
|
+
| "--leading-4xl"
|
|
154
|
+
| "--leading-base"
|
|
155
|
+
| "--leading-display"
|
|
156
|
+
| "--leading-lg"
|
|
157
|
+
| "--leading-md"
|
|
158
|
+
| "--leading-num"
|
|
159
|
+
| "--leading-sm"
|
|
160
|
+
| "--leading-xl"
|
|
161
|
+
| "--leading-xs"
|
|
162
|
+
| "--link"
|
|
163
|
+
| "--link-hover"
|
|
164
|
+
| "--neutral-0"
|
|
165
|
+
| "--neutral-100"
|
|
166
|
+
| "--neutral-200"
|
|
167
|
+
| "--neutral-300"
|
|
168
|
+
| "--neutral-400"
|
|
169
|
+
| "--neutral-50"
|
|
170
|
+
| "--neutral-500"
|
|
171
|
+
| "--neutral-600"
|
|
172
|
+
| "--neutral-700"
|
|
173
|
+
| "--neutral-800"
|
|
174
|
+
| "--neutral-900"
|
|
175
|
+
| "--neutral-950"
|
|
176
|
+
| "--neutral-alpha-12"
|
|
177
|
+
| "--neutral-alpha-16"
|
|
178
|
+
| "--neutral-alpha-2"
|
|
179
|
+
| "--neutral-alpha-24"
|
|
180
|
+
| "--neutral-alpha-32"
|
|
181
|
+
| "--neutral-alpha-4"
|
|
182
|
+
| "--neutral-alpha-48"
|
|
183
|
+
| "--neutral-alpha-64"
|
|
184
|
+
| "--neutral-alpha-8"
|
|
185
|
+
| "--neutral-alpha-80"
|
|
186
|
+
| "--on-accent"
|
|
187
|
+
| "--orange-100"
|
|
188
|
+
| "--orange-200"
|
|
189
|
+
| "--orange-300"
|
|
190
|
+
| "--orange-400"
|
|
191
|
+
| "--orange-50"
|
|
192
|
+
| "--orange-500"
|
|
193
|
+
| "--orange-600"
|
|
194
|
+
| "--orange-700"
|
|
195
|
+
| "--orange-800"
|
|
196
|
+
| "--orange-900"
|
|
197
|
+
| "--orange-950"
|
|
198
|
+
| "--overlay-drag"
|
|
199
|
+
| "--overlay-hover"
|
|
200
|
+
| "--overlay-press"
|
|
201
|
+
| "--overlay-selected"
|
|
202
|
+
| "--page-pad-x"
|
|
203
|
+
| "--page-pad-y"
|
|
204
|
+
| "--panel-w"
|
|
205
|
+
| "--pink-100"
|
|
206
|
+
| "--pink-200"
|
|
207
|
+
| "--pink-300"
|
|
208
|
+
| "--pink-400"
|
|
209
|
+
| "--pink-50"
|
|
210
|
+
| "--pink-500"
|
|
211
|
+
| "--pink-600"
|
|
212
|
+
| "--pink-700"
|
|
213
|
+
| "--pink-800"
|
|
214
|
+
| "--pink-900"
|
|
215
|
+
| "--pink-950"
|
|
216
|
+
| "--port-border"
|
|
217
|
+
| "--press-filter"
|
|
218
|
+
| "--press-filter-strong"
|
|
219
|
+
| "--purple-100"
|
|
220
|
+
| "--purple-200"
|
|
221
|
+
| "--purple-300"
|
|
222
|
+
| "--purple-400"
|
|
223
|
+
| "--purple-50"
|
|
224
|
+
| "--purple-500"
|
|
225
|
+
| "--purple-600"
|
|
226
|
+
| "--purple-700"
|
|
227
|
+
| "--purple-800"
|
|
228
|
+
| "--purple-900"
|
|
229
|
+
| "--purple-950"
|
|
230
|
+
| "--radius-full"
|
|
231
|
+
| "--radius-lg"
|
|
232
|
+
| "--radius-md"
|
|
233
|
+
| "--radius-node"
|
|
234
|
+
| "--radius-sm"
|
|
235
|
+
| "--radius-tile"
|
|
236
|
+
| "--rail-w"
|
|
237
|
+
| "--red-100"
|
|
238
|
+
| "--red-200"
|
|
239
|
+
| "--red-300"
|
|
240
|
+
| "--red-400"
|
|
241
|
+
| "--red-50"
|
|
242
|
+
| "--red-500"
|
|
243
|
+
| "--red-600"
|
|
244
|
+
| "--red-700"
|
|
245
|
+
| "--red-800"
|
|
246
|
+
| "--red-900"
|
|
247
|
+
| "--red-950"
|
|
248
|
+
| "--ring-focus"
|
|
249
|
+
| "--ring-surface"
|
|
250
|
+
| "--section-gap"
|
|
251
|
+
| "--selected-border"
|
|
252
|
+
| "--series-1"
|
|
253
|
+
| "--series-10"
|
|
254
|
+
| "--series-2"
|
|
255
|
+
| "--series-3"
|
|
256
|
+
| "--series-4"
|
|
257
|
+
| "--series-5"
|
|
258
|
+
| "--series-6"
|
|
259
|
+
| "--series-7"
|
|
260
|
+
| "--series-8"
|
|
261
|
+
| "--series-9"
|
|
262
|
+
| "--shadow-menu"
|
|
263
|
+
| "--shadow-modal"
|
|
264
|
+
| "--shadow-node"
|
|
265
|
+
| "--shadow-selected"
|
|
266
|
+
| "--sidebar-w"
|
|
267
|
+
| "--skeleton"
|
|
268
|
+
| "--soft-active"
|
|
269
|
+
| "--soft-bg"
|
|
270
|
+
| "--soft-border"
|
|
271
|
+
| "--soft-hover"
|
|
272
|
+
| "--success"
|
|
273
|
+
| "--success-bg"
|
|
274
|
+
| "--success-strong"
|
|
275
|
+
| "--success-text"
|
|
276
|
+
| "--t-hover"
|
|
277
|
+
| "--t-theme"
|
|
278
|
+
| "--teal-100"
|
|
279
|
+
| "--teal-200"
|
|
280
|
+
| "--teal-300"
|
|
281
|
+
| "--teal-400"
|
|
282
|
+
| "--teal-50"
|
|
283
|
+
| "--teal-500"
|
|
284
|
+
| "--teal-600"
|
|
285
|
+
| "--teal-700"
|
|
286
|
+
| "--teal-800"
|
|
287
|
+
| "--teal-900"
|
|
288
|
+
| "--teal-950"
|
|
289
|
+
| "--text-2xl"
|
|
290
|
+
| "--text-2xs"
|
|
291
|
+
| "--text-3xl"
|
|
292
|
+
| "--text-4xl"
|
|
293
|
+
| "--text-base"
|
|
294
|
+
| "--text-body"
|
|
295
|
+
| "--text-display"
|
|
296
|
+
| "--text-heading"
|
|
297
|
+
| "--text-inverse"
|
|
298
|
+
| "--text-lg"
|
|
299
|
+
| "--text-md"
|
|
300
|
+
| "--text-muted"
|
|
301
|
+
| "--text-num"
|
|
302
|
+
| "--text-primary"
|
|
303
|
+
| "--text-secondary"
|
|
304
|
+
| "--text-sm"
|
|
305
|
+
| "--text-strong"
|
|
306
|
+
| "--text-xl"
|
|
307
|
+
| "--text-xs"
|
|
308
|
+
| "--tooltip-bg"
|
|
309
|
+
| "--tooltip-fg"
|
|
310
|
+
| "--topbar-h"
|
|
311
|
+
| "--track"
|
|
312
|
+
| "--tracking-2xl"
|
|
313
|
+
| "--tracking-2xs"
|
|
314
|
+
| "--tracking-3xl"
|
|
315
|
+
| "--tracking-4xl"
|
|
316
|
+
| "--tracking-base"
|
|
317
|
+
| "--tracking-display"
|
|
318
|
+
| "--tracking-lg"
|
|
319
|
+
| "--tracking-md"
|
|
320
|
+
| "--tracking-num"
|
|
321
|
+
| "--tracking-sm"
|
|
322
|
+
| "--tracking-xl"
|
|
323
|
+
| "--tracking-xs"
|
|
324
|
+
| "--warning"
|
|
325
|
+
| "--warning-bg"
|
|
326
|
+
| "--warning-text"
|
|
327
|
+
| "--weight-light"
|
|
328
|
+
| "--weight-medium"
|
|
329
|
+
| "--weight-regular"
|
|
330
|
+
| "--weight-semibold"
|
|
331
|
+
| "--z-drawer"
|
|
332
|
+
| "--z-menu"
|
|
333
|
+
| "--z-modal"
|
|
334
|
+
| "--z-sticky"
|
|
335
|
+
| "--z-toast"
|
|
336
|
+
| "--z-tooltip";
|
|
337
|
+
export type TokenKey =
|
|
338
|
+
| "actionDark"
|
|
339
|
+
| "actionDarkActive"
|
|
340
|
+
| "actionDarkFg"
|
|
341
|
+
| "actionDarkHover"
|
|
342
|
+
| "actionPrimary"
|
|
343
|
+
| "actionPrimaryActive"
|
|
344
|
+
| "actionPrimaryHover"
|
|
345
|
+
| "amber100"
|
|
346
|
+
| "amber200"
|
|
347
|
+
| "amber300"
|
|
348
|
+
| "amber400"
|
|
349
|
+
| "amber50"
|
|
350
|
+
| "amber500"
|
|
351
|
+
| "amber600"
|
|
352
|
+
| "amber700"
|
|
353
|
+
| "amber800"
|
|
354
|
+
| "amber900"
|
|
355
|
+
| "amber950"
|
|
356
|
+
| "bgActive"
|
|
357
|
+
| "bgApp"
|
|
358
|
+
| "bgHover"
|
|
359
|
+
| "bgInset"
|
|
360
|
+
| "bgPress"
|
|
361
|
+
| "bgRaised"
|
|
362
|
+
| "bgScrim"
|
|
363
|
+
| "bgSurface"
|
|
364
|
+
| "blue100"
|
|
365
|
+
| "blue200"
|
|
366
|
+
| "blue300"
|
|
367
|
+
| "blue400"
|
|
368
|
+
| "blue50"
|
|
369
|
+
| "blue500"
|
|
370
|
+
| "blue600"
|
|
371
|
+
| "blue700"
|
|
372
|
+
| "blue800"
|
|
373
|
+
| "blue900"
|
|
374
|
+
| "blue950"
|
|
375
|
+
| "borderCard"
|
|
376
|
+
| "borderControl"
|
|
377
|
+
| "borderStrong"
|
|
378
|
+
| "borderSubtle"
|
|
379
|
+
| "brandAlpha12"
|
|
380
|
+
| "brandAlpha16"
|
|
381
|
+
| "brandAlpha24"
|
|
382
|
+
| "brandAlpha32"
|
|
383
|
+
| "brandAlpha8"
|
|
384
|
+
| "cardPad"
|
|
385
|
+
| "cardPadSm"
|
|
386
|
+
| "catJoin"
|
|
387
|
+
| "catJoinBg"
|
|
388
|
+
| "catMerge"
|
|
389
|
+
| "catMergeBg"
|
|
390
|
+
| "catOutput"
|
|
391
|
+
| "catOutputBg"
|
|
392
|
+
| "catSource"
|
|
393
|
+
| "catSourceBg"
|
|
394
|
+
| "catTransform"
|
|
395
|
+
| "catTransformBg"
|
|
396
|
+
| "chartAreaAlpha"
|
|
397
|
+
| "chartAxis"
|
|
398
|
+
| "chartBlue"
|
|
399
|
+
| "chartGrid"
|
|
400
|
+
| "chartGuide"
|
|
401
|
+
| "chartHeat1"
|
|
402
|
+
| "chartHeat2"
|
|
403
|
+
| "chartHeat3"
|
|
404
|
+
| "chartHeat4"
|
|
405
|
+
| "chartHeat5"
|
|
406
|
+
| "chartHeatInk"
|
|
407
|
+
| "chartLabel"
|
|
408
|
+
| "chartNeg"
|
|
409
|
+
| "chartPos"
|
|
410
|
+
| "chartTotal"
|
|
411
|
+
| "chartTrack"
|
|
412
|
+
| "checkboxBorder"
|
|
413
|
+
| "cyan100"
|
|
414
|
+
| "cyan200"
|
|
415
|
+
| "cyan300"
|
|
416
|
+
| "cyan400"
|
|
417
|
+
| "cyan50"
|
|
418
|
+
| "cyan500"
|
|
419
|
+
| "cyan600"
|
|
420
|
+
| "cyan700"
|
|
421
|
+
| "cyan800"
|
|
422
|
+
| "cyan900"
|
|
423
|
+
| "cyan950"
|
|
424
|
+
| "danger"
|
|
425
|
+
| "dangerActive"
|
|
426
|
+
| "dangerBg"
|
|
427
|
+
| "dangerSoftActive"
|
|
428
|
+
| "dangerText"
|
|
429
|
+
| "dotNeutral"
|
|
430
|
+
| "drawerH"
|
|
431
|
+
| "dropzoneBorder"
|
|
432
|
+
| "dropzoneBorderHover"
|
|
433
|
+
| "dur"
|
|
434
|
+
| "durFast"
|
|
435
|
+
| "durInstant"
|
|
436
|
+
| "durSlow"
|
|
437
|
+
| "durSlower"
|
|
438
|
+
| "easeIn"
|
|
439
|
+
| "easeInOut"
|
|
440
|
+
| "easeOut"
|
|
441
|
+
| "edge"
|
|
442
|
+
| "emerald100"
|
|
443
|
+
| "emerald200"
|
|
444
|
+
| "emerald300"
|
|
445
|
+
| "emerald400"
|
|
446
|
+
| "emerald50"
|
|
447
|
+
| "emerald500"
|
|
448
|
+
| "emerald600"
|
|
449
|
+
| "emerald700"
|
|
450
|
+
| "emerald800"
|
|
451
|
+
| "emerald900"
|
|
452
|
+
| "emerald950"
|
|
453
|
+
| "focusBorder"
|
|
454
|
+
| "focusRing"
|
|
455
|
+
| "fontMono"
|
|
456
|
+
| "fontSans"
|
|
457
|
+
| "hButton"
|
|
458
|
+
| "hButtonSm"
|
|
459
|
+
| "hInput"
|
|
460
|
+
| "hNavItem"
|
|
461
|
+
| "hSubnavItem"
|
|
462
|
+
| "hTreeItem"
|
|
463
|
+
| "hueAmberBg"
|
|
464
|
+
| "hueAmberFg"
|
|
465
|
+
| "hueBlueBg"
|
|
466
|
+
| "hueBlueFg"
|
|
467
|
+
| "hueCyanBg"
|
|
468
|
+
| "hueCyanFg"
|
|
469
|
+
| "hueGrayBg"
|
|
470
|
+
| "hueGrayFg"
|
|
471
|
+
| "hueGreenBg"
|
|
472
|
+
| "hueGreenFg"
|
|
473
|
+
| "hueOrangeBg"
|
|
474
|
+
| "hueOrangeFg"
|
|
475
|
+
| "huePinkBg"
|
|
476
|
+
| "huePinkFg"
|
|
477
|
+
| "huePurpleBg"
|
|
478
|
+
| "huePurpleFg"
|
|
479
|
+
| "hueRedBg"
|
|
480
|
+
| "hueRedFg"
|
|
481
|
+
| "hueTealBg"
|
|
482
|
+
| "hueTealFg"
|
|
483
|
+
| "infoBg"
|
|
484
|
+
| "infoFg"
|
|
485
|
+
| "leading2xl"
|
|
486
|
+
| "leading2xs"
|
|
487
|
+
| "leading3xl"
|
|
488
|
+
| "leading4xl"
|
|
489
|
+
| "leadingBase"
|
|
490
|
+
| "leadingDisplay"
|
|
491
|
+
| "leadingLg"
|
|
492
|
+
| "leadingMd"
|
|
493
|
+
| "leadingNum"
|
|
494
|
+
| "leadingSm"
|
|
495
|
+
| "leadingXl"
|
|
496
|
+
| "leadingXs"
|
|
497
|
+
| "link"
|
|
498
|
+
| "linkHover"
|
|
499
|
+
| "neutral0"
|
|
500
|
+
| "neutral100"
|
|
501
|
+
| "neutral200"
|
|
502
|
+
| "neutral300"
|
|
503
|
+
| "neutral400"
|
|
504
|
+
| "neutral50"
|
|
505
|
+
| "neutral500"
|
|
506
|
+
| "neutral600"
|
|
507
|
+
| "neutral700"
|
|
508
|
+
| "neutral800"
|
|
509
|
+
| "neutral900"
|
|
510
|
+
| "neutral950"
|
|
511
|
+
| "neutralAlpha12"
|
|
512
|
+
| "neutralAlpha16"
|
|
513
|
+
| "neutralAlpha2"
|
|
514
|
+
| "neutralAlpha24"
|
|
515
|
+
| "neutralAlpha32"
|
|
516
|
+
| "neutralAlpha4"
|
|
517
|
+
| "neutralAlpha48"
|
|
518
|
+
| "neutralAlpha64"
|
|
519
|
+
| "neutralAlpha8"
|
|
520
|
+
| "neutralAlpha80"
|
|
521
|
+
| "onAccent"
|
|
522
|
+
| "orange100"
|
|
523
|
+
| "orange200"
|
|
524
|
+
| "orange300"
|
|
525
|
+
| "orange400"
|
|
526
|
+
| "orange50"
|
|
527
|
+
| "orange500"
|
|
528
|
+
| "orange600"
|
|
529
|
+
| "orange700"
|
|
530
|
+
| "orange800"
|
|
531
|
+
| "orange900"
|
|
532
|
+
| "orange950"
|
|
533
|
+
| "overlayDrag"
|
|
534
|
+
| "overlayHover"
|
|
535
|
+
| "overlayPress"
|
|
536
|
+
| "overlaySelected"
|
|
537
|
+
| "pagePadX"
|
|
538
|
+
| "pagePadY"
|
|
539
|
+
| "panelW"
|
|
540
|
+
| "pink100"
|
|
541
|
+
| "pink200"
|
|
542
|
+
| "pink300"
|
|
543
|
+
| "pink400"
|
|
544
|
+
| "pink50"
|
|
545
|
+
| "pink500"
|
|
546
|
+
| "pink600"
|
|
547
|
+
| "pink700"
|
|
548
|
+
| "pink800"
|
|
549
|
+
| "pink900"
|
|
550
|
+
| "pink950"
|
|
551
|
+
| "portBorder"
|
|
552
|
+
| "pressFilter"
|
|
553
|
+
| "pressFilterStrong"
|
|
554
|
+
| "purple100"
|
|
555
|
+
| "purple200"
|
|
556
|
+
| "purple300"
|
|
557
|
+
| "purple400"
|
|
558
|
+
| "purple50"
|
|
559
|
+
| "purple500"
|
|
560
|
+
| "purple600"
|
|
561
|
+
| "purple700"
|
|
562
|
+
| "purple800"
|
|
563
|
+
| "purple900"
|
|
564
|
+
| "purple950"
|
|
565
|
+
| "radiusFull"
|
|
566
|
+
| "radiusLg"
|
|
567
|
+
| "radiusMd"
|
|
568
|
+
| "radiusNode"
|
|
569
|
+
| "radiusSm"
|
|
570
|
+
| "radiusTile"
|
|
571
|
+
| "railW"
|
|
572
|
+
| "red100"
|
|
573
|
+
| "red200"
|
|
574
|
+
| "red300"
|
|
575
|
+
| "red400"
|
|
576
|
+
| "red50"
|
|
577
|
+
| "red500"
|
|
578
|
+
| "red600"
|
|
579
|
+
| "red700"
|
|
580
|
+
| "red800"
|
|
581
|
+
| "red900"
|
|
582
|
+
| "red950"
|
|
583
|
+
| "ringFocus"
|
|
584
|
+
| "ringSurface"
|
|
585
|
+
| "sectionGap"
|
|
586
|
+
| "selectedBorder"
|
|
587
|
+
| "series1"
|
|
588
|
+
| "series10"
|
|
589
|
+
| "series2"
|
|
590
|
+
| "series3"
|
|
591
|
+
| "series4"
|
|
592
|
+
| "series5"
|
|
593
|
+
| "series6"
|
|
594
|
+
| "series7"
|
|
595
|
+
| "series8"
|
|
596
|
+
| "series9"
|
|
597
|
+
| "shadowMenu"
|
|
598
|
+
| "shadowModal"
|
|
599
|
+
| "shadowNode"
|
|
600
|
+
| "shadowSelected"
|
|
601
|
+
| "sidebarW"
|
|
602
|
+
| "skeleton"
|
|
603
|
+
| "softActive"
|
|
604
|
+
| "softBg"
|
|
605
|
+
| "softBorder"
|
|
606
|
+
| "softHover"
|
|
607
|
+
| "success"
|
|
608
|
+
| "successBg"
|
|
609
|
+
| "successStrong"
|
|
610
|
+
| "successText"
|
|
611
|
+
| "tHover"
|
|
612
|
+
| "tTheme"
|
|
613
|
+
| "teal100"
|
|
614
|
+
| "teal200"
|
|
615
|
+
| "teal300"
|
|
616
|
+
| "teal400"
|
|
617
|
+
| "teal50"
|
|
618
|
+
| "teal500"
|
|
619
|
+
| "teal600"
|
|
620
|
+
| "teal700"
|
|
621
|
+
| "teal800"
|
|
622
|
+
| "teal900"
|
|
623
|
+
| "teal950"
|
|
624
|
+
| "text2xl"
|
|
625
|
+
| "text2xs"
|
|
626
|
+
| "text3xl"
|
|
627
|
+
| "text4xl"
|
|
628
|
+
| "textBase"
|
|
629
|
+
| "textBody"
|
|
630
|
+
| "textDisplay"
|
|
631
|
+
| "textHeading"
|
|
632
|
+
| "textInverse"
|
|
633
|
+
| "textLg"
|
|
634
|
+
| "textMd"
|
|
635
|
+
| "textMuted"
|
|
636
|
+
| "textNum"
|
|
637
|
+
| "textPrimary"
|
|
638
|
+
| "textSecondary"
|
|
639
|
+
| "textSm"
|
|
640
|
+
| "textStrong"
|
|
641
|
+
| "textXl"
|
|
642
|
+
| "textXs"
|
|
643
|
+
| "tooltipBg"
|
|
644
|
+
| "tooltipFg"
|
|
645
|
+
| "topbarH"
|
|
646
|
+
| "track"
|
|
647
|
+
| "tracking2xl"
|
|
648
|
+
| "tracking2xs"
|
|
649
|
+
| "tracking3xl"
|
|
650
|
+
| "tracking4xl"
|
|
651
|
+
| "trackingBase"
|
|
652
|
+
| "trackingDisplay"
|
|
653
|
+
| "trackingLg"
|
|
654
|
+
| "trackingMd"
|
|
655
|
+
| "trackingNum"
|
|
656
|
+
| "trackingSm"
|
|
657
|
+
| "trackingXl"
|
|
658
|
+
| "trackingXs"
|
|
659
|
+
| "warning"
|
|
660
|
+
| "warningBg"
|
|
661
|
+
| "warningText"
|
|
662
|
+
| "weightLight"
|
|
663
|
+
| "weightMedium"
|
|
664
|
+
| "weightRegular"
|
|
665
|
+
| "weightSemibold"
|
|
666
|
+
| "zDrawer"
|
|
667
|
+
| "zMenu"
|
|
668
|
+
| "zModal"
|
|
669
|
+
| "zSticky"
|
|
670
|
+
| "zToast"
|
|
671
|
+
| "zTooltip";
|
|
672
|
+
/** `var(--token)` references — use these in component styles so theming stays live. */
|
|
673
|
+
export declare const cssVar: Record<TokenKey, string>;
|
|
674
|
+
/** Flattened light-theme literals. */
|
|
675
|
+
export declare const light: Record<TokenKey, string>;
|
|
676
|
+
/** Flattened dark-theme literals (falls back to the light value when unthemed). */
|
|
677
|
+
export declare const dark: Record<TokenKey, string>;
|
|
678
|
+
export declare const tokenNames: TokenName[];
|
|
679
|
+
declare const _default: { cssVar: typeof cssVar; light: typeof light; dark: typeof dark; tokenNames: typeof tokenNames };
|
|
680
|
+
export default _default;
|