@opencode-ai/ui 0.0.0 → 1.17.13
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/LICENSE +21 -0
- package/dist/components/accordion.d.ts +24 -0
- package/dist/components/animated-number.d.ts +4 -0
- package/dist/components/app-icon.d.ts +6 -0
- package/dist/components/app-icons/types.d.ts +2 -0
- package/dist/components/avatar.d.ts +9 -0
- package/dist/components/button.d.ts +9 -0
- package/dist/components/card.d.ts +22 -0
- package/dist/components/checkbox.d.ts +8 -0
- package/dist/components/collapsible.d.ts +17 -0
- package/dist/components/context-menu.d.ts +80 -0
- package/dist/components/dialog.d.ts +12 -0
- package/dist/components/diff-changes.d.ts +11 -0
- package/dist/components/dock-surface.d.ts +7 -0
- package/dist/components/dropdown-menu.d.ts +80 -0
- package/dist/components/favicon.d.ts +1 -0
- package/dist/components/file-icon.d.ts +12 -0
- package/dist/components/file-icons/types.d.ts +2 -0
- package/dist/components/font.d.ts +1 -0
- package/dist/components/hover-card.d.ts +9 -0
- package/dist/components/icon-button.d.ts +10 -0
- package/dist/components/icon.d.ts +104 -0
- package/dist/components/image-preview.d.ts +5 -0
- package/dist/components/inline-input.d.ts +5 -0
- package/dist/components/keybind.d.ts +6 -0
- package/dist/components/list.d.ts +45 -0
- package/dist/components/logo.d.ts +8 -0
- package/dist/components/motion-spring.d.ts +4 -0
- package/dist/components/popover.d.ts +14 -0
- package/dist/components/progress-circle.d.ts +7 -0
- package/dist/components/progress.d.ts +7 -0
- package/dist/components/provider-icon.d.ts +5 -0
- package/dist/components/provider-icons/types.d.ts +2 -0
- package/dist/components/radio-group.d.ts +16 -0
- package/dist/components/resize-handle.d.ts +12 -0
- package/dist/components/scroll-view.d.ts +15 -0
- package/dist/components/select.d.ts +21 -0
- package/dist/components/spinner.d.ts +6 -0
- package/dist/components/sticky-accordion-header.d.ts +5 -0
- package/dist/components/switch.d.ts +7 -0
- package/dist/components/tabs.d.ts +32 -0
- package/dist/components/tag.d.ts +5 -0
- package/dist/components/text-field.d.ts +13 -0
- package/dist/components/text-reveal.d.ts +13 -0
- package/dist/components/text-shimmer.d.ts +8 -0
- package/dist/components/text-strikethrough.d.ts +11 -0
- package/dist/components/toast.d.ts +56 -0
- package/dist/components/tooltip.d.ts +17 -0
- package/dist/components/typewriter.d.ts +6 -0
- package/dist/context/dialog.d.ts +18 -0
- package/dist/context/file.d.ts +5 -0
- package/dist/context/helper.d.ts +14 -0
- package/dist/context/i18n.d.ts +12 -0
- package/dist/context/index.d.ts +4 -0
- package/dist/context/marked.d.ts +9 -0
- package/dist/context/worker-pool.d.ts +9 -0
- package/dist/hooks/create-auto-scroll.d.ts +17 -0
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/use-filtered-list.d.ts +39 -0
- package/dist/i18n/ar.d.ts +148 -0
- package/dist/i18n/br.d.ts +148 -0
- package/dist/i18n/bs.d.ts +148 -0
- package/dist/i18n/da.d.ts +148 -0
- package/dist/i18n/de.d.ts +148 -0
- package/dist/i18n/en.d.ts +1 -0
- package/dist/i18n/es.d.ts +148 -0
- package/dist/i18n/fr.d.ts +148 -0
- package/dist/i18n/ja.d.ts +148 -0
- package/dist/i18n/ko.d.ts +148 -0
- package/dist/i18n/no.d.ts +4 -0
- package/dist/i18n/pl.d.ts +148 -0
- package/dist/i18n/ru.d.ts +148 -0
- package/dist/i18n/th.d.ts +148 -0
- package/dist/i18n/tr.d.ts +148 -0
- package/dist/i18n/uk.d.ts +1 -0
- package/dist/i18n/zh.d.ts +148 -0
- package/dist/i18n/zht.d.ts +148 -0
- package/dist/storybook/fixtures.d.ts +19 -0
- package/dist/storybook/scaffold.d.ts +16 -0
- package/dist/theme/color.d.ts +30 -0
- package/dist/theme/context.d.ts +21 -0
- package/dist/theme/default-themes.d.ts +39 -0
- package/dist/theme/index.d.ts +7 -0
- package/dist/theme/loader.d.ts +6 -0
- package/dist/theme/resolve.d.ts +7 -0
- package/dist/theme/types.d.ts +56 -0
- package/dist/theme/v2/avatar.d.ts +5 -0
- package/dist/theme/v2/default-primitives.d.ts +3 -0
- package/dist/theme/v2/foreground.d.ts +2 -0
- package/dist/theme/v2/mapping.d.ts +3 -0
- package/dist/theme/v2/resolve.d.ts +9 -0
- package/dist/v2/components/accordion-v2.d.ts +26 -0
- package/dist/v2/components/avatar-v2.d.ts +11 -0
- package/dist/v2/components/badge-v2.d.ts +5 -0
- package/dist/v2/components/button-v2.d.ts +10 -0
- package/dist/v2/components/checkbox-v2.d.ts +10 -0
- package/dist/v2/components/dialog-v2.d.ts +26 -0
- package/dist/v2/components/diff-changes-v2.d.ts +11 -0
- package/dist/v2/components/divider-v2.d.ts +5 -0
- package/dist/v2/components/field-v2.d.ts +28 -0
- package/dist/v2/components/icon-button-v2.d.ts +11 -0
- package/dist/v2/components/icon.d.ts +121 -0
- package/dist/v2/components/inline-input-v2.d.ts +21 -0
- package/dist/v2/components/keybind-v2.d.ts +7 -0
- package/dist/v2/components/line-comment-v2.d.ts +28 -0
- package/dist/v2/components/loader-v2.d.ts +3 -0
- package/dist/v2/components/menu-v2.d.ts +52 -0
- package/dist/v2/components/progress-circle-v2.d.ts +8 -0
- package/dist/v2/components/project-avatar-v2.d.ts +11 -0
- package/dist/v2/components/radio-v2.d.ts +16 -0
- package/dist/v2/components/segmented-control-v2.d.ts +21 -0
- package/dist/v2/components/select-v2.d.ts +24 -0
- package/dist/v2/components/switch-v2.d.ts +7 -0
- package/dist/v2/components/tab-state-indicator.d.ts +2 -0
- package/dist/v2/components/tabs-v2.d.ts +34 -0
- package/dist/v2/components/text-input-v2.d.ts +17 -0
- package/dist/v2/components/text-shimmer-v2.d.ts +9 -0
- package/dist/v2/components/textarea-v2.d.ts +7 -0
- package/dist/v2/components/toast-v2.d.ts +48 -0
- package/dist/v2/components/tooltip-v2.d.ts +13 -0
- package/dist/v2/components/wordmark-v2.d.ts +2 -0
- package/package.json +148 -6
- package/src/assets/audio/alert-01.aac +0 -0
- package/src/assets/audio/alert-01.mp3 +0 -0
- package/src/assets/audio/alert-02.aac +0 -0
- package/src/assets/audio/alert-02.mp3 +0 -0
- package/src/assets/audio/alert-03.aac +0 -0
- package/src/assets/audio/alert-03.mp3 +0 -0
- package/src/assets/audio/alert-04.aac +0 -0
- package/src/assets/audio/alert-04.mp3 +0 -0
- package/src/assets/audio/alert-05.aac +0 -0
- package/src/assets/audio/alert-05.mp3 +0 -0
- package/src/assets/audio/alert-06.aac +0 -0
- package/src/assets/audio/alert-06.mp3 +0 -0
- package/src/assets/audio/alert-07.aac +0 -0
- package/src/assets/audio/alert-07.mp3 +0 -0
- package/src/assets/audio/alert-08.aac +0 -0
- package/src/assets/audio/alert-08.mp3 +0 -0
- package/src/assets/audio/alert-09.aac +0 -0
- package/src/assets/audio/alert-09.mp3 +0 -0
- package/src/assets/audio/alert-10.aac +0 -0
- package/src/assets/audio/alert-10.mp3 +0 -0
- package/src/assets/audio/bip-bop-01.aac +0 -0
- package/src/assets/audio/bip-bop-01.mp3 +0 -0
- package/src/assets/audio/bip-bop-02.aac +0 -0
- package/src/assets/audio/bip-bop-02.mp3 +0 -0
- package/src/assets/audio/bip-bop-03.aac +0 -0
- package/src/assets/audio/bip-bop-03.mp3 +0 -0
- package/src/assets/audio/bip-bop-04.aac +0 -0
- package/src/assets/audio/bip-bop-04.mp3 +0 -0
- package/src/assets/audio/bip-bop-05.aac +0 -0
- package/src/assets/audio/bip-bop-05.mp3 +0 -0
- package/src/assets/audio/bip-bop-06.aac +0 -0
- package/src/assets/audio/bip-bop-06.mp3 +0 -0
- package/src/assets/audio/bip-bop-07.aac +0 -0
- package/src/assets/audio/bip-bop-07.mp3 +0 -0
- package/src/assets/audio/bip-bop-08.aac +0 -0
- package/src/assets/audio/bip-bop-08.mp3 +0 -0
- package/src/assets/audio/bip-bop-09.aac +0 -0
- package/src/assets/audio/bip-bop-09.mp3 +0 -0
- package/src/assets/audio/bip-bop-10.aac +0 -0
- package/src/assets/audio/bip-bop-10.mp3 +0 -0
- package/src/assets/audio/nope-01.aac +0 -0
- package/src/assets/audio/nope-01.mp3 +0 -0
- package/src/assets/audio/nope-02.aac +0 -0
- package/src/assets/audio/nope-02.mp3 +0 -0
- package/src/assets/audio/nope-03.aac +0 -0
- package/src/assets/audio/nope-03.mp3 +0 -0
- package/src/assets/audio/nope-04.aac +0 -0
- package/src/assets/audio/nope-04.mp3 +0 -0
- package/src/assets/audio/nope-05.aac +0 -0
- package/src/assets/audio/nope-05.mp3 +0 -0
- package/src/assets/audio/nope-06.aac +0 -0
- package/src/assets/audio/nope-06.mp3 +0 -0
- package/src/assets/audio/nope-07.aac +0 -0
- package/src/assets/audio/nope-07.mp3 +0 -0
- package/src/assets/audio/nope-08.aac +0 -0
- package/src/assets/audio/nope-08.mp3 +0 -0
- package/src/assets/audio/nope-09.aac +0 -0
- package/src/assets/audio/nope-09.mp3 +0 -0
- package/src/assets/audio/nope-10.aac +0 -0
- package/src/assets/audio/nope-10.mp3 +0 -0
- package/src/assets/audio/nope-11.aac +0 -0
- package/src/assets/audio/nope-11.mp3 +0 -0
- package/src/assets/audio/nope-12.aac +0 -0
- package/src/assets/audio/nope-12.mp3 +0 -0
- package/src/assets/audio/staplebops-01.aac +0 -0
- package/src/assets/audio/staplebops-01.mp3 +0 -0
- package/src/assets/audio/staplebops-02.aac +0 -0
- package/src/assets/audio/staplebops-02.mp3 +0 -0
- package/src/assets/audio/staplebops-03.aac +0 -0
- package/src/assets/audio/staplebops-03.mp3 +0 -0
- package/src/assets/audio/staplebops-04.aac +0 -0
- package/src/assets/audio/staplebops-04.mp3 +0 -0
- package/src/assets/audio/staplebops-05.aac +0 -0
- package/src/assets/audio/staplebops-05.mp3 +0 -0
- package/src/assets/audio/staplebops-06.aac +0 -0
- package/src/assets/audio/staplebops-06.mp3 +0 -0
- package/src/assets/audio/staplebops-07.aac +0 -0
- package/src/assets/audio/staplebops-07.mp3 +0 -0
- package/src/assets/audio/yup-01.aac +0 -0
- package/src/assets/audio/yup-01.mp3 +0 -0
- package/src/assets/audio/yup-02.aac +0 -0
- package/src/assets/audio/yup-02.mp3 +0 -0
- package/src/assets/audio/yup-03.aac +0 -0
- package/src/assets/audio/yup-03.mp3 +0 -0
- package/src/assets/audio/yup-04.aac +0 -0
- package/src/assets/audio/yup-04.mp3 +0 -0
- package/src/assets/audio/yup-05.aac +0 -0
- package/src/assets/audio/yup-05.mp3 +0 -0
- package/src/assets/audio/yup-06.aac +0 -0
- package/src/assets/audio/yup-06.mp3 +0 -0
- package/src/assets/fonts/Inter.ttf +0 -0
- package/src/assets/fonts/JetBrainsMonoNerdFontMono-Regular.woff2 +0 -0
- package/src/assets/icons/app/android-studio.svg +369 -0
- package/src/assets/icons/app/antigravity.svg +97 -0
- package/src/assets/icons/app/cursor.svg +16 -0
- package/src/assets/icons/app/file-explorer.svg +20 -0
- package/src/assets/icons/app/finder.png +0 -0
- package/src/assets/icons/app/ghostty.svg +13 -0
- package/src/assets/icons/app/iterm2.svg +13 -0
- package/src/assets/icons/app/powershell.svg +14 -0
- package/src/assets/icons/app/sublimetext.svg +17 -0
- package/src/assets/icons/app/terminal.png +0 -0
- package/src/assets/icons/app/textmate.png +0 -0
- package/src/assets/icons/app/vscode.svg +39 -0
- package/src/assets/icons/app/warp.png +0 -0
- package/src/assets/icons/app/xcode.png +0 -0
- package/src/assets/icons/app/zed-dark.svg +15 -0
- package/src/assets/icons/app/zed.svg +15 -0
- package/src/components/accordion.css +147 -0
- package/src/components/accordion.tsx +92 -0
- package/src/components/animated-number.css +75 -0
- package/src/components/animated-number.tsx +109 -0
- package/src/components/app-icon.css +5 -0
- package/src/components/app-icon.tsx +85 -0
- package/src/components/app-icons/sprite.svg +114 -0
- package/src/components/app-icons/types.ts +21 -0
- package/src/components/avatar.css +49 -0
- package/src/components/avatar.tsx +55 -0
- package/src/components/button.css +194 -0
- package/src/components/button.tsx +33 -0
- package/src/components/card.css +115 -0
- package/src/components/card.tsx +123 -0
- package/src/components/checkbox.css +131 -0
- package/src/components/checkbox.tsx +43 -0
- package/src/components/collapsible.css +148 -0
- package/src/components/collapsible.tsx +48 -0
- package/src/components/context-menu.css +134 -0
- package/src/components/context-menu.tsx +308 -0
- package/src/components/dialog.css +181 -0
- package/src/components/dialog.tsx +72 -0
- package/src/components/diff-changes.css +42 -0
- package/src/components/diff-changes.tsx +115 -0
- package/src/components/dock-surface.css +23 -0
- package/src/components/dock-surface.tsx +54 -0
- package/src/components/dropdown-menu.css +135 -0
- package/src/components/dropdown-menu.tsx +308 -0
- package/src/components/favicon.tsx +13 -0
- package/src/components/file-icon.css +26 -0
- package/src/components/file-icon.tsx +588 -0
- package/src/components/file-icons/sprite.svg +11707 -0
- package/src/components/file-icons/types.ts +1095 -0
- package/src/components/font.tsx +1 -0
- package/src/components/hover-card.css +61 -0
- package/src/components/hover-card.tsx +32 -0
- package/src/components/icon-button.css +181 -0
- package/src/components/icon-button.tsx +29 -0
- package/src/components/icon.css +34 -0
- package/src/components/icon.tsx +169 -0
- package/src/components/image-preview.css +63 -0
- package/src/components/image-preview.tsx +32 -0
- package/src/components/inline-input.css +17 -0
- package/src/components/inline-input.tsx +22 -0
- package/src/components/keybind.css +18 -0
- package/src/components/keybind.tsx +20 -0
- package/src/components/list.css +331 -0
- package/src/components/list.tsx +394 -0
- package/src/components/logo.css +4 -0
- package/src/components/logo.tsx +62 -0
- package/src/components/motion-spring.tsx +58 -0
- package/src/components/popover.css +98 -0
- package/src/components/popover.tsx +153 -0
- package/src/components/progress-circle.css +16 -0
- package/src/components/progress-circle.tsx +64 -0
- package/src/components/progress.css +63 -0
- package/src/components/progress.tsx +39 -0
- package/src/components/provider-icon.css +5 -0
- package/src/components/provider-icon.tsx +25 -0
- package/src/components/provider-icons/sprite.svg +1135 -0
- package/src/components/provider-icons/types.ts +105 -0
- package/src/components/radio-group.css +187 -0
- package/src/components/radio-group.tsx +83 -0
- package/src/components/resize-handle.css +58 -0
- package/src/components/resize-handle.tsx +82 -0
- package/src/components/scroll-view.css +66 -0
- package/src/components/scroll-view.tsx +250 -0
- package/src/components/select.css +199 -0
- package/src/components/select.tsx +174 -0
- package/src/components/spinner.css +6 -0
- package/src/components/spinner.tsx +52 -0
- package/src/components/sticky-accordion-header.css +6 -0
- package/src/components/sticky-accordion-header.tsx +18 -0
- package/src/components/switch.css +132 -0
- package/src/components/switch.tsx +29 -0
- package/src/components/tabs.css +635 -0
- package/src/components/tabs.tsx +125 -0
- package/src/components/tag.css +37 -0
- package/src/components/tag.tsx +22 -0
- package/src/components/text-field.css +134 -0
- package/src/components/text-field.tsx +128 -0
- package/src/components/text-reveal.css +150 -0
- package/src/components/text-reveal.tsx +143 -0
- package/src/components/text-shimmer.css +119 -0
- package/src/components/text-shimmer.tsx +62 -0
- package/src/components/text-strikethrough.css +27 -0
- package/src/components/text-strikethrough.tsx +84 -0
- package/src/components/toast.css +236 -0
- package/src/components/toast.tsx +185 -0
- package/src/components/tooltip.css +74 -0
- package/src/components/tooltip.tsx +163 -0
- package/src/components/typewriter.css +14 -0
- package/src/components/typewriter.tsx +55 -0
- package/src/context/dialog.tsx +197 -0
- package/src/context/file.tsx +10 -0
- package/src/context/helper.tsx +38 -0
- package/src/context/i18n.tsx +38 -0
- package/src/context/index.ts +4 -0
- package/src/context/marked.tsx +522 -0
- package/src/context/worker-pool.tsx +20 -0
- package/src/custom-elements.d.ts +17 -0
- package/src/hooks/create-auto-scroll.tsx +237 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/use-filtered-list.tsx +134 -0
- package/src/i18n/ar.ts +168 -0
- package/src/i18n/br.ts +168 -0
- package/src/i18n/bs.ts +172 -0
- package/src/i18n/da.ts +167 -0
- package/src/i18n/de.ts +173 -0
- package/src/i18n/en.ts +176 -0
- package/src/i18n/es.ts +168 -0
- package/src/i18n/fr.ts +168 -0
- package/src/i18n/ja.ts +167 -0
- package/src/i18n/ko.ts +168 -0
- package/src/i18n/no.ts +171 -0
- package/src/i18n/pl.ts +167 -0
- package/src/i18n/ru.ts +167 -0
- package/src/i18n/th.ts +169 -0
- package/src/i18n/tr.ts +174 -0
- package/src/i18n/uk.ts +167 -0
- package/src/i18n/zh.ts +171 -0
- package/src/i18n/zht.ts +171 -0
- package/src/storybook/fixtures.ts +51 -0
- package/src/storybook/scaffold.tsx +62 -0
- package/src/styles/animations.css +141 -0
- package/src/styles/base.css +404 -0
- package/src/styles/colors.css +772 -0
- package/src/styles/index.css +53 -0
- package/src/styles/tailwind/colors.css +286 -0
- package/src/styles/tailwind/index.css +78 -0
- package/src/styles/tailwind/utilities.css +131 -0
- package/src/styles/theme.css +609 -0
- package/src/styles/utilities.css +118 -0
- package/src/theme/color.ts +299 -0
- package/src/theme/context.tsx +370 -0
- package/src/theme/default-themes.ts +116 -0
- package/src/theme/index.ts +78 -0
- package/src/theme/loader.ts +112 -0
- package/src/theme/resolve.ts +540 -0
- package/src/theme/themes/amoled.json +49 -0
- package/src/theme/themes/aura.json +51 -0
- package/src/theme/themes/ayu.json +51 -0
- package/src/theme/themes/carbonfox.json +53 -0
- package/src/theme/themes/catppuccin-frappe.json +85 -0
- package/src/theme/themes/catppuccin-macchiato.json +85 -0
- package/src/theme/themes/catppuccin.json +45 -0
- package/src/theme/themes/cobalt2.json +87 -0
- package/src/theme/themes/cursor.json +91 -0
- package/src/theme/themes/dracula.json +49 -0
- package/src/theme/themes/everforest.json +89 -0
- package/src/theme/themes/flexoki.json +86 -0
- package/src/theme/themes/github.json +85 -0
- package/src/theme/themes/gruvbox.json +45 -0
- package/src/theme/themes/kanagawa.json +89 -0
- package/src/theme/themes/lucent-orng.json +87 -0
- package/src/theme/themes/material.json +87 -0
- package/src/theme/themes/matrix.json +113 -0
- package/src/theme/themes/mercury.json +86 -0
- package/src/theme/themes/monokai.json +49 -0
- package/src/theme/themes/nightowl.json +46 -0
- package/src/theme/themes/nord.json +46 -0
- package/src/theme/themes/oc-2.json +474 -0
- package/src/theme/themes/one-dark.json +89 -0
- package/src/theme/themes/onedarkpro.json +45 -0
- package/src/theme/themes/opencode.json +89 -0
- package/src/theme/themes/orng.json +87 -0
- package/src/theme/themes/osaka-jade.json +88 -0
- package/src/theme/themes/palenight.json +85 -0
- package/src/theme/themes/rosepine.json +85 -0
- package/src/theme/themes/shadesofpurple.json +51 -0
- package/src/theme/themes/solarized.json +49 -0
- package/src/theme/themes/synthwave84.json +87 -0
- package/src/theme/themes/tokyonight.json +47 -0
- package/src/theme/themes/vercel.json +90 -0
- package/src/theme/themes/vesper.json +51 -0
- package/src/theme/themes/zenburn.json +87 -0
- package/src/theme/types.ts +75 -0
- package/src/theme/v2/avatar.ts +48 -0
- package/src/theme/v2/default-primitives.ts +114 -0
- package/src/theme/v2/foreground.ts +60 -0
- package/src/theme/v2/mapping.ts +140 -0
- package/src/theme/v2/resolve.ts +153 -0
- package/src/v2/components/accordion-v2.css +139 -0
- package/src/v2/components/accordion-v2.tsx +86 -0
- package/src/v2/components/avatar-v2.css +70 -0
- package/src/v2/components/avatar-v2.tsx +59 -0
- package/src/v2/components/badge-v2.css +27 -0
- package/src/v2/components/badge-v2.tsx +20 -0
- package/src/v2/components/button-v2.css +239 -0
- package/src/v2/components/button-v2.tsx +35 -0
- package/src/v2/components/checkbox-v2.css +184 -0
- package/src/v2/components/checkbox-v2.tsx +65 -0
- package/src/v2/components/dialog-v2.css +177 -0
- package/src/v2/components/dialog-v2.tsx +114 -0
- package/src/v2/components/diff-changes-v2.css +24 -0
- package/src/v2/components/diff-changes-v2.tsx +28 -0
- package/src/v2/components/divider-v2.css +11 -0
- package/src/v2/components/divider-v2.tsx +20 -0
- package/src/v2/components/field-v2.css +94 -0
- package/src/v2/components/field-v2.tsx +265 -0
- package/src/v2/components/icon-button-v2.css +155 -0
- package/src/v2/components/icon-button-v2.tsx +37 -0
- package/src/v2/components/icon.tsx +173 -0
- package/src/v2/components/inline-input-v2.css +218 -0
- package/src/v2/components/inline-input-v2.tsx +90 -0
- package/src/v2/components/keybind-v2.css +76 -0
- package/src/v2/components/keybind-v2.tsx +30 -0
- package/src/v2/components/line-comment-v2.css +204 -0
- package/src/v2/components/line-comment-v2.tsx +155 -0
- package/src/v2/components/loader-v2.css +32 -0
- package/src/v2/components/loader-v2.tsx +31 -0
- package/src/v2/components/menu-v2.css +190 -0
- package/src/v2/components/menu-v2.tsx +225 -0
- package/src/v2/components/progress-circle-v2.css +13 -0
- package/src/v2/components/progress-circle-v2.tsx +52 -0
- package/src/v2/components/project-avatar-v2.css +125 -0
- package/src/v2/components/project-avatar-v2.tsx +64 -0
- package/src/v2/components/radio-v2.css +202 -0
- package/src/v2/components/radio-v2.tsx +72 -0
- package/src/v2/components/segmented-control-v2.css +80 -0
- package/src/v2/components/segmented-control-v2.tsx +208 -0
- package/src/v2/components/select-v2.css +285 -0
- package/src/v2/components/select-v2.tsx +208 -0
- package/src/v2/components/switch-v2.css +154 -0
- package/src/v2/components/switch-v2.tsx +28 -0
- package/src/v2/components/tab-state-indicator.tsx +37 -0
- package/src/v2/components/tabs-v2.css +225 -0
- package/src/v2/components/tabs-v2.tsx +147 -0
- package/src/v2/components/text-input-v2.css +145 -0
- package/src/v2/components/text-input-v2.tsx +67 -0
- package/src/v2/components/text-shimmer-v2.css +125 -0
- package/src/v2/components/text-shimmer-v2.tsx +63 -0
- package/src/v2/components/textarea-v2.css +78 -0
- package/src/v2/components/textarea-v2.tsx +31 -0
- package/src/v2/components/toast-v2.css +215 -0
- package/src/v2/components/toast-v2.tsx +144 -0
- package/src/v2/components/tooltip-v2.css +64 -0
- package/src/v2/components/tooltip-v2.tsx +147 -0
- package/src/v2/components/wordmark-v2.tsx +92 -0
- package/src/v2/styles/colors.css +172 -0
- package/src/v2/styles/tailwind.css +2 -0
- package/src/v2/styles/theme.css +457 -0
- package/README.md +0 -3
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
[data-component="tooltip-v2-trigger"] {
|
|
2
|
+
display: flex;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
[data-component="tooltip-v2"] {
|
|
6
|
+
box-sizing: border-box;
|
|
7
|
+
display: inline-flex;
|
|
8
|
+
flex-direction: row;
|
|
9
|
+
align-items: center;
|
|
10
|
+
padding: 5px 6px;
|
|
11
|
+
gap: 6px;
|
|
12
|
+
|
|
13
|
+
background: var(--v2-background-bg-layer-01);
|
|
14
|
+
box-shadow: var(--v2-elevation-floating);
|
|
15
|
+
border-radius: 4px;
|
|
16
|
+
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: 530;
|
|
19
|
+
font-size: 11px;
|
|
20
|
+
line-height: 12px;
|
|
21
|
+
letter-spacing: 0.05px;
|
|
22
|
+
color: var(--v2-text-text-base);
|
|
23
|
+
font-variant-numeric: tabular-nums;
|
|
24
|
+
font-variation-settings: "slnt" 0;
|
|
25
|
+
|
|
26
|
+
user-select: none;
|
|
27
|
+
pointer-events: none;
|
|
28
|
+
|
|
29
|
+
animation: tooltipV2In 120ms ease-out;
|
|
30
|
+
transform-origin: var(--kb-tooltip-content-transform-origin);
|
|
31
|
+
|
|
32
|
+
&[data-closed] {
|
|
33
|
+
animation: tooltipV2Out 80ms ease-in forwards;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@keyframes tooltipV2In {
|
|
38
|
+
from {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
transform: scale(0.96);
|
|
41
|
+
}
|
|
42
|
+
to {
|
|
43
|
+
opacity: 1;
|
|
44
|
+
transform: scale(1);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@keyframes tooltipV2Out {
|
|
49
|
+
from {
|
|
50
|
+
opacity: 1;
|
|
51
|
+
transform: scale(1);
|
|
52
|
+
}
|
|
53
|
+
to {
|
|
54
|
+
opacity: 0;
|
|
55
|
+
transform: scale(0.96);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@media (prefers-reduced-motion: reduce) {
|
|
60
|
+
[data-component="tooltip-v2"],
|
|
61
|
+
[data-component="tooltip-v2"][data-closed] {
|
|
62
|
+
animation: none;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { Tooltip as KobalteTooltip } from "@kobalte/core/tooltip"
|
|
2
|
+
import { createEffect, Match, onCleanup, splitProps, Switch, type JSX } from "solid-js"
|
|
3
|
+
import type { ComponentProps } from "solid-js"
|
|
4
|
+
import { createStore } from "solid-js/store"
|
|
5
|
+
import "./tooltip-v2.css"
|
|
6
|
+
|
|
7
|
+
export interface TooltipV2Props extends ComponentProps<typeof KobalteTooltip> {
|
|
8
|
+
value: JSX.Element
|
|
9
|
+
class?: string
|
|
10
|
+
contentClass?: string
|
|
11
|
+
contentStyle?: JSX.CSSProperties
|
|
12
|
+
inactive?: boolean
|
|
13
|
+
forceOpen?: boolean
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export function TooltipV2(props: TooltipV2Props) {
|
|
17
|
+
let ref: HTMLDivElement | undefined
|
|
18
|
+
const [state, setState] = createStore({
|
|
19
|
+
open: false,
|
|
20
|
+
block: false,
|
|
21
|
+
expand: false,
|
|
22
|
+
})
|
|
23
|
+
const [local, others] = splitProps(props, [
|
|
24
|
+
"children",
|
|
25
|
+
"class",
|
|
26
|
+
"contentClass",
|
|
27
|
+
"contentStyle",
|
|
28
|
+
"inactive",
|
|
29
|
+
"forceOpen",
|
|
30
|
+
"ignoreSafeArea",
|
|
31
|
+
"value",
|
|
32
|
+
])
|
|
33
|
+
|
|
34
|
+
const close = () => setState("open", false)
|
|
35
|
+
|
|
36
|
+
const inside = () => {
|
|
37
|
+
const active = document.activeElement
|
|
38
|
+
if (!ref || !active) return false
|
|
39
|
+
return ref.contains(active)
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
const drop = (expand = state.expand) => {
|
|
43
|
+
if (expand) return
|
|
44
|
+
if (ref?.matches(":hover")) return
|
|
45
|
+
if (inside()) return
|
|
46
|
+
setState("block", false)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
const sync = () => {
|
|
50
|
+
const expand = !!ref?.querySelector('[aria-expanded="true"], [data-expanded]')
|
|
51
|
+
setState("expand", expand)
|
|
52
|
+
if (expand) {
|
|
53
|
+
setState("block", true)
|
|
54
|
+
close()
|
|
55
|
+
return
|
|
56
|
+
}
|
|
57
|
+
drop(expand)
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const arm = () => {
|
|
61
|
+
setState("block", true)
|
|
62
|
+
close()
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const leave = () => {
|
|
66
|
+
if (!inside()) close()
|
|
67
|
+
drop()
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
createEffect(() => {
|
|
71
|
+
if (!ref) return
|
|
72
|
+
sync()
|
|
73
|
+
const obs = new MutationObserver(sync)
|
|
74
|
+
obs.observe(ref, {
|
|
75
|
+
subtree: true,
|
|
76
|
+
childList: true,
|
|
77
|
+
attributes: true,
|
|
78
|
+
attributeFilter: ["aria-expanded", "data-expanded"],
|
|
79
|
+
})
|
|
80
|
+
onCleanup(() => obs.disconnect())
|
|
81
|
+
})
|
|
82
|
+
|
|
83
|
+
let justClickedTrigger = false
|
|
84
|
+
|
|
85
|
+
return (
|
|
86
|
+
<Switch>
|
|
87
|
+
<Match when={local.inactive}>{local.children}</Match>
|
|
88
|
+
<Match when={true}>
|
|
89
|
+
<KobalteTooltip
|
|
90
|
+
gutter={4}
|
|
91
|
+
openDelay={400}
|
|
92
|
+
skipDelayDuration={300}
|
|
93
|
+
{...others}
|
|
94
|
+
closeDelay={0}
|
|
95
|
+
ignoreSafeArea={local.ignoreSafeArea ?? true}
|
|
96
|
+
open={local.forceOpen || state.open}
|
|
97
|
+
onOpenChange={(open) => {
|
|
98
|
+
if (local.forceOpen) return
|
|
99
|
+
if (state.block && open) return
|
|
100
|
+
if (justClickedTrigger) {
|
|
101
|
+
justClickedTrigger = false
|
|
102
|
+
return
|
|
103
|
+
}
|
|
104
|
+
setState("open", open)
|
|
105
|
+
}}
|
|
106
|
+
>
|
|
107
|
+
<KobalteTooltip.Trigger
|
|
108
|
+
ref={ref}
|
|
109
|
+
as="div"
|
|
110
|
+
data-component="tooltip-v2-trigger"
|
|
111
|
+
class={local.class}
|
|
112
|
+
onPointerDownCapture={arm}
|
|
113
|
+
onKeyDownCapture={(event: KeyboardEvent) => {
|
|
114
|
+
if (event.key !== "Enter" && event.key !== " ") return
|
|
115
|
+
arm()
|
|
116
|
+
}}
|
|
117
|
+
onPointerLeave={leave}
|
|
118
|
+
onFocusOut={() => requestAnimationFrame(() => drop())}
|
|
119
|
+
>
|
|
120
|
+
{local.children}
|
|
121
|
+
</KobalteTooltip.Trigger>
|
|
122
|
+
<KobalteTooltip.Portal>
|
|
123
|
+
<KobalteTooltip.Content
|
|
124
|
+
ref={(el) => {
|
|
125
|
+
const theme = ref?.closest("[data-theme]")?.getAttribute("data-theme")
|
|
126
|
+
if (theme) el.setAttribute("data-theme", theme)
|
|
127
|
+
}}
|
|
128
|
+
data-component="tooltip-v2"
|
|
129
|
+
data-placement={props.placement}
|
|
130
|
+
data-force-open={local.forceOpen}
|
|
131
|
+
class={local.contentClass}
|
|
132
|
+
style={local.contentStyle}
|
|
133
|
+
onPointerDownOutside={(e) => {
|
|
134
|
+
if (ref === e.target || (e.target instanceof Node && ref?.contains(e.target))) {
|
|
135
|
+
justClickedTrigger = true
|
|
136
|
+
}
|
|
137
|
+
e.preventDefault()
|
|
138
|
+
}}
|
|
139
|
+
>
|
|
140
|
+
{local.value}
|
|
141
|
+
</KobalteTooltip.Content>
|
|
142
|
+
</KobalteTooltip.Portal>
|
|
143
|
+
</KobalteTooltip>
|
|
144
|
+
</Match>
|
|
145
|
+
</Switch>
|
|
146
|
+
)
|
|
147
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { createUniqueId, type ComponentProps } from "solid-js"
|
|
2
|
+
|
|
3
|
+
export function WordmarkV2(props: Pick<ComponentProps<"svg">, "class">) {
|
|
4
|
+
const filter = createUniqueId()
|
|
5
|
+
const mask = createUniqueId()
|
|
6
|
+
const maskGradient = createUniqueId()
|
|
7
|
+
|
|
8
|
+
return (
|
|
9
|
+
<svg
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
viewBox="0 0 720.002 129.001"
|
|
12
|
+
fill="none"
|
|
13
|
+
preserveAspectRatio="none"
|
|
14
|
+
classList={{ [props.class ?? ""]: !!props.class }}
|
|
15
|
+
>
|
|
16
|
+
<g opacity="0.16" filter={`url(#${filter})`} mask={`url(#${mask})`}>
|
|
17
|
+
<path
|
|
18
|
+
opacity="0.7"
|
|
19
|
+
d="M55.3846 36.8583H18.4615V92.144H55.3846V36.8583ZM73.8462 110.573H0V18.4297H73.8462V110.573Z"
|
|
20
|
+
fill="currentColor"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
opacity="0.7"
|
|
24
|
+
d="M110.774 92.144H147.697V36.8583H110.774V92.144ZM166.159 110.573H110.774V129.001H92.3125V18.4297H166.159V110.573Z"
|
|
25
|
+
fill="currentColor"
|
|
26
|
+
/>
|
|
27
|
+
<path
|
|
28
|
+
opacity="0.7"
|
|
29
|
+
d="M258.463 73.7154H203.079V92.144H258.463V110.573H184.617V18.4297H258.463V73.7154ZM203.079 55.2868H240.002V36.8583H203.079V55.2868Z"
|
|
30
|
+
fill="currentColor"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
opacity="0.7"
|
|
34
|
+
d="M332.306 36.8583H295.383V110.573H276.922V18.4297H332.306V36.8583ZM350.768 110.573H332.306V36.8583H350.768V110.573Z"
|
|
35
|
+
fill="currentColor"
|
|
36
|
+
/>
|
|
37
|
+
<path
|
|
38
|
+
opacity="0.7"
|
|
39
|
+
d="M443.081 36.8583H387.696V92.144H443.081V110.573H369.234V18.4297H443.081V36.8583Z"
|
|
40
|
+
fill="currentColor"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
opacity="0.7"
|
|
44
|
+
d="M516.924 36.8583H480.001V92.144H516.924V36.8583ZM535.385 110.573H461.539V18.4297H535.385V110.573Z"
|
|
45
|
+
fill="currentColor"
|
|
46
|
+
/>
|
|
47
|
+
<path
|
|
48
|
+
opacity="0.7"
|
|
49
|
+
d="M609.228 36.8571H572.305V92.1429H609.228V36.8571ZM627.69 110.571H553.844V18.4286H609.228V0H627.69V110.571Z"
|
|
50
|
+
fill="currentColor"
|
|
51
|
+
/>
|
|
52
|
+
<path
|
|
53
|
+
opacity="0.7"
|
|
54
|
+
d="M664.618 36.8583V55.2868H701.541V36.8583H664.618ZM720.002 73.7154H664.618V92.144H720.002V110.573H646.156V18.4297H720.002V73.7154Z"
|
|
55
|
+
fill="currentColor"
|
|
56
|
+
/>
|
|
57
|
+
</g>
|
|
58
|
+
<defs>
|
|
59
|
+
<mask id={mask} maskUnits="userSpaceOnUse" x="0" y="0" width="720" height="129">
|
|
60
|
+
<rect width="720" height="129" fill={`url(#${maskGradient})`} />
|
|
61
|
+
</mask>
|
|
62
|
+
<linearGradient id={maskGradient} x1="360" y1="0" x2="360" y2="112" gradientUnits="userSpaceOnUse">
|
|
63
|
+
<stop stop-color="white" stop-opacity="0.7" />
|
|
64
|
+
<stop offset="1" stop-color="white" stop-opacity="0" />
|
|
65
|
+
</linearGradient>
|
|
66
|
+
<filter
|
|
67
|
+
id={filter}
|
|
68
|
+
x="0"
|
|
69
|
+
y="0"
|
|
70
|
+
width="720.002"
|
|
71
|
+
height="130.001"
|
|
72
|
+
filterUnits="userSpaceOnUse"
|
|
73
|
+
color-interpolation-filters="sRGB"
|
|
74
|
+
>
|
|
75
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
76
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape" />
|
|
77
|
+
<feColorMatrix
|
|
78
|
+
in="SourceAlpha"
|
|
79
|
+
type="matrix"
|
|
80
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
81
|
+
result="hardAlpha"
|
|
82
|
+
/>
|
|
83
|
+
<feOffset dy="1" />
|
|
84
|
+
<feGaussianBlur stdDeviation="1" />
|
|
85
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1" />
|
|
86
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0" />
|
|
87
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_4938_16028" />
|
|
88
|
+
</filter>
|
|
89
|
+
</defs>
|
|
90
|
+
</svg>
|
|
91
|
+
)
|
|
92
|
+
}
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
@layer theme {
|
|
2
|
+
:root {
|
|
3
|
+
/* ── Grey ── */
|
|
4
|
+
--v2-grey-50: #ffffffff;
|
|
5
|
+
--v2-grey-100: #fafafaff;
|
|
6
|
+
--v2-grey-200: #f2f2f2ff;
|
|
7
|
+
--v2-grey-300: #eeeeeeff;
|
|
8
|
+
--v2-grey-400: #dbdbdbff;
|
|
9
|
+
--v2-grey-500: #aeaeaeff;
|
|
10
|
+
--v2-grey-600: #808080ff;
|
|
11
|
+
--v2-grey-700: #5c5c5cff;
|
|
12
|
+
--v2-grey-800: #3a3a3aff;
|
|
13
|
+
--v2-grey-900: #2e2e2eff;
|
|
14
|
+
--v2-grey-1000: #242424ff;
|
|
15
|
+
--v2-grey-1100: #161616ff;
|
|
16
|
+
--v2-grey-1200: #080808ff;
|
|
17
|
+
|
|
18
|
+
/* ── Alpha Dark ── */
|
|
19
|
+
--v2-alpha-dark-100: #000000ff;
|
|
20
|
+
--v2-alpha-dark-90: #000000e5;
|
|
21
|
+
--v2-alpha-dark-80: #000000cc;
|
|
22
|
+
--v2-alpha-dark-70: #000000b2;
|
|
23
|
+
--v2-alpha-dark-60: #00000099;
|
|
24
|
+
--v2-alpha-dark-50: #00000080;
|
|
25
|
+
--v2-alpha-dark-40: #00000066;
|
|
26
|
+
--v2-alpha-dark-30: #0000004d;
|
|
27
|
+
--v2-alpha-dark-24: #0000003d;
|
|
28
|
+
--v2-alpha-dark-20: #00000033;
|
|
29
|
+
--v2-alpha-dark-16: #00000029;
|
|
30
|
+
--v2-alpha-dark-14: #00000024;
|
|
31
|
+
--v2-alpha-dark-12: #0000001f;
|
|
32
|
+
--v2-alpha-dark-10: #0000001a;
|
|
33
|
+
--v2-alpha-dark-8: #00000014;
|
|
34
|
+
--v2-alpha-dark-6: #0000000f;
|
|
35
|
+
--v2-alpha-dark-4: #0000000a;
|
|
36
|
+
--v2-alpha-dark-2: #00000005;
|
|
37
|
+
--v2-alpha-dark-0: #00000000;
|
|
38
|
+
|
|
39
|
+
/* ── Alpha Light ── */
|
|
40
|
+
--v2-alpha-light-100: #ffffffff;
|
|
41
|
+
--v2-alpha-light-90: #ffffffe5;
|
|
42
|
+
--v2-alpha-light-80: #ffffffcc;
|
|
43
|
+
--v2-alpha-light-70: #ffffffb2;
|
|
44
|
+
--v2-alpha-light-60: #ffffff99;
|
|
45
|
+
--v2-alpha-light-50: #ffffff80;
|
|
46
|
+
--v2-alpha-light-40: #ffffff66;
|
|
47
|
+
--v2-alpha-light-30: #ffffff4d;
|
|
48
|
+
--v2-alpha-light-24: #ffffff3d;
|
|
49
|
+
--v2-alpha-light-20: #ffffff33;
|
|
50
|
+
--v2-alpha-light-16: #ffffff29;
|
|
51
|
+
--v2-alpha-light-14: #ffffff24;
|
|
52
|
+
--v2-alpha-light-12: #ffffff1f;
|
|
53
|
+
--v2-alpha-light-10: #ffffff1a;
|
|
54
|
+
--v2-alpha-light-8: #ffffff14;
|
|
55
|
+
--v2-alpha-light-6: #ffffff0f;
|
|
56
|
+
--v2-alpha-light-4: #ffffff0a;
|
|
57
|
+
--v2-alpha-light-2: #ffffff05;
|
|
58
|
+
--v2-alpha-light-0: #ffffff00;
|
|
59
|
+
|
|
60
|
+
/* ── Red ── */
|
|
61
|
+
--v2-red-100: #fcecebff;
|
|
62
|
+
--v2-red-200: #f6d5d3ff;
|
|
63
|
+
--v2-red-300: #f2bbb7ff;
|
|
64
|
+
--v2-red-400: #f29b96ff;
|
|
65
|
+
--v2-red-500: #f17471ff;
|
|
66
|
+
--v2-red-600: #f1484fff;
|
|
67
|
+
--v2-red-700: #d92e3cff;
|
|
68
|
+
--v2-red-800: #b82d35ff;
|
|
69
|
+
--v2-red-900: #97252bff;
|
|
70
|
+
--v2-red-1000: #7a1f23ff;
|
|
71
|
+
--v2-red-1100: #5f1a1cff;
|
|
72
|
+
--v2-red-1200: #461516ff;
|
|
73
|
+
|
|
74
|
+
/* ── Orange ── */
|
|
75
|
+
--v2-orange-100: #fdf2edff;
|
|
76
|
+
--v2-orange-200: #ffe7dcff;
|
|
77
|
+
--v2-orange-300: #ffd8c6ff;
|
|
78
|
+
--v2-orange-400: #ffc1a4ff;
|
|
79
|
+
--v2-orange-500: #ffa478ff;
|
|
80
|
+
--v2-orange-600: #ff8648ff;
|
|
81
|
+
--v2-orange-700: #ee7330ff;
|
|
82
|
+
--v2-orange-800: #d16427ff;
|
|
83
|
+
--v2-orange-900: #b35624ff;
|
|
84
|
+
--v2-orange-1000: #954c27ff;
|
|
85
|
+
--v2-orange-1100: #723d22ff;
|
|
86
|
+
--v2-orange-1200: #5a2c14ff;
|
|
87
|
+
|
|
88
|
+
/* ── Yellow ── */
|
|
89
|
+
--v2-yellow-100: #fefaecff;
|
|
90
|
+
--v2-yellow-200: #fcefd0ff;
|
|
91
|
+
--v2-yellow-300: #f7e5b5ff;
|
|
92
|
+
--v2-yellow-400: #f3da9bff;
|
|
93
|
+
--v2-yellow-500: #f2cf76ff;
|
|
94
|
+
--v2-yellow-600: #f6c251ff;
|
|
95
|
+
--v2-yellow-700: #e7af36ff;
|
|
96
|
+
--v2-yellow-800: #cb9f34ff;
|
|
97
|
+
--v2-yellow-900: #ac8833ff;
|
|
98
|
+
--v2-yellow-1000: #8e7231ff;
|
|
99
|
+
--v2-yellow-1100: #68552bff;
|
|
100
|
+
--v2-yellow-1200: #4b4025ff;
|
|
101
|
+
|
|
102
|
+
/* ── Green ── */
|
|
103
|
+
--v2-green-100: #e7f9eaff;
|
|
104
|
+
--v2-green-200: #d0f0d5ff;
|
|
105
|
+
--v2-green-300: #b8e9c1ff;
|
|
106
|
+
--v2-green-400: #96e3a6ff;
|
|
107
|
+
--v2-green-500: #6bd586ff;
|
|
108
|
+
--v2-green-600: #49c970ff;
|
|
109
|
+
--v2-green-700: #2eaf5aff;
|
|
110
|
+
--v2-green-800: #198b43ff;
|
|
111
|
+
--v2-green-900: #1d783cff;
|
|
112
|
+
--v2-green-1000: #196130ff;
|
|
113
|
+
--v2-green-1100: #164c26ff;
|
|
114
|
+
--v2-green-1200: #14361dff;
|
|
115
|
+
|
|
116
|
+
/* ── Cyan ── */
|
|
117
|
+
--v2-cyan-100: #e2f7fbff;
|
|
118
|
+
--v2-cyan-200: #c4edf4ff;
|
|
119
|
+
--v2-cyan-300: #a3e4efff;
|
|
120
|
+
--v2-cyan-400: #65d9ebff;
|
|
121
|
+
--v2-cyan-500: #00c5dfff;
|
|
122
|
+
--v2-cyan-600: #00abcfff;
|
|
123
|
+
--v2-cyan-700: #0096b8ff;
|
|
124
|
+
--v2-cyan-800: #007d9bff;
|
|
125
|
+
--v2-cyan-900: #006c85ff;
|
|
126
|
+
--v2-cyan-1000: #005a6eff;
|
|
127
|
+
--v2-cyan-1100: #004756ff;
|
|
128
|
+
--v2-cyan-1200: #00353fff;
|
|
129
|
+
|
|
130
|
+
/* ── Blue ── */
|
|
131
|
+
--v2-blue-100: #ecf1feff;
|
|
132
|
+
--v2-blue-200: #d7e2fcff;
|
|
133
|
+
--v2-blue-300: #c3d4fdff;
|
|
134
|
+
--v2-blue-400: #a2bcffff;
|
|
135
|
+
--v2-blue-500: #7698fdff;
|
|
136
|
+
--v2-blue-600: #3b5cf6ff;
|
|
137
|
+
--v2-blue-700: #3250dfff;
|
|
138
|
+
--v2-blue-800: #2c47c8ff;
|
|
139
|
+
--v2-blue-900: #263fa9ff;
|
|
140
|
+
--v2-blue-1000: #22388fff;
|
|
141
|
+
--v2-blue-1100: #1c2e70ff;
|
|
142
|
+
--v2-blue-1200: #1b2852ff;
|
|
143
|
+
|
|
144
|
+
/* ── Purple ── */
|
|
145
|
+
--v2-purple-100: #ebecfeff;
|
|
146
|
+
--v2-purple-200: #d5d5fcff;
|
|
147
|
+
--v2-purple-300: #b9b8f5ff;
|
|
148
|
+
--v2-purple-400: #9e99f7ff;
|
|
149
|
+
--v2-purple-500: #8271f8ff;
|
|
150
|
+
--v2-purple-600: #7152f4ff;
|
|
151
|
+
--v2-purple-700: #623be2ff;
|
|
152
|
+
--v2-purple-800: #5230c2ff;
|
|
153
|
+
--v2-purple-900: #442aa1ff;
|
|
154
|
+
--v2-purple-1000: #361f83ff;
|
|
155
|
+
--v2-purple-1100: #2b1b6aff;
|
|
156
|
+
--v2-purple-1200: #221358ff;
|
|
157
|
+
|
|
158
|
+
/* ── Pink ── */
|
|
159
|
+
--v2-pink-100: #fdecf3ff;
|
|
160
|
+
--v2-pink-200: #f7d5e4ff;
|
|
161
|
+
--v2-pink-300: #fabcd8ff;
|
|
162
|
+
--v2-pink-400: #f799c6ff;
|
|
163
|
+
--v2-pink-500: #f26cb2ff;
|
|
164
|
+
--v2-pink-600: #f64aabff;
|
|
165
|
+
--v2-pink-700: #e4429eff;
|
|
166
|
+
--v2-pink-800: #c83d8bff;
|
|
167
|
+
--v2-pink-900: #aa3576ff;
|
|
168
|
+
--v2-pink-1000: #8c2d61ff;
|
|
169
|
+
--v2-pink-1100: #6f284fff;
|
|
170
|
+
--v2-pink-1200: #5c1d3fff;
|
|
171
|
+
}
|
|
172
|
+
}
|