@work-rjkashyap/unified-ui 0.3.3 → 0.3.5
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/CHANGELOG.md +105 -0
- package/LICENSE +21 -0
- package/dist/components/accordion.cjs +225 -0
- package/dist/components/accordion.d.cts +157 -0
- package/dist/components/accordion.d.ts +157 -0
- package/dist/components/accordion.mjs +199 -0
- package/dist/components/alert-dialog.cjs +246 -0
- package/dist/components/alert-dialog.d.cts +61 -0
- package/dist/components/alert-dialog.d.ts +61 -0
- package/dist/components/alert-dialog.mjs +218 -0
- package/dist/components/alert.cjs +401 -0
- package/dist/components/alert.d.cts +217 -0
- package/dist/components/alert.d.ts +217 -0
- package/dist/components/alert.mjs +374 -0
- package/dist/components/aspect-ratio.cjs +45 -0
- package/dist/components/aspect-ratio.d.cts +10 -0
- package/dist/components/aspect-ratio.d.ts +10 -0
- package/dist/components/aspect-ratio.mjs +23 -0
- package/dist/components/avatar.cjs +348 -0
- package/dist/components/avatar.d.cts +198 -0
- package/dist/components/avatar.d.ts +198 -0
- package/dist/components/avatar.mjs +329 -0
- package/dist/components/badge.cjs +325 -0
- package/dist/components/badge.d.cts +259 -0
- package/dist/components/badge.d.ts +259 -0
- package/dist/components/badge.mjs +298 -0
- package/dist/components/banner.cjs +147 -0
- package/dist/components/banner.d.cts +31 -0
- package/dist/components/banner.d.ts +31 -0
- package/dist/components/banner.mjs +122 -0
- package/dist/components/breadcrumb.cjs +266 -0
- package/dist/components/breadcrumb.d.cts +159 -0
- package/dist/components/breadcrumb.d.ts +159 -0
- package/dist/components/breadcrumb.mjs +235 -0
- package/dist/components/button.cjs +254 -0
- package/dist/components/button.d.cts +126 -0
- package/dist/components/button.d.ts +126 -0
- package/dist/components/button.mjs +229 -0
- package/dist/components/calendar.cjs +511 -0
- package/dist/components/calendar.d.cts +94 -0
- package/dist/components/calendar.d.ts +94 -0
- package/dist/components/calendar.mjs +492 -0
- package/dist/components/card.cjs +234 -0
- package/dist/components/card.d.cts +190 -0
- package/dist/components/card.d.ts +190 -0
- package/dist/components/card.mjs +210 -0
- package/dist/components/carousel.cjs +234 -0
- package/dist/components/carousel.d.cts +30 -0
- package/dist/components/carousel.d.ts +30 -0
- package/dist/components/carousel.mjs +217 -0
- package/dist/components/chart.cjs +122 -0
- package/dist/components/chart.d.cts +103 -0
- package/dist/components/chart.d.ts +103 -0
- package/dist/components/chart.mjs +96 -0
- package/dist/components/checkbox.cjs +318 -0
- package/dist/components/checkbox.d.cts +182 -0
- package/dist/components/checkbox.d.ts +182 -0
- package/dist/components/checkbox.mjs +296 -0
- package/dist/components/code-highlight.cjs +335 -0
- package/dist/components/code-highlight.d.cts +18 -0
- package/dist/components/code-highlight.d.ts +18 -0
- package/dist/components/code-highlight.mjs +308 -0
- package/dist/components/code.cjs +265 -0
- package/dist/components/code.d.cts +40 -0
- package/dist/components/code.d.ts +40 -0
- package/dist/components/code.mjs +243 -0
- package/dist/components/collapsible.cjs +143 -0
- package/dist/components/collapsible.d.cts +159 -0
- package/dist/components/collapsible.d.ts +159 -0
- package/dist/components/collapsible.mjs +123 -0
- package/dist/components/color-picker.cjs +348 -0
- package/dist/components/color-picker.d.cts +35 -0
- package/dist/components/color-picker.d.ts +35 -0
- package/dist/components/color-picker.mjs +331 -0
- package/dist/components/combobox.cjs +584 -0
- package/dist/components/combobox.d.cts +183 -0
- package/dist/components/combobox.d.ts +183 -0
- package/dist/components/combobox.mjs +571 -0
- package/dist/components/command.cjs +329 -0
- package/dist/components/command.d.cts +97 -0
- package/dist/components/command.d.ts +97 -0
- package/dist/components/command.mjs +311 -0
- package/dist/components/confirm-dialog.cjs +100 -0
- package/dist/components/confirm-dialog.d.cts +25 -0
- package/dist/components/confirm-dialog.d.ts +25 -0
- package/dist/components/confirm-dialog.mjs +86 -0
- package/dist/components/context-menu.cjs +325 -0
- package/dist/components/context-menu.d.cts +259 -0
- package/dist/components/context-menu.d.ts +259 -0
- package/dist/components/context-menu.mjs +290 -0
- package/dist/components/copy-button.cjs +203 -0
- package/dist/components/copy-button.d.cts +22 -0
- package/dist/components/copy-button.d.ts +22 -0
- package/dist/components/copy-button.mjs +178 -0
- package/dist/components/data-list.cjs +140 -0
- package/dist/components/data-list.d.cts +36 -0
- package/dist/components/data-list.d.ts +36 -0
- package/dist/components/data-list.mjs +113 -0
- package/dist/components/data-table-toolbar.cjs +338 -0
- package/dist/components/data-table-toolbar.d.cts +84 -0
- package/dist/components/data-table-toolbar.d.ts +84 -0
- package/dist/components/data-table-toolbar.mjs +320 -0
- package/dist/components/data-table.cjs +1324 -0
- package/dist/components/data-table.d.cts +349 -0
- package/dist/components/data-table.d.ts +349 -0
- package/dist/components/data-table.mjs +1323 -0
- package/dist/components/date-picker.cjs +282 -0
- package/dist/components/date-picker.d.cts +97 -0
- package/dist/components/date-picker.d.ts +97 -0
- package/dist/components/date-picker.mjs +258 -0
- package/dist/components/dialog.cjs +319 -0
- package/dist/components/dialog.d.cts +74 -0
- package/dist/components/dialog.d.ts +74 -0
- package/dist/components/dialog.mjs +292 -0
- package/dist/components/drawer.cjs +262 -0
- package/dist/components/drawer.d.cts +113 -0
- package/dist/components/drawer.d.ts +113 -0
- package/dist/components/drawer.mjs +230 -0
- package/dist/components/dropdown-menu.cjs +328 -0
- package/dist/components/dropdown-menu.d.cts +95 -0
- package/dist/components/dropdown-menu.d.ts +95 -0
- package/dist/components/dropdown-menu.mjs +293 -0
- package/dist/components/empty-state.cjs +123 -0
- package/dist/components/empty-state.d.cts +15 -0
- package/dist/components/empty-state.d.ts +15 -0
- package/dist/components/empty-state.mjs +99 -0
- package/dist/components/file-upload.cjs +442 -0
- package/dist/components/file-upload.d.cts +35 -0
- package/dist/components/file-upload.d.ts +35 -0
- package/dist/components/file-upload.mjs +423 -0
- package/dist/components/form-field.cjs +191 -0
- package/dist/components/form-field.d.cts +163 -0
- package/dist/components/form-field.d.ts +163 -0
- package/dist/components/form-field.mjs +167 -0
- package/dist/components/hover-card.cjs +99 -0
- package/dist/components/hover-card.d.cts +28 -0
- package/dist/components/hover-card.d.ts +28 -0
- package/dist/components/hover-card.mjs +75 -0
- package/dist/components/image-gallery.cjs +359 -0
- package/dist/components/image-gallery.d.cts +46 -0
- package/dist/components/image-gallery.d.ts +46 -0
- package/dist/components/image-gallery.mjs +340 -0
- package/dist/components/index.cjs +719 -0
- package/dist/components/index.d.cts +84 -0
- package/dist/components/index.d.ts +84 -0
- package/dist/components/index.mjs +771 -0
- package/dist/components/infinite-scroll.cjs +95 -0
- package/dist/components/infinite-scroll.d.cts +54 -0
- package/dist/components/infinite-scroll.d.ts +54 -0
- package/dist/components/infinite-scroll.mjs +71 -0
- package/dist/components/input-group.cjs +202 -0
- package/dist/components/input-group.d.cts +22 -0
- package/dist/components/input-group.d.ts +22 -0
- package/dist/components/input-group.mjs +178 -0
- package/dist/components/input.cjs +318 -0
- package/dist/components/input.d.cts +99 -0
- package/dist/components/input.d.ts +99 -0
- package/dist/components/input.mjs +296 -0
- package/dist/components/kbd.cjs +69 -0
- package/dist/components/kbd.d.cts +25 -0
- package/dist/components/kbd.d.ts +25 -0
- package/dist/components/kbd.mjs +44 -0
- package/dist/components/label.cjs +138 -0
- package/dist/components/label.d.cts +91 -0
- package/dist/components/label.d.ts +91 -0
- package/dist/components/label.mjs +113 -0
- package/dist/components/markdown.cjs +179 -0
- package/dist/components/markdown.d.cts +41 -0
- package/dist/components/markdown.d.ts +41 -0
- package/dist/components/markdown.mjs +155 -0
- package/dist/components/menubar.cjs +365 -0
- package/dist/components/menubar.d.cts +88 -0
- package/dist/components/menubar.d.ts +88 -0
- package/dist/components/menubar.mjs +329 -0
- package/dist/components/navigation-menu.cjs +280 -0
- package/dist/components/navigation-menu.d.cts +123 -0
- package/dist/components/navigation-menu.d.ts +123 -0
- package/dist/components/navigation-menu.mjs +250 -0
- package/dist/components/number-input.cjs +419 -0
- package/dist/components/number-input.d.cts +111 -0
- package/dist/components/number-input.d.ts +111 -0
- package/dist/components/number-input.mjs +400 -0
- package/dist/components/pagination.cjs +322 -0
- package/dist/components/pagination.d.cts +119 -0
- package/dist/components/pagination.d.ts +119 -0
- package/dist/components/pagination.mjs +297 -0
- package/dist/components/pin-input.cjs +321 -0
- package/dist/components/pin-input.d.cts +112 -0
- package/dist/components/pin-input.d.ts +112 -0
- package/dist/components/pin-input.mjs +303 -0
- package/dist/components/popover.cjs +194 -0
- package/dist/components/popover.d.cts +108 -0
- package/dist/components/popover.d.ts +108 -0
- package/dist/components/popover.mjs +168 -0
- package/dist/components/progress.cjs +237 -0
- package/dist/components/progress.d.cts +137 -0
- package/dist/components/progress.d.ts +137 -0
- package/dist/components/progress.mjs +211 -0
- package/dist/components/radio.cjs +344 -0
- package/dist/components/radio.d.cts +145 -0
- package/dist/components/radio.d.ts +145 -0
- package/dist/components/radio.mjs +320 -0
- package/dist/components/resizable.cjs +121 -0
- package/dist/components/resizable.d.cts +23 -0
- package/dist/components/resizable.d.ts +23 -0
- package/dist/components/resizable.mjs +99 -0
- package/dist/components/scroll-area.cjs +168 -0
- package/dist/components/scroll-area.d.cts +131 -0
- package/dist/components/scroll-area.d.ts +131 -0
- package/dist/components/scroll-area.mjs +143 -0
- package/dist/components/search-input.cjs +261 -0
- package/dist/components/search-input.d.cts +26 -0
- package/dist/components/search-input.d.ts +26 -0
- package/dist/components/search-input.mjs +243 -0
- package/dist/components/select.cjs +320 -0
- package/dist/components/select.d.cts +55 -0
- package/dist/components/select.d.ts +55 -0
- package/dist/components/select.mjs +288 -0
- package/dist/components/separator.cjs +193 -0
- package/dist/components/separator.d.cts +92 -0
- package/dist/components/separator.d.ts +92 -0
- package/dist/components/separator.mjs +170 -0
- package/dist/components/sheet.cjs +399 -0
- package/dist/components/sheet.d.cts +219 -0
- package/dist/components/sheet.d.ts +219 -0
- package/dist/components/sheet.mjs +379 -0
- package/dist/components/sidebar.cjs +1077 -0
- package/dist/components/sidebar.d.cts +733 -0
- package/dist/components/sidebar.d.ts +733 -0
- package/dist/components/sidebar.mjs +1033 -0
- package/dist/components/skeleton.cjs +210 -0
- package/dist/components/skeleton.d.cts +202 -0
- package/dist/components/skeleton.d.ts +202 -0
- package/dist/components/skeleton.mjs +182 -0
- package/dist/components/slider.cjs +319 -0
- package/dist/components/slider.d.cts +82 -0
- package/dist/components/slider.d.ts +82 -0
- package/dist/components/slider.mjs +296 -0
- package/dist/components/sonner.cjs +119 -0
- package/dist/components/sonner.d.cts +60 -0
- package/dist/components/sonner.d.ts +60 -0
- package/dist/components/sonner.mjs +94 -0
- package/dist/components/spinner.cjs +238 -0
- package/dist/components/spinner.d.cts +101 -0
- package/dist/components/spinner.d.ts +101 -0
- package/dist/components/spinner.mjs +213 -0
- package/dist/components/stat.cjs +180 -0
- package/dist/components/stat.d.cts +21 -0
- package/dist/components/stat.d.ts +21 -0
- package/dist/components/stat.mjs +161 -0
- package/dist/components/steps.cjs +228 -0
- package/dist/components/steps.d.cts +76 -0
- package/dist/components/steps.d.ts +76 -0
- package/dist/components/steps.mjs +207 -0
- package/dist/components/switch.cjs +243 -0
- package/dist/components/switch.d.cts +90 -0
- package/dist/components/switch.d.ts +90 -0
- package/dist/components/switch.mjs +228 -0
- package/dist/components/table.cjs +381 -0
- package/dist/components/table.d.cts +181 -0
- package/dist/components/table.d.ts +181 -0
- package/dist/components/table.mjs +349 -0
- package/dist/components/tabs.cjs +326 -0
- package/dist/components/tabs.d.cts +154 -0
- package/dist/components/tabs.d.ts +154 -0
- package/dist/components/tabs.mjs +304 -0
- package/dist/components/textarea.cjs +258 -0
- package/dist/components/textarea.d.cts +112 -0
- package/dist/components/textarea.d.ts +112 -0
- package/dist/components/textarea.mjs +233 -0
- package/dist/components/theme-toggle.cjs +282 -0
- package/dist/components/theme-toggle.d.cts +58 -0
- package/dist/components/theme-toggle.d.ts +58 -0
- package/dist/components/theme-toggle.mjs +258 -0
- package/dist/components/timeline.cjs +178 -0
- package/dist/components/timeline.d.cts +41 -0
- package/dist/components/timeline.d.ts +41 -0
- package/dist/components/timeline.mjs +157 -0
- package/dist/components/toast.cjs +546 -0
- package/dist/components/toast.d.cts +169 -0
- package/dist/components/toast.d.ts +169 -0
- package/dist/components/toast.mjs +528 -0
- package/dist/components/toggle-group.cjs +204 -0
- package/dist/components/toggle-group.d.cts +215 -0
- package/dist/components/toggle-group.d.ts +215 -0
- package/dist/components/toggle-group.mjs +180 -0
- package/dist/components/toggle.cjs +155 -0
- package/dist/components/toggle.d.cts +100 -0
- package/dist/components/toggle.d.ts +100 -0
- package/dist/components/toggle.mjs +130 -0
- package/dist/components/tooltip.cjs +155 -0
- package/dist/components/tooltip.d.cts +129 -0
- package/dist/components/tooltip.d.ts +129 -0
- package/dist/components/tooltip.mjs +132 -0
- package/dist/components/tree-view.cjs +450 -0
- package/dist/components/tree-view.d.cts +67 -0
- package/dist/components/tree-view.d.ts +67 -0
- package/dist/components/tree-view.mjs +433 -0
- package/dist/components/video-player.cjs +344 -0
- package/dist/components/video-player.d.cts +34 -0
- package/dist/components/video-player.d.ts +34 -0
- package/dist/components/video-player.mjs +320 -0
- package/dist/components/virtual-list.cjs +153 -0
- package/dist/components/virtual-list.d.cts +53 -0
- package/dist/components/virtual-list.d.ts +53 -0
- package/dist/components/virtual-list.mjs +136 -0
- package/dist/components/visually-hidden.cjs +43 -0
- package/dist/components/visually-hidden.d.cts +9 -0
- package/dist/components/visually-hidden.d.ts +9 -0
- package/dist/components/visually-hidden.mjs +21 -0
- package/dist/index.cjs +1081 -1933
- package/dist/index.d.cts +99 -11
- package/dist/index.d.ts +99 -11
- package/dist/index.mjs +1138 -16
- package/dist/motion/hooks.cjs +98 -0
- package/dist/motion/hooks.d.cts +32 -0
- package/dist/motion/hooks.d.ts +32 -0
- package/dist/motion/hooks.mjs +70 -0
- package/dist/motion/index.cjs +157 -0
- package/dist/motion/index.d.cts +5 -0
- package/dist/motion/index.d.ts +5 -0
- package/dist/motion/index.mjs +137 -0
- package/dist/motion/presets.cjs +609 -0
- package/dist/{motion.d.ts → motion/presets.d.cts} +1 -30
- package/dist/{motion.d.cts → motion/presets.d.ts} +1 -30
- package/dist/{chunk-PLRSH37T.mjs → motion/presets.mjs} +119 -126
- package/dist/primitives/container.cjs +88 -0
- package/dist/primitives/container.d.cts +82 -0
- package/dist/primitives/container.d.ts +82 -0
- package/dist/primitives/container.mjs +64 -0
- package/dist/primitives/divider.cjs +74 -0
- package/dist/primitives/divider.d.cts +30 -0
- package/dist/primitives/divider.d.ts +30 -0
- package/dist/primitives/divider.mjs +50 -0
- package/dist/primitives/index.cjs +54 -0
- package/dist/primitives/index.d.cts +6 -0
- package/dist/primitives/index.d.ts +6 -0
- package/dist/primitives/index.mjs +33 -0
- package/dist/primitives/stack.cjs +167 -0
- package/dist/primitives/stack.d.cts +132 -0
- package/dist/primitives/stack.d.ts +132 -0
- package/dist/primitives/stack.mjs +142 -0
- package/dist/primitives/typography.cjs +260 -0
- package/dist/primitives/typography.d.cts +157 -0
- package/dist/primitives/typography.d.ts +157 -0
- package/dist/primitives/typography.mjs +229 -0
- package/dist/theme/contract.cjs +246 -0
- package/dist/theme/contract.d.cts +76 -0
- package/dist/theme/contract.d.ts +76 -0
- package/dist/theme/contract.mjs +221 -0
- package/dist/theme/customizer-store.cjs +266 -0
- package/dist/theme/customizer-store.d.cts +76 -0
- package/dist/theme/customizer-store.d.ts +76 -0
- package/dist/theme/customizer-store.mjs +261 -0
- package/dist/theme/customizer.cjs +812 -0
- package/dist/theme/customizer.d.cts +13 -0
- package/dist/theme/customizer.d.ts +13 -0
- package/dist/theme/customizer.mjs +803 -0
- package/dist/theme/index.cjs +105 -0
- package/dist/theme/index.d.cts +13 -0
- package/dist/theme/index.d.ts +13 -0
- package/dist/theme/index.mjs +87 -0
- package/dist/theme/presets.cjs +1205 -0
- package/dist/theme/presets.d.cts +232 -0
- package/dist/theme/presets.d.ts +232 -0
- package/dist/theme/presets.mjs +1175 -0
- package/dist/theme/provider.cjs +122 -0
- package/dist/theme/provider.d.cts +57 -0
- package/dist/theme/provider.d.ts +57 -0
- package/dist/theme/provider.mjs +104 -0
- package/dist/{chunk-IVZAB7BV.mjs → tokens/colors.cjs} +212 -86
- package/dist/{z-index-Dd8IllRx.d.cts → tokens/colors.d.cts} +235 -72
- package/dist/{z-index-Dd8IllRx.d.ts → tokens/colors.d.ts} +235 -72
- package/dist/{chunk-ZBGR7MUW.cjs → tokens/colors.mjs} +165 -104
- package/dist/tokens/index.cjs +96 -0
- package/dist/tokens/index.d.cts +7 -0
- package/dist/tokens/index.d.ts +7 -0
- package/dist/tokens/index.mjs +71 -0
- package/dist/{chunk-XCKK6P46.cjs → tokens/motion.cjs} +46 -18
- package/dist/{motion-D9wQbcKL.d.cts → tokens/motion.d.cts} +1 -1
- package/dist/{motion-D9wQbcKL.d.ts → tokens/motion.d.ts} +1 -1
- package/dist/{chunk-EZ2L3XPS.mjs → tokens/motion.mjs} +16 -10
- package/dist/tokens/radius.cjs +41 -0
- package/dist/tokens/radius.d.cts +18 -0
- package/dist/tokens/radius.d.ts +18 -0
- package/dist/tokens/radius.mjs +17 -0
- package/dist/tokens/shadows.cjs +57 -0
- package/dist/tokens/shadows.d.cts +32 -0
- package/dist/tokens/shadows.d.ts +32 -0
- package/dist/tokens/shadows.mjs +32 -0
- package/dist/tokens/spacing.cjs +51 -0
- package/dist/tokens/spacing.d.cts +26 -0
- package/dist/tokens/spacing.d.ts +26 -0
- package/dist/{chunk-NMPHV6ZD.mjs → tokens/spacing.mjs} +4 -4
- package/dist/{chunk-ECIGDEAH.cjs → tokens/typography.cjs} +43 -16
- package/dist/{typography-DlvVjEdE.d.ts → tokens/typography.d.cts} +1 -1
- package/dist/{typography-DlvVjEdE.d.cts → tokens/typography.d.ts} +1 -1
- package/dist/{chunk-ITBG42M5.mjs → tokens/typography.mjs} +14 -9
- package/dist/tokens/z-index.cjs +47 -0
- package/dist/tokens/z-index.d.cts +24 -0
- package/dist/tokens/z-index.d.ts +24 -0
- package/dist/tokens/z-index.mjs +23 -0
- package/dist/utils/cn.cjs +102 -0
- package/dist/utils/cn.d.cts +84 -0
- package/dist/utils/cn.d.ts +84 -0
- package/dist/{chunk-ZT3PCXDF.mjs → utils/cn.mjs} +14 -7
- package/dist/{chunk-33QEKXRQ.cjs → utils/contrast.cjs} +68 -38
- package/dist/utils/contrast.d.cts +209 -0
- package/dist/utils/contrast.d.ts +209 -0
- package/dist/{chunk-5NZDQWRV.mjs → utils/contrast.mjs} +27 -18
- package/dist/utils/focus-ring.cjs +81 -0
- package/dist/utils/focus-ring.d.cts +80 -0
- package/dist/utils/focus-ring.d.ts +80 -0
- package/dist/utils/focus-ring.mjs +47 -0
- package/dist/utils/index.cjs +107 -0
- package/dist/utils/index.d.cts +6 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.mjs +88 -0
- package/dist/utils/types.cjs +38 -0
- package/dist/utils/types.d.cts +187 -0
- package/dist/utils/types.d.ts +187 -0
- package/dist/utils/types.mjs +13 -0
- package/package.json +191 -191
- package/dist/chunk-2JFREULQ.cjs +0 -29
- package/dist/chunk-3EHT6IOA.cjs +0 -49
- package/dist/chunk-4ON3M3OM.cjs +0 -73
- package/dist/chunk-5TP7J7T4.cjs +0 -1766
- package/dist/chunk-A2DGHQL2.cjs +0 -21808
- package/dist/chunk-EQWESXRH.mjs +0 -1735
- package/dist/chunk-F4JJFWWU.cjs +0 -604
- package/dist/chunk-FUWXGHWQ.cjs +0 -468
- package/dist/chunk-MBYCK2JJ.mjs +0 -37
- package/dist/chunk-OHEH57BV.mjs +0 -455
- package/dist/chunk-XAIUX2YS.mjs +0 -21477
- package/dist/components.cjs +0 -1247
- package/dist/components.d.cts +0 -7881
- package/dist/components.d.ts +0 -7881
- package/dist/components.mjs +0 -6
- package/dist/motion.cjs +0 -264
- package/dist/motion.mjs +0 -3
- package/dist/primitives.cjs +0 -57
- package/dist/primitives.d.cts +0 -390
- package/dist/primitives.d.ts +0 -390
- package/dist/primitives.mjs +0 -4
- package/dist/theme.cjs +0 -131
- package/dist/theme.d.cts +0 -414
- package/dist/theme.d.ts +0 -414
- package/dist/theme.mjs +0 -6
- package/dist/tokens.cjs +0 -137
- package/dist/tokens.d.cts +0 -30
- package/dist/tokens.d.ts +0 -30
- package/dist/tokens.mjs +0 -4
- package/dist/utils.cjs +0 -164
- package/dist/utils.d.cts +0 -525
- package/dist/utils.d.ts +0 -525
- package/dist/utils.mjs +0 -3
|
@@ -115,6 +115,123 @@ declare const teal: {
|
|
|
115
115
|
readonly 900: "oklch(0.326 0.064 175.066)";
|
|
116
116
|
readonly 950: "oklch(0.232 0.051 175.066)";
|
|
117
117
|
};
|
|
118
|
+
declare const indigo: {
|
|
119
|
+
readonly 50: "oklch(0.962 0.018 272.314)";
|
|
120
|
+
readonly 100: "oklch(0.93 0.034 272.788)";
|
|
121
|
+
readonly 200: "oklch(0.87 0.065 274.039)";
|
|
122
|
+
readonly 300: "oklch(0.785 0.115 274.713)";
|
|
123
|
+
readonly 400: "oklch(0.673 0.182 276.935)";
|
|
124
|
+
readonly 500: "oklch(0.585 0.233 277.117)";
|
|
125
|
+
readonly 600: "oklch(0.511 0.262 276.966)";
|
|
126
|
+
readonly 700: "oklch(0.457 0.24 277.023)";
|
|
127
|
+
readonly 800: "oklch(0.398 0.195 277.366)";
|
|
128
|
+
readonly 900: "oklch(0.359 0.144 278.697)";
|
|
129
|
+
readonly 950: "oklch(0.257 0.09 281.288)";
|
|
130
|
+
};
|
|
131
|
+
declare const purple: {
|
|
132
|
+
readonly 50: "oklch(0.977 0.014 308.299)";
|
|
133
|
+
readonly 100: "oklch(0.946 0.033 307.174)";
|
|
134
|
+
readonly 200: "oklch(0.902 0.063 306.703)";
|
|
135
|
+
readonly 300: "oklch(0.827 0.119 306.383)";
|
|
136
|
+
readonly 400: "oklch(0.714 0.203 305.504)";
|
|
137
|
+
readonly 500: "oklch(0.627 0.265 303.9)";
|
|
138
|
+
readonly 600: "oklch(0.558 0.288 302.321)";
|
|
139
|
+
readonly 700: "oklch(0.496 0.265 301.924)";
|
|
140
|
+
readonly 800: "oklch(0.438 0.218 303.724)";
|
|
141
|
+
readonly 900: "oklch(0.381 0.176 304.987)";
|
|
142
|
+
readonly 950: "oklch(0.291 0.149 302.717)";
|
|
143
|
+
};
|
|
144
|
+
declare const pink: {
|
|
145
|
+
readonly 50: "oklch(0.971 0.014 343.198)";
|
|
146
|
+
readonly 100: "oklch(0.948 0.028 342.258)";
|
|
147
|
+
readonly 200: "oklch(0.899 0.061 343.231)";
|
|
148
|
+
readonly 300: "oklch(0.823 0.12 346.018)";
|
|
149
|
+
readonly 400: "oklch(0.718 0.202 349.761)";
|
|
150
|
+
readonly 500: "oklch(0.656 0.241 354.308)";
|
|
151
|
+
readonly 600: "oklch(0.592 0.249 0.584)";
|
|
152
|
+
readonly 700: "oklch(0.525 0.223 3.958)";
|
|
153
|
+
readonly 800: "oklch(0.459 0.187 3.815)";
|
|
154
|
+
readonly 900: "oklch(0.408 0.153 2.432)";
|
|
155
|
+
readonly 950: "oklch(0.284 0.109 3.907)";
|
|
156
|
+
};
|
|
157
|
+
declare const cyan: {
|
|
158
|
+
readonly 50: "oklch(0.967 0.019 200.873)";
|
|
159
|
+
readonly 100: "oklch(0.936 0.044 200.873)";
|
|
160
|
+
readonly 200: "oklch(0.886 0.085 207.693)";
|
|
161
|
+
readonly 300: "oklch(0.816 0.12 207.693)";
|
|
162
|
+
readonly 400: "oklch(0.718 0.144 213.806)";
|
|
163
|
+
readonly 500: "oklch(0.627 0.14 213.806)";
|
|
164
|
+
readonly 600: "oklch(0.532 0.128 216.632)";
|
|
165
|
+
readonly 700: "oklch(0.457 0.107 218.318)";
|
|
166
|
+
readonly 800: "oklch(0.393 0.089 218.318)";
|
|
167
|
+
readonly 900: "oklch(0.342 0.07 218.318)";
|
|
168
|
+
readonly 950: "oklch(0.254 0.058 218.318)";
|
|
169
|
+
};
|
|
170
|
+
declare const emerald: {
|
|
171
|
+
readonly 50: "oklch(0.979 0.021 166.113)";
|
|
172
|
+
readonly 100: "oklch(0.95 0.052 163.051)";
|
|
173
|
+
readonly 200: "oklch(0.905 0.093 164.15)";
|
|
174
|
+
readonly 300: "oklch(0.845 0.143 164.978)";
|
|
175
|
+
readonly 400: "oklch(0.765 0.177 163.223)";
|
|
176
|
+
readonly 500: "oklch(0.696 0.17 162.48)";
|
|
177
|
+
readonly 600: "oklch(0.596 0.145 163.225)";
|
|
178
|
+
readonly 700: "oklch(0.508 0.118 165.612)";
|
|
179
|
+
readonly 800: "oklch(0.432 0.095 166.913)";
|
|
180
|
+
readonly 900: "oklch(0.378 0.077 168.94)";
|
|
181
|
+
readonly 950: "oklch(0.262 0.051 172.552)";
|
|
182
|
+
};
|
|
183
|
+
declare const yellow: {
|
|
184
|
+
readonly 50: "oklch(0.987 0.026 102.212)";
|
|
185
|
+
readonly 100: "oklch(0.973 0.071 103.193)";
|
|
186
|
+
readonly 200: "oklch(0.945 0.129 101.726)";
|
|
187
|
+
readonly 300: "oklch(0.905 0.182 98.111)";
|
|
188
|
+
readonly 400: "oklch(0.852 0.199 91.936)";
|
|
189
|
+
readonly 500: "oklch(0.795 0.184 86.047)";
|
|
190
|
+
readonly 600: "oklch(0.681 0.162 75.834)";
|
|
191
|
+
readonly 700: "oklch(0.554 0.135 66.442)";
|
|
192
|
+
readonly 800: "oklch(0.476 0.114 61.907)";
|
|
193
|
+
readonly 900: "oklch(0.421 0.095 57.708)";
|
|
194
|
+
readonly 950: "oklch(0.286 0.066 53.813)";
|
|
195
|
+
};
|
|
196
|
+
declare const fuchsia: {
|
|
197
|
+
readonly 50: "oklch(0.977 0.017 320.058)";
|
|
198
|
+
readonly 100: "oklch(0.952 0.037 318.852)";
|
|
199
|
+
readonly 200: "oklch(0.903 0.076 319.62)";
|
|
200
|
+
readonly 300: "oklch(0.833 0.145 321.434)";
|
|
201
|
+
readonly 400: "oklch(0.74 0.238 322.16)";
|
|
202
|
+
readonly 500: "oklch(0.667 0.295 322.15)";
|
|
203
|
+
readonly 600: "oklch(0.591 0.293 322.896)";
|
|
204
|
+
readonly 700: "oklch(0.518 0.253 323.949)";
|
|
205
|
+
readonly 800: "oklch(0.452 0.211 324.591)";
|
|
206
|
+
readonly 900: "oklch(0.401 0.17 325.612)";
|
|
207
|
+
readonly 950: "oklch(0.293 0.136 325.661)";
|
|
208
|
+
};
|
|
209
|
+
declare const sky: {
|
|
210
|
+
readonly 50: "oklch(0.977 0.013 236.62)";
|
|
211
|
+
readonly 100: "oklch(0.951 0.026 236.824)";
|
|
212
|
+
readonly 200: "oklch(0.901 0.058 230.902)";
|
|
213
|
+
readonly 300: "oklch(0.828 0.111 230.318)";
|
|
214
|
+
readonly 400: "oklch(0.746 0.16 232.661)";
|
|
215
|
+
readonly 500: "oklch(0.685 0.169 237.323)";
|
|
216
|
+
readonly 600: "oklch(0.588 0.158 241.966)";
|
|
217
|
+
readonly 700: "oklch(0.5 0.134 242.749)";
|
|
218
|
+
readonly 800: "oklch(0.443 0.11 240.79)";
|
|
219
|
+
readonly 900: "oklch(0.391 0.09 240.876)";
|
|
220
|
+
readonly 950: "oklch(0.293 0.066 243.157)";
|
|
221
|
+
};
|
|
222
|
+
declare const lime: {
|
|
223
|
+
readonly 50: "oklch(0.986 0.031 120.757)";
|
|
224
|
+
readonly 100: "oklch(0.967 0.067 122.328)";
|
|
225
|
+
readonly 200: "oklch(0.938 0.127 124.321)";
|
|
226
|
+
readonly 300: "oklch(0.897 0.196 126.665)";
|
|
227
|
+
readonly 400: "oklch(0.841 0.238 128.85)";
|
|
228
|
+
readonly 500: "oklch(0.768 0.233 130.85)";
|
|
229
|
+
readonly 600: "oklch(0.648 0.2 131.684)";
|
|
230
|
+
readonly 700: "oklch(0.532 0.157 131.589)";
|
|
231
|
+
readonly 800: "oklch(0.453 0.124 130.933)";
|
|
232
|
+
readonly 900: "oklch(0.405 0.101 131.063)";
|
|
233
|
+
readonly 950: "oklch(0.274 0.072 132.109)";
|
|
234
|
+
};
|
|
118
235
|
declare const pure: {
|
|
119
236
|
readonly white: "oklch(1 0 0)";
|
|
120
237
|
readonly black: "oklch(0 0 0)";
|
|
@@ -390,77 +507,123 @@ declare const palettes: {
|
|
|
390
507
|
readonly 900: "oklch(0.326 0.064 175.066)";
|
|
391
508
|
readonly 950: "oklch(0.232 0.051 175.066)";
|
|
392
509
|
};
|
|
510
|
+
readonly indigo: {
|
|
511
|
+
readonly 50: "oklch(0.962 0.018 272.314)";
|
|
512
|
+
readonly 100: "oklch(0.93 0.034 272.788)";
|
|
513
|
+
readonly 200: "oklch(0.87 0.065 274.039)";
|
|
514
|
+
readonly 300: "oklch(0.785 0.115 274.713)";
|
|
515
|
+
readonly 400: "oklch(0.673 0.182 276.935)";
|
|
516
|
+
readonly 500: "oklch(0.585 0.233 277.117)";
|
|
517
|
+
readonly 600: "oklch(0.511 0.262 276.966)";
|
|
518
|
+
readonly 700: "oklch(0.457 0.24 277.023)";
|
|
519
|
+
readonly 800: "oklch(0.398 0.195 277.366)";
|
|
520
|
+
readonly 900: "oklch(0.359 0.144 278.697)";
|
|
521
|
+
readonly 950: "oklch(0.257 0.09 281.288)";
|
|
522
|
+
};
|
|
523
|
+
readonly purple: {
|
|
524
|
+
readonly 50: "oklch(0.977 0.014 308.299)";
|
|
525
|
+
readonly 100: "oklch(0.946 0.033 307.174)";
|
|
526
|
+
readonly 200: "oklch(0.902 0.063 306.703)";
|
|
527
|
+
readonly 300: "oklch(0.827 0.119 306.383)";
|
|
528
|
+
readonly 400: "oklch(0.714 0.203 305.504)";
|
|
529
|
+
readonly 500: "oklch(0.627 0.265 303.9)";
|
|
530
|
+
readonly 600: "oklch(0.558 0.288 302.321)";
|
|
531
|
+
readonly 700: "oklch(0.496 0.265 301.924)";
|
|
532
|
+
readonly 800: "oklch(0.438 0.218 303.724)";
|
|
533
|
+
readonly 900: "oklch(0.381 0.176 304.987)";
|
|
534
|
+
readonly 950: "oklch(0.291 0.149 302.717)";
|
|
535
|
+
};
|
|
536
|
+
readonly pink: {
|
|
537
|
+
readonly 50: "oklch(0.971 0.014 343.198)";
|
|
538
|
+
readonly 100: "oklch(0.948 0.028 342.258)";
|
|
539
|
+
readonly 200: "oklch(0.899 0.061 343.231)";
|
|
540
|
+
readonly 300: "oklch(0.823 0.12 346.018)";
|
|
541
|
+
readonly 400: "oklch(0.718 0.202 349.761)";
|
|
542
|
+
readonly 500: "oklch(0.656 0.241 354.308)";
|
|
543
|
+
readonly 600: "oklch(0.592 0.249 0.584)";
|
|
544
|
+
readonly 700: "oklch(0.525 0.223 3.958)";
|
|
545
|
+
readonly 800: "oklch(0.459 0.187 3.815)";
|
|
546
|
+
readonly 900: "oklch(0.408 0.153 2.432)";
|
|
547
|
+
readonly 950: "oklch(0.284 0.109 3.907)";
|
|
548
|
+
};
|
|
549
|
+
readonly cyan: {
|
|
550
|
+
readonly 50: "oklch(0.967 0.019 200.873)";
|
|
551
|
+
readonly 100: "oklch(0.936 0.044 200.873)";
|
|
552
|
+
readonly 200: "oklch(0.886 0.085 207.693)";
|
|
553
|
+
readonly 300: "oklch(0.816 0.12 207.693)";
|
|
554
|
+
readonly 400: "oklch(0.718 0.144 213.806)";
|
|
555
|
+
readonly 500: "oklch(0.627 0.14 213.806)";
|
|
556
|
+
readonly 600: "oklch(0.532 0.128 216.632)";
|
|
557
|
+
readonly 700: "oklch(0.457 0.107 218.318)";
|
|
558
|
+
readonly 800: "oklch(0.393 0.089 218.318)";
|
|
559
|
+
readonly 900: "oklch(0.342 0.07 218.318)";
|
|
560
|
+
readonly 950: "oklch(0.254 0.058 218.318)";
|
|
561
|
+
};
|
|
562
|
+
readonly emerald: {
|
|
563
|
+
readonly 50: "oklch(0.979 0.021 166.113)";
|
|
564
|
+
readonly 100: "oklch(0.95 0.052 163.051)";
|
|
565
|
+
readonly 200: "oklch(0.905 0.093 164.15)";
|
|
566
|
+
readonly 300: "oklch(0.845 0.143 164.978)";
|
|
567
|
+
readonly 400: "oklch(0.765 0.177 163.223)";
|
|
568
|
+
readonly 500: "oklch(0.696 0.17 162.48)";
|
|
569
|
+
readonly 600: "oklch(0.596 0.145 163.225)";
|
|
570
|
+
readonly 700: "oklch(0.508 0.118 165.612)";
|
|
571
|
+
readonly 800: "oklch(0.432 0.095 166.913)";
|
|
572
|
+
readonly 900: "oklch(0.378 0.077 168.94)";
|
|
573
|
+
readonly 950: "oklch(0.262 0.051 172.552)";
|
|
574
|
+
};
|
|
575
|
+
readonly yellow: {
|
|
576
|
+
readonly 50: "oklch(0.987 0.026 102.212)";
|
|
577
|
+
readonly 100: "oklch(0.973 0.071 103.193)";
|
|
578
|
+
readonly 200: "oklch(0.945 0.129 101.726)";
|
|
579
|
+
readonly 300: "oklch(0.905 0.182 98.111)";
|
|
580
|
+
readonly 400: "oklch(0.852 0.199 91.936)";
|
|
581
|
+
readonly 500: "oklch(0.795 0.184 86.047)";
|
|
582
|
+
readonly 600: "oklch(0.681 0.162 75.834)";
|
|
583
|
+
readonly 700: "oklch(0.554 0.135 66.442)";
|
|
584
|
+
readonly 800: "oklch(0.476 0.114 61.907)";
|
|
585
|
+
readonly 900: "oklch(0.421 0.095 57.708)";
|
|
586
|
+
readonly 950: "oklch(0.286 0.066 53.813)";
|
|
587
|
+
};
|
|
588
|
+
readonly fuchsia: {
|
|
589
|
+
readonly 50: "oklch(0.977 0.017 320.058)";
|
|
590
|
+
readonly 100: "oklch(0.952 0.037 318.852)";
|
|
591
|
+
readonly 200: "oklch(0.903 0.076 319.62)";
|
|
592
|
+
readonly 300: "oklch(0.833 0.145 321.434)";
|
|
593
|
+
readonly 400: "oklch(0.74 0.238 322.16)";
|
|
594
|
+
readonly 500: "oklch(0.667 0.295 322.15)";
|
|
595
|
+
readonly 600: "oklch(0.591 0.293 322.896)";
|
|
596
|
+
readonly 700: "oklch(0.518 0.253 323.949)";
|
|
597
|
+
readonly 800: "oklch(0.452 0.211 324.591)";
|
|
598
|
+
readonly 900: "oklch(0.401 0.17 325.612)";
|
|
599
|
+
readonly 950: "oklch(0.293 0.136 325.661)";
|
|
600
|
+
};
|
|
601
|
+
readonly sky: {
|
|
602
|
+
readonly 50: "oklch(0.977 0.013 236.62)";
|
|
603
|
+
readonly 100: "oklch(0.951 0.026 236.824)";
|
|
604
|
+
readonly 200: "oklch(0.901 0.058 230.902)";
|
|
605
|
+
readonly 300: "oklch(0.828 0.111 230.318)";
|
|
606
|
+
readonly 400: "oklch(0.746 0.16 232.661)";
|
|
607
|
+
readonly 500: "oklch(0.685 0.169 237.323)";
|
|
608
|
+
readonly 600: "oklch(0.588 0.158 241.966)";
|
|
609
|
+
readonly 700: "oklch(0.5 0.134 242.749)";
|
|
610
|
+
readonly 800: "oklch(0.443 0.11 240.79)";
|
|
611
|
+
readonly 900: "oklch(0.391 0.09 240.876)";
|
|
612
|
+
readonly 950: "oklch(0.293 0.066 243.157)";
|
|
613
|
+
};
|
|
614
|
+
readonly lime: {
|
|
615
|
+
readonly 50: "oklch(0.986 0.031 120.757)";
|
|
616
|
+
readonly 100: "oklch(0.967 0.067 122.328)";
|
|
617
|
+
readonly 200: "oklch(0.938 0.127 124.321)";
|
|
618
|
+
readonly 300: "oklch(0.897 0.196 126.665)";
|
|
619
|
+
readonly 400: "oklch(0.841 0.238 128.85)";
|
|
620
|
+
readonly 500: "oklch(0.768 0.233 130.85)";
|
|
621
|
+
readonly 600: "oklch(0.648 0.2 131.684)";
|
|
622
|
+
readonly 700: "oklch(0.532 0.157 131.589)";
|
|
623
|
+
readonly 800: "oklch(0.453 0.124 130.933)";
|
|
624
|
+
readonly 900: "oklch(0.405 0.101 131.063)";
|
|
625
|
+
readonly 950: "oklch(0.274 0.072 132.109)";
|
|
626
|
+
};
|
|
393
627
|
};
|
|
394
628
|
|
|
395
|
-
|
|
396
|
-
/** No rounding */
|
|
397
|
-
readonly none: "0px";
|
|
398
|
-
/** Barely perceptible — tags, micro elements */
|
|
399
|
-
readonly sm: "4px";
|
|
400
|
-
/** Default for buttons, inputs, cards */
|
|
401
|
-
readonly md: "6px";
|
|
402
|
-
/** Dialogs, sheets, popovers, dropdowns */
|
|
403
|
-
readonly lg: "8px";
|
|
404
|
-
/** Larger containers, modals */
|
|
405
|
-
readonly xl: "12px";
|
|
406
|
-
/** Full pill / circle — avatars, toggle pills */
|
|
407
|
-
readonly full: "9999px";
|
|
408
|
-
};
|
|
409
|
-
type Radius = keyof typeof radius;
|
|
410
|
-
type RadiusValue = (typeof radius)[Radius];
|
|
411
|
-
|
|
412
|
-
declare const shadow: {
|
|
413
|
-
/** No shadow — flush with the surface */
|
|
414
|
-
readonly none: "none";
|
|
415
|
-
/** Subtle lift — cards on hover, slightly raised surfaces */
|
|
416
|
-
readonly xs: "0 1px 2px 0 oklch(0 0 0 / 0.05)";
|
|
417
|
-
/** Default card elevation — raised cards, wells */
|
|
418
|
-
readonly sm: "0 1px 3px 0 oklch(0 0 0 / 0.1), 0 1px 2px -1px oklch(0 0 0 / 0.1)";
|
|
419
|
-
/** Dropdowns, autocomplete menus, select panels */
|
|
420
|
-
readonly md: "0 4px 6px -1px oklch(0 0 0 / 0.1), 0 2px 4px -2px oklch(0 0 0 / 0.1)";
|
|
421
|
-
/** Popovers, floating toolbars, sticky headers */
|
|
422
|
-
readonly lg: "0 10px 15px -3px oklch(0 0 0 / 0.1), 0 4px 6px -4px oklch(0 0 0 / 0.1)";
|
|
423
|
-
/** Dialogs, modals, command palettes */
|
|
424
|
-
readonly xl: "0 20px 25px -5px oklch(0 0 0 / 0.1), 0 8px 10px -6px oklch(0 0 0 / 0.1)";
|
|
425
|
-
/** Toast notifications, top-level overlays */
|
|
426
|
-
readonly "2xl": "0 25px 50px -12px oklch(0 0 0 / 0.25)";
|
|
427
|
-
/** Focus ring shadow — used alongside outline for focus indication */
|
|
428
|
-
readonly focusRing: "0 0 0 2px oklch(0.708 0 0 / 40%)";
|
|
429
|
-
};
|
|
430
|
-
declare const shadowDark: {
|
|
431
|
-
readonly none: "none";
|
|
432
|
-
readonly xs: "0 1px 2px 0 oklch(0 0 0 / 0.2)";
|
|
433
|
-
readonly sm: "0 1px 3px 0 oklch(0 0 0 / 0.3), 0 1px 2px -1px oklch(0 0 0 / 0.3)";
|
|
434
|
-
readonly md: "0 4px 6px -1px oklch(0 0 0 / 0.35), 0 2px 4px -2px oklch(0 0 0 / 0.3)";
|
|
435
|
-
readonly lg: "0 10px 15px -3px oklch(0 0 0 / 0.35), 0 4px 6px -4px oklch(0 0 0 / 0.3)";
|
|
436
|
-
readonly xl: "0 20px 25px -5px oklch(0 0 0 / 0.4), 0 8px 10px -6px oklch(0 0 0 / 0.35)";
|
|
437
|
-
readonly "2xl": "0 25px 50px -12px oklch(0 0 0 / 0.5)";
|
|
438
|
-
readonly focusRing: "0 0 0 2px oklch(0.556 0 0 / 50%)";
|
|
439
|
-
};
|
|
440
|
-
type Shadow = keyof typeof shadow;
|
|
441
|
-
type ShadowValue = (typeof shadow)[Shadow];
|
|
442
|
-
|
|
443
|
-
declare const zIndex: {
|
|
444
|
-
/** Default document flow — no explicit stacking */
|
|
445
|
-
readonly base: "0";
|
|
446
|
-
/** Sticky headers, floating action bars, pinned columns */
|
|
447
|
-
readonly sticky: "10";
|
|
448
|
-
/** Backdrop overlays behind modals and drawers */
|
|
449
|
-
readonly overlay: "40";
|
|
450
|
-
/** Modals, dialogs, sheets, drawers */
|
|
451
|
-
readonly modal: "50";
|
|
452
|
-
/** Dropdowns, select menus, context menus — renders above modals */
|
|
453
|
-
readonly dropdown: "60";
|
|
454
|
-
/** Popovers, comboboxes, date pickers — renders above modals */
|
|
455
|
-
readonly popover: "70";
|
|
456
|
-
/** Toast notifications — always visible above all content */
|
|
457
|
-
readonly toast: "80";
|
|
458
|
-
/** Tooltips — highest interactive z-layer */
|
|
459
|
-
readonly tooltip: "90";
|
|
460
|
-
/** Emergency escape hatch — use sparingly and document why */
|
|
461
|
-
readonly max: "9999";
|
|
462
|
-
};
|
|
463
|
-
type ZIndex = keyof typeof zIndex;
|
|
464
|
-
type ZIndexValue = (typeof zIndex)[ZIndex];
|
|
465
|
-
|
|
466
|
-
export { type ColorScale as C, type Radius as R, type SemanticColorKey as S, type ZIndex as Z, type RadiusValue as a, type SemanticColors as b, type Shadow as c, type ShadowValue as d, type ZIndexValue as e, amber as f, blue as g, brand as h, gray as i, green as j, pure as k, red as l, semanticLight as m, neutral as n, shadow as o, palettes as p, shadowDark as q, radius as r, semanticDark as s, slate as t, teal as u, zinc as v, zIndex as z };
|
|
629
|
+
export { type ColorScale, type SemanticColorKey, type SemanticColors, amber, blue, brand, cyan, emerald, fuchsia, gray, green, indigo, lime, neutral, palettes, pink, pure, purple, red, semanticDark, semanticLight, sky, slate, teal, yellow, zinc };
|
|
@@ -115,6 +115,123 @@ declare const teal: {
|
|
|
115
115
|
readonly 900: "oklch(0.326 0.064 175.066)";
|
|
116
116
|
readonly 950: "oklch(0.232 0.051 175.066)";
|
|
117
117
|
};
|
|
118
|
+
declare const indigo: {
|
|
119
|
+
readonly 50: "oklch(0.962 0.018 272.314)";
|
|
120
|
+
readonly 100: "oklch(0.93 0.034 272.788)";
|
|
121
|
+
readonly 200: "oklch(0.87 0.065 274.039)";
|
|
122
|
+
readonly 300: "oklch(0.785 0.115 274.713)";
|
|
123
|
+
readonly 400: "oklch(0.673 0.182 276.935)";
|
|
124
|
+
readonly 500: "oklch(0.585 0.233 277.117)";
|
|
125
|
+
readonly 600: "oklch(0.511 0.262 276.966)";
|
|
126
|
+
readonly 700: "oklch(0.457 0.24 277.023)";
|
|
127
|
+
readonly 800: "oklch(0.398 0.195 277.366)";
|
|
128
|
+
readonly 900: "oklch(0.359 0.144 278.697)";
|
|
129
|
+
readonly 950: "oklch(0.257 0.09 281.288)";
|
|
130
|
+
};
|
|
131
|
+
declare const purple: {
|
|
132
|
+
readonly 50: "oklch(0.977 0.014 308.299)";
|
|
133
|
+
readonly 100: "oklch(0.946 0.033 307.174)";
|
|
134
|
+
readonly 200: "oklch(0.902 0.063 306.703)";
|
|
135
|
+
readonly 300: "oklch(0.827 0.119 306.383)";
|
|
136
|
+
readonly 400: "oklch(0.714 0.203 305.504)";
|
|
137
|
+
readonly 500: "oklch(0.627 0.265 303.9)";
|
|
138
|
+
readonly 600: "oklch(0.558 0.288 302.321)";
|
|
139
|
+
readonly 700: "oklch(0.496 0.265 301.924)";
|
|
140
|
+
readonly 800: "oklch(0.438 0.218 303.724)";
|
|
141
|
+
readonly 900: "oklch(0.381 0.176 304.987)";
|
|
142
|
+
readonly 950: "oklch(0.291 0.149 302.717)";
|
|
143
|
+
};
|
|
144
|
+
declare const pink: {
|
|
145
|
+
readonly 50: "oklch(0.971 0.014 343.198)";
|
|
146
|
+
readonly 100: "oklch(0.948 0.028 342.258)";
|
|
147
|
+
readonly 200: "oklch(0.899 0.061 343.231)";
|
|
148
|
+
readonly 300: "oklch(0.823 0.12 346.018)";
|
|
149
|
+
readonly 400: "oklch(0.718 0.202 349.761)";
|
|
150
|
+
readonly 500: "oklch(0.656 0.241 354.308)";
|
|
151
|
+
readonly 600: "oklch(0.592 0.249 0.584)";
|
|
152
|
+
readonly 700: "oklch(0.525 0.223 3.958)";
|
|
153
|
+
readonly 800: "oklch(0.459 0.187 3.815)";
|
|
154
|
+
readonly 900: "oklch(0.408 0.153 2.432)";
|
|
155
|
+
readonly 950: "oklch(0.284 0.109 3.907)";
|
|
156
|
+
};
|
|
157
|
+
declare const cyan: {
|
|
158
|
+
readonly 50: "oklch(0.967 0.019 200.873)";
|
|
159
|
+
readonly 100: "oklch(0.936 0.044 200.873)";
|
|
160
|
+
readonly 200: "oklch(0.886 0.085 207.693)";
|
|
161
|
+
readonly 300: "oklch(0.816 0.12 207.693)";
|
|
162
|
+
readonly 400: "oklch(0.718 0.144 213.806)";
|
|
163
|
+
readonly 500: "oklch(0.627 0.14 213.806)";
|
|
164
|
+
readonly 600: "oklch(0.532 0.128 216.632)";
|
|
165
|
+
readonly 700: "oklch(0.457 0.107 218.318)";
|
|
166
|
+
readonly 800: "oklch(0.393 0.089 218.318)";
|
|
167
|
+
readonly 900: "oklch(0.342 0.07 218.318)";
|
|
168
|
+
readonly 950: "oklch(0.254 0.058 218.318)";
|
|
169
|
+
};
|
|
170
|
+
declare const emerald: {
|
|
171
|
+
readonly 50: "oklch(0.979 0.021 166.113)";
|
|
172
|
+
readonly 100: "oklch(0.95 0.052 163.051)";
|
|
173
|
+
readonly 200: "oklch(0.905 0.093 164.15)";
|
|
174
|
+
readonly 300: "oklch(0.845 0.143 164.978)";
|
|
175
|
+
readonly 400: "oklch(0.765 0.177 163.223)";
|
|
176
|
+
readonly 500: "oklch(0.696 0.17 162.48)";
|
|
177
|
+
readonly 600: "oklch(0.596 0.145 163.225)";
|
|
178
|
+
readonly 700: "oklch(0.508 0.118 165.612)";
|
|
179
|
+
readonly 800: "oklch(0.432 0.095 166.913)";
|
|
180
|
+
readonly 900: "oklch(0.378 0.077 168.94)";
|
|
181
|
+
readonly 950: "oklch(0.262 0.051 172.552)";
|
|
182
|
+
};
|
|
183
|
+
declare const yellow: {
|
|
184
|
+
readonly 50: "oklch(0.987 0.026 102.212)";
|
|
185
|
+
readonly 100: "oklch(0.973 0.071 103.193)";
|
|
186
|
+
readonly 200: "oklch(0.945 0.129 101.726)";
|
|
187
|
+
readonly 300: "oklch(0.905 0.182 98.111)";
|
|
188
|
+
readonly 400: "oklch(0.852 0.199 91.936)";
|
|
189
|
+
readonly 500: "oklch(0.795 0.184 86.047)";
|
|
190
|
+
readonly 600: "oklch(0.681 0.162 75.834)";
|
|
191
|
+
readonly 700: "oklch(0.554 0.135 66.442)";
|
|
192
|
+
readonly 800: "oklch(0.476 0.114 61.907)";
|
|
193
|
+
readonly 900: "oklch(0.421 0.095 57.708)";
|
|
194
|
+
readonly 950: "oklch(0.286 0.066 53.813)";
|
|
195
|
+
};
|
|
196
|
+
declare const fuchsia: {
|
|
197
|
+
readonly 50: "oklch(0.977 0.017 320.058)";
|
|
198
|
+
readonly 100: "oklch(0.952 0.037 318.852)";
|
|
199
|
+
readonly 200: "oklch(0.903 0.076 319.62)";
|
|
200
|
+
readonly 300: "oklch(0.833 0.145 321.434)";
|
|
201
|
+
readonly 400: "oklch(0.74 0.238 322.16)";
|
|
202
|
+
readonly 500: "oklch(0.667 0.295 322.15)";
|
|
203
|
+
readonly 600: "oklch(0.591 0.293 322.896)";
|
|
204
|
+
readonly 700: "oklch(0.518 0.253 323.949)";
|
|
205
|
+
readonly 800: "oklch(0.452 0.211 324.591)";
|
|
206
|
+
readonly 900: "oklch(0.401 0.17 325.612)";
|
|
207
|
+
readonly 950: "oklch(0.293 0.136 325.661)";
|
|
208
|
+
};
|
|
209
|
+
declare const sky: {
|
|
210
|
+
readonly 50: "oklch(0.977 0.013 236.62)";
|
|
211
|
+
readonly 100: "oklch(0.951 0.026 236.824)";
|
|
212
|
+
readonly 200: "oklch(0.901 0.058 230.902)";
|
|
213
|
+
readonly 300: "oklch(0.828 0.111 230.318)";
|
|
214
|
+
readonly 400: "oklch(0.746 0.16 232.661)";
|
|
215
|
+
readonly 500: "oklch(0.685 0.169 237.323)";
|
|
216
|
+
readonly 600: "oklch(0.588 0.158 241.966)";
|
|
217
|
+
readonly 700: "oklch(0.5 0.134 242.749)";
|
|
218
|
+
readonly 800: "oklch(0.443 0.11 240.79)";
|
|
219
|
+
readonly 900: "oklch(0.391 0.09 240.876)";
|
|
220
|
+
readonly 950: "oklch(0.293 0.066 243.157)";
|
|
221
|
+
};
|
|
222
|
+
declare const lime: {
|
|
223
|
+
readonly 50: "oklch(0.986 0.031 120.757)";
|
|
224
|
+
readonly 100: "oklch(0.967 0.067 122.328)";
|
|
225
|
+
readonly 200: "oklch(0.938 0.127 124.321)";
|
|
226
|
+
readonly 300: "oklch(0.897 0.196 126.665)";
|
|
227
|
+
readonly 400: "oklch(0.841 0.238 128.85)";
|
|
228
|
+
readonly 500: "oklch(0.768 0.233 130.85)";
|
|
229
|
+
readonly 600: "oklch(0.648 0.2 131.684)";
|
|
230
|
+
readonly 700: "oklch(0.532 0.157 131.589)";
|
|
231
|
+
readonly 800: "oklch(0.453 0.124 130.933)";
|
|
232
|
+
readonly 900: "oklch(0.405 0.101 131.063)";
|
|
233
|
+
readonly 950: "oklch(0.274 0.072 132.109)";
|
|
234
|
+
};
|
|
118
235
|
declare const pure: {
|
|
119
236
|
readonly white: "oklch(1 0 0)";
|
|
120
237
|
readonly black: "oklch(0 0 0)";
|
|
@@ -390,77 +507,123 @@ declare const palettes: {
|
|
|
390
507
|
readonly 900: "oklch(0.326 0.064 175.066)";
|
|
391
508
|
readonly 950: "oklch(0.232 0.051 175.066)";
|
|
392
509
|
};
|
|
510
|
+
readonly indigo: {
|
|
511
|
+
readonly 50: "oklch(0.962 0.018 272.314)";
|
|
512
|
+
readonly 100: "oklch(0.93 0.034 272.788)";
|
|
513
|
+
readonly 200: "oklch(0.87 0.065 274.039)";
|
|
514
|
+
readonly 300: "oklch(0.785 0.115 274.713)";
|
|
515
|
+
readonly 400: "oklch(0.673 0.182 276.935)";
|
|
516
|
+
readonly 500: "oklch(0.585 0.233 277.117)";
|
|
517
|
+
readonly 600: "oklch(0.511 0.262 276.966)";
|
|
518
|
+
readonly 700: "oklch(0.457 0.24 277.023)";
|
|
519
|
+
readonly 800: "oklch(0.398 0.195 277.366)";
|
|
520
|
+
readonly 900: "oklch(0.359 0.144 278.697)";
|
|
521
|
+
readonly 950: "oklch(0.257 0.09 281.288)";
|
|
522
|
+
};
|
|
523
|
+
readonly purple: {
|
|
524
|
+
readonly 50: "oklch(0.977 0.014 308.299)";
|
|
525
|
+
readonly 100: "oklch(0.946 0.033 307.174)";
|
|
526
|
+
readonly 200: "oklch(0.902 0.063 306.703)";
|
|
527
|
+
readonly 300: "oklch(0.827 0.119 306.383)";
|
|
528
|
+
readonly 400: "oklch(0.714 0.203 305.504)";
|
|
529
|
+
readonly 500: "oklch(0.627 0.265 303.9)";
|
|
530
|
+
readonly 600: "oklch(0.558 0.288 302.321)";
|
|
531
|
+
readonly 700: "oklch(0.496 0.265 301.924)";
|
|
532
|
+
readonly 800: "oklch(0.438 0.218 303.724)";
|
|
533
|
+
readonly 900: "oklch(0.381 0.176 304.987)";
|
|
534
|
+
readonly 950: "oklch(0.291 0.149 302.717)";
|
|
535
|
+
};
|
|
536
|
+
readonly pink: {
|
|
537
|
+
readonly 50: "oklch(0.971 0.014 343.198)";
|
|
538
|
+
readonly 100: "oklch(0.948 0.028 342.258)";
|
|
539
|
+
readonly 200: "oklch(0.899 0.061 343.231)";
|
|
540
|
+
readonly 300: "oklch(0.823 0.12 346.018)";
|
|
541
|
+
readonly 400: "oklch(0.718 0.202 349.761)";
|
|
542
|
+
readonly 500: "oklch(0.656 0.241 354.308)";
|
|
543
|
+
readonly 600: "oklch(0.592 0.249 0.584)";
|
|
544
|
+
readonly 700: "oklch(0.525 0.223 3.958)";
|
|
545
|
+
readonly 800: "oklch(0.459 0.187 3.815)";
|
|
546
|
+
readonly 900: "oklch(0.408 0.153 2.432)";
|
|
547
|
+
readonly 950: "oklch(0.284 0.109 3.907)";
|
|
548
|
+
};
|
|
549
|
+
readonly cyan: {
|
|
550
|
+
readonly 50: "oklch(0.967 0.019 200.873)";
|
|
551
|
+
readonly 100: "oklch(0.936 0.044 200.873)";
|
|
552
|
+
readonly 200: "oklch(0.886 0.085 207.693)";
|
|
553
|
+
readonly 300: "oklch(0.816 0.12 207.693)";
|
|
554
|
+
readonly 400: "oklch(0.718 0.144 213.806)";
|
|
555
|
+
readonly 500: "oklch(0.627 0.14 213.806)";
|
|
556
|
+
readonly 600: "oklch(0.532 0.128 216.632)";
|
|
557
|
+
readonly 700: "oklch(0.457 0.107 218.318)";
|
|
558
|
+
readonly 800: "oklch(0.393 0.089 218.318)";
|
|
559
|
+
readonly 900: "oklch(0.342 0.07 218.318)";
|
|
560
|
+
readonly 950: "oklch(0.254 0.058 218.318)";
|
|
561
|
+
};
|
|
562
|
+
readonly emerald: {
|
|
563
|
+
readonly 50: "oklch(0.979 0.021 166.113)";
|
|
564
|
+
readonly 100: "oklch(0.95 0.052 163.051)";
|
|
565
|
+
readonly 200: "oklch(0.905 0.093 164.15)";
|
|
566
|
+
readonly 300: "oklch(0.845 0.143 164.978)";
|
|
567
|
+
readonly 400: "oklch(0.765 0.177 163.223)";
|
|
568
|
+
readonly 500: "oklch(0.696 0.17 162.48)";
|
|
569
|
+
readonly 600: "oklch(0.596 0.145 163.225)";
|
|
570
|
+
readonly 700: "oklch(0.508 0.118 165.612)";
|
|
571
|
+
readonly 800: "oklch(0.432 0.095 166.913)";
|
|
572
|
+
readonly 900: "oklch(0.378 0.077 168.94)";
|
|
573
|
+
readonly 950: "oklch(0.262 0.051 172.552)";
|
|
574
|
+
};
|
|
575
|
+
readonly yellow: {
|
|
576
|
+
readonly 50: "oklch(0.987 0.026 102.212)";
|
|
577
|
+
readonly 100: "oklch(0.973 0.071 103.193)";
|
|
578
|
+
readonly 200: "oklch(0.945 0.129 101.726)";
|
|
579
|
+
readonly 300: "oklch(0.905 0.182 98.111)";
|
|
580
|
+
readonly 400: "oklch(0.852 0.199 91.936)";
|
|
581
|
+
readonly 500: "oklch(0.795 0.184 86.047)";
|
|
582
|
+
readonly 600: "oklch(0.681 0.162 75.834)";
|
|
583
|
+
readonly 700: "oklch(0.554 0.135 66.442)";
|
|
584
|
+
readonly 800: "oklch(0.476 0.114 61.907)";
|
|
585
|
+
readonly 900: "oklch(0.421 0.095 57.708)";
|
|
586
|
+
readonly 950: "oklch(0.286 0.066 53.813)";
|
|
587
|
+
};
|
|
588
|
+
readonly fuchsia: {
|
|
589
|
+
readonly 50: "oklch(0.977 0.017 320.058)";
|
|
590
|
+
readonly 100: "oklch(0.952 0.037 318.852)";
|
|
591
|
+
readonly 200: "oklch(0.903 0.076 319.62)";
|
|
592
|
+
readonly 300: "oklch(0.833 0.145 321.434)";
|
|
593
|
+
readonly 400: "oklch(0.74 0.238 322.16)";
|
|
594
|
+
readonly 500: "oklch(0.667 0.295 322.15)";
|
|
595
|
+
readonly 600: "oklch(0.591 0.293 322.896)";
|
|
596
|
+
readonly 700: "oklch(0.518 0.253 323.949)";
|
|
597
|
+
readonly 800: "oklch(0.452 0.211 324.591)";
|
|
598
|
+
readonly 900: "oklch(0.401 0.17 325.612)";
|
|
599
|
+
readonly 950: "oklch(0.293 0.136 325.661)";
|
|
600
|
+
};
|
|
601
|
+
readonly sky: {
|
|
602
|
+
readonly 50: "oklch(0.977 0.013 236.62)";
|
|
603
|
+
readonly 100: "oklch(0.951 0.026 236.824)";
|
|
604
|
+
readonly 200: "oklch(0.901 0.058 230.902)";
|
|
605
|
+
readonly 300: "oklch(0.828 0.111 230.318)";
|
|
606
|
+
readonly 400: "oklch(0.746 0.16 232.661)";
|
|
607
|
+
readonly 500: "oklch(0.685 0.169 237.323)";
|
|
608
|
+
readonly 600: "oklch(0.588 0.158 241.966)";
|
|
609
|
+
readonly 700: "oklch(0.5 0.134 242.749)";
|
|
610
|
+
readonly 800: "oklch(0.443 0.11 240.79)";
|
|
611
|
+
readonly 900: "oklch(0.391 0.09 240.876)";
|
|
612
|
+
readonly 950: "oklch(0.293 0.066 243.157)";
|
|
613
|
+
};
|
|
614
|
+
readonly lime: {
|
|
615
|
+
readonly 50: "oklch(0.986 0.031 120.757)";
|
|
616
|
+
readonly 100: "oklch(0.967 0.067 122.328)";
|
|
617
|
+
readonly 200: "oklch(0.938 0.127 124.321)";
|
|
618
|
+
readonly 300: "oklch(0.897 0.196 126.665)";
|
|
619
|
+
readonly 400: "oklch(0.841 0.238 128.85)";
|
|
620
|
+
readonly 500: "oklch(0.768 0.233 130.85)";
|
|
621
|
+
readonly 600: "oklch(0.648 0.2 131.684)";
|
|
622
|
+
readonly 700: "oklch(0.532 0.157 131.589)";
|
|
623
|
+
readonly 800: "oklch(0.453 0.124 130.933)";
|
|
624
|
+
readonly 900: "oklch(0.405 0.101 131.063)";
|
|
625
|
+
readonly 950: "oklch(0.274 0.072 132.109)";
|
|
626
|
+
};
|
|
393
627
|
};
|
|
394
628
|
|
|
395
|
-
|
|
396
|
-
/** No rounding */
|
|
397
|
-
readonly none: "0px";
|
|
398
|
-
/** Barely perceptible — tags, micro elements */
|
|
399
|
-
readonly sm: "4px";
|
|
400
|
-
/** Default for buttons, inputs, cards */
|
|
401
|
-
readonly md: "6px";
|
|
402
|
-
/** Dialogs, sheets, popovers, dropdowns */
|
|
403
|
-
readonly lg: "8px";
|
|
404
|
-
/** Larger containers, modals */
|
|
405
|
-
readonly xl: "12px";
|
|
406
|
-
/** Full pill / circle — avatars, toggle pills */
|
|
407
|
-
readonly full: "9999px";
|
|
408
|
-
};
|
|
409
|
-
type Radius = keyof typeof radius;
|
|
410
|
-
type RadiusValue = (typeof radius)[Radius];
|
|
411
|
-
|
|
412
|
-
declare const shadow: {
|
|
413
|
-
/** No shadow — flush with the surface */
|
|
414
|
-
readonly none: "none";
|
|
415
|
-
/** Subtle lift — cards on hover, slightly raised surfaces */
|
|
416
|
-
readonly xs: "0 1px 2px 0 oklch(0 0 0 / 0.05)";
|
|
417
|
-
/** Default card elevation — raised cards, wells */
|
|
418
|
-
readonly sm: "0 1px 3px 0 oklch(0 0 0 / 0.1), 0 1px 2px -1px oklch(0 0 0 / 0.1)";
|
|
419
|
-
/** Dropdowns, autocomplete menus, select panels */
|
|
420
|
-
readonly md: "0 4px 6px -1px oklch(0 0 0 / 0.1), 0 2px 4px -2px oklch(0 0 0 / 0.1)";
|
|
421
|
-
/** Popovers, floating toolbars, sticky headers */
|
|
422
|
-
readonly lg: "0 10px 15px -3px oklch(0 0 0 / 0.1), 0 4px 6px -4px oklch(0 0 0 / 0.1)";
|
|
423
|
-
/** Dialogs, modals, command palettes */
|
|
424
|
-
readonly xl: "0 20px 25px -5px oklch(0 0 0 / 0.1), 0 8px 10px -6px oklch(0 0 0 / 0.1)";
|
|
425
|
-
/** Toast notifications, top-level overlays */
|
|
426
|
-
readonly "2xl": "0 25px 50px -12px oklch(0 0 0 / 0.25)";
|
|
427
|
-
/** Focus ring shadow — used alongside outline for focus indication */
|
|
428
|
-
readonly focusRing: "0 0 0 2px oklch(0.708 0 0 / 40%)";
|
|
429
|
-
};
|
|
430
|
-
declare const shadowDark: {
|
|
431
|
-
readonly none: "none";
|
|
432
|
-
readonly xs: "0 1px 2px 0 oklch(0 0 0 / 0.2)";
|
|
433
|
-
readonly sm: "0 1px 3px 0 oklch(0 0 0 / 0.3), 0 1px 2px -1px oklch(0 0 0 / 0.3)";
|
|
434
|
-
readonly md: "0 4px 6px -1px oklch(0 0 0 / 0.35), 0 2px 4px -2px oklch(0 0 0 / 0.3)";
|
|
435
|
-
readonly lg: "0 10px 15px -3px oklch(0 0 0 / 0.35), 0 4px 6px -4px oklch(0 0 0 / 0.3)";
|
|
436
|
-
readonly xl: "0 20px 25px -5px oklch(0 0 0 / 0.4), 0 8px 10px -6px oklch(0 0 0 / 0.35)";
|
|
437
|
-
readonly "2xl": "0 25px 50px -12px oklch(0 0 0 / 0.5)";
|
|
438
|
-
readonly focusRing: "0 0 0 2px oklch(0.556 0 0 / 50%)";
|
|
439
|
-
};
|
|
440
|
-
type Shadow = keyof typeof shadow;
|
|
441
|
-
type ShadowValue = (typeof shadow)[Shadow];
|
|
442
|
-
|
|
443
|
-
declare const zIndex: {
|
|
444
|
-
/** Default document flow — no explicit stacking */
|
|
445
|
-
readonly base: "0";
|
|
446
|
-
/** Sticky headers, floating action bars, pinned columns */
|
|
447
|
-
readonly sticky: "10";
|
|
448
|
-
/** Backdrop overlays behind modals and drawers */
|
|
449
|
-
readonly overlay: "40";
|
|
450
|
-
/** Modals, dialogs, sheets, drawers */
|
|
451
|
-
readonly modal: "50";
|
|
452
|
-
/** Dropdowns, select menus, context menus — renders above modals */
|
|
453
|
-
readonly dropdown: "60";
|
|
454
|
-
/** Popovers, comboboxes, date pickers — renders above modals */
|
|
455
|
-
readonly popover: "70";
|
|
456
|
-
/** Toast notifications — always visible above all content */
|
|
457
|
-
readonly toast: "80";
|
|
458
|
-
/** Tooltips — highest interactive z-layer */
|
|
459
|
-
readonly tooltip: "90";
|
|
460
|
-
/** Emergency escape hatch — use sparingly and document why */
|
|
461
|
-
readonly max: "9999";
|
|
462
|
-
};
|
|
463
|
-
type ZIndex = keyof typeof zIndex;
|
|
464
|
-
type ZIndexValue = (typeof zIndex)[ZIndex];
|
|
465
|
-
|
|
466
|
-
export { type ColorScale as C, type Radius as R, type SemanticColorKey as S, type ZIndex as Z, type RadiusValue as a, type SemanticColors as b, type Shadow as c, type ShadowValue as d, type ZIndexValue as e, amber as f, blue as g, brand as h, gray as i, green as j, pure as k, red as l, semanticLight as m, neutral as n, shadow as o, palettes as p, shadowDark as q, radius as r, semanticDark as s, slate as t, teal as u, zinc as v, zIndex as z };
|
|
629
|
+
export { type ColorScale, type SemanticColorKey, type SemanticColors, amber, blue, brand, cyan, emerald, fuchsia, gray, green, indigo, lime, neutral, palettes, pink, pure, purple, red, semanticDark, semanticLight, sky, slate, teal, yellow, zinc };
|