@aithe/aithe-ui 26.2.3 → 26.3.2
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/README.md +19 -11
- package/dist/apps/admin/app.js +12 -0
- package/dist/apps/admin/components/admin-app.js +83 -0
- package/dist/apps/admin/components/admin-layout.d.ts +0 -1
- package/dist/apps/admin/components/admin-layout.d.ts.map +1 -1
- package/dist/apps/admin/components/admin-layout.js +250 -0
- package/dist/apps/admin/datahub/auth.js +24 -0
- package/dist/apps/admin/datahub/dashboard.js +16 -0
- package/dist/apps/admin/datahub/index.js +42 -0
- package/dist/apps/admin/datahub/menu.js +16 -0
- package/dist/apps/admin/datahub/mock/auth.js +11 -0
- package/dist/apps/admin/datahub/mock/dashboard.js +10 -0
- package/dist/apps/admin/datahub/mock/menu.js +42 -0
- package/dist/apps/admin/i18n/de-DE.js +37 -0
- package/dist/apps/admin/i18n/en-US.js +37 -0
- package/dist/apps/admin/i18n/es-ES.js +38 -0
- package/dist/apps/admin/i18n/fr-FR.js +37 -0
- package/dist/apps/admin/i18n/index.js +27 -0
- package/dist/apps/admin/i18n/ja-JP.js +38 -0
- package/dist/apps/admin/i18n/ko-KR.js +37 -0
- package/dist/apps/admin/i18n/pt-BR.js +37 -0
- package/dist/apps/admin/i18n/zh-CN.js +37 -0
- package/dist/apps/admin/i18n/zh-HK.js +37 -0
- package/dist/apps/admin/i18n/zh-TW.js +37 -0
- package/dist/apps/admin/pages/dashboard-page.d.ts +1 -0
- package/dist/apps/admin/pages/dashboard-page.d.ts.map +1 -1
- package/dist/apps/admin/pages/dashboard-page.js +199 -0
- package/dist/apps/admin/pages/login-page.js +278 -0
- package/dist/apps/admin/pages/not-found-page.js +57 -0
- package/dist/apps/admin/pages/role-page.js +76 -0
- package/dist/apps/admin/pages/settings-page.js +95 -0
- package/dist/apps/admin/pages/user-page.js +76 -0
- package/dist/apps/admin/router/index.js +43 -0
- package/dist/apps/admin/standalone.js +1 -0
- package/dist/apps/admin/store/auth.js +42 -0
- package/dist/apps/api/app.js +82 -0
- package/dist/apps/api/demo-data.d.ts.map +1 -1
- package/dist/apps/api/demo-data.js +965 -0
- package/dist/apps/api/docs-viewer.js +684 -0
- package/dist/apps/api/i18n/de-DE.d.ts.map +1 -1
- package/dist/apps/api/i18n/de-DE.js +131 -0
- package/dist/apps/api/i18n/en-US.d.ts.map +1 -1
- package/dist/apps/api/i18n/en-US.js +141 -0
- package/dist/apps/api/i18n/es-ES.d.ts.map +1 -1
- package/dist/apps/api/i18n/es-ES.js +131 -0
- package/dist/apps/api/i18n/fr-FR.d.ts.map +1 -1
- package/dist/apps/api/i18n/fr-FR.js +131 -0
- package/dist/apps/api/i18n/index.js +27 -0
- package/dist/apps/api/i18n/ja-JP.d.ts.map +1 -1
- package/dist/apps/api/i18n/ja-JP.js +131 -0
- package/dist/apps/api/i18n/ko-KR.d.ts.map +1 -1
- package/dist/apps/api/i18n/ko-KR.js +131 -0
- package/dist/apps/api/i18n/pt-BR.d.ts.map +1 -1
- package/dist/apps/api/i18n/pt-BR.js +131 -0
- package/dist/apps/api/i18n/zh-CN.d.ts.map +1 -1
- package/dist/apps/api/i18n/zh-CN.js +141 -0
- package/dist/apps/api/i18n/zh-HK.d.ts.map +1 -1
- package/dist/apps/api/i18n/zh-HK.js +131 -0
- package/dist/apps/api/i18n/zh-TW.d.ts.map +1 -1
- package/dist/apps/api/i18n/zh-TW.js +131 -0
- package/dist/apps/api/pages/docs.d.ts.map +1 -1
- package/dist/apps/api/pages/docs.js +369 -0
- package/dist/apps/api/standalone.js +1 -0
- package/dist/apps/demo/app.d.ts.map +1 -1
- package/dist/apps/demo/app.js +275 -0
- package/dist/apps/demo/editor.d.ts.map +1 -1
- package/dist/apps/demo/editor.js +270 -0
- package/dist/apps/demo/helpers.js +7 -0
- package/dist/apps/demo/i18n/de-DE.d.ts.map +1 -1
- package/dist/apps/demo/i18n/de-DE.js +289 -0
- package/dist/apps/demo/i18n/en-US.d.ts.map +1 -1
- package/dist/apps/demo/i18n/en-US.js +301 -0
- package/dist/apps/demo/i18n/es-ES.d.ts.map +1 -1
- package/dist/apps/demo/i18n/es-ES.js +289 -0
- package/dist/apps/demo/i18n/fr-FR.d.ts.map +1 -1
- package/dist/apps/demo/i18n/fr-FR.js +289 -0
- package/dist/apps/demo/i18n/index.js +27 -0
- package/dist/apps/demo/i18n/ja-JP.d.ts.map +1 -1
- package/dist/apps/demo/i18n/ja-JP.js +289 -0
- package/dist/apps/demo/i18n/ko-KR.d.ts.map +1 -1
- package/dist/apps/demo/i18n/ko-KR.js +289 -0
- package/dist/apps/demo/i18n/pt-BR.d.ts.map +1 -1
- package/dist/apps/demo/i18n/pt-BR.js +289 -0
- package/dist/apps/demo/i18n/zh-CN.d.ts.map +1 -1
- package/dist/apps/demo/i18n/zh-CN.js +301 -0
- package/dist/apps/demo/i18n/zh-HK.d.ts.map +1 -1
- package/dist/apps/demo/i18n/zh-HK.js +289 -0
- package/dist/apps/demo/i18n/zh-TW.d.ts.map +1 -1
- package/dist/apps/demo/i18n/zh-TW.js +289 -0
- package/dist/apps/demo/pages/autoform.d.ts.map +1 -1
- package/dist/apps/demo/pages/autoform.js +422 -0
- package/dist/apps/demo/pages/autoview.d.ts +3 -0
- package/dist/apps/demo/pages/autoview.d.ts.map +1 -0
- package/dist/apps/demo/pages/autoview.js +310 -0
- package/dist/apps/demo/pages/basic.js +157 -0
- package/dist/apps/demo/pages/code.js +1088 -0
- package/dist/apps/demo/pages/container.js +42 -0
- package/dist/apps/demo/pages/dashboard.js +159 -0
- package/dist/apps/demo/pages/data.d.ts.map +1 -1
- package/dist/apps/demo/pages/data.js +327 -0
- package/dist/apps/demo/pages/display.d.ts.map +1 -1
- package/dist/apps/demo/pages/display.js +295 -0
- package/dist/apps/demo/pages/feedback.js +94 -0
- package/dist/apps/demo/pages/form.d.ts.map +1 -1
- package/dist/apps/demo/pages/form.js +119 -0
- package/dist/apps/demo/pages/layout.js +74 -0
- package/dist/apps/demo/pages/navigation.js +54 -0
- package/dist/apps/demo/pages/progress.js +42 -0
- package/dist/apps/demo/pages/theme.js +126 -0
- package/dist/apps/demo/standalone.js +1 -0
- package/dist/components/basic/AGENTS.md +1 -0
- package/dist/components/basic/avatar.js +168 -0
- package/dist/components/basic/badge.js +157 -0
- package/dist/components/basic/button-group.js +70 -0
- package/dist/components/basic/button.d.ts +2 -4
- package/dist/components/basic/button.d.ts.map +1 -1
- package/dist/components/basic/button.js +315 -0
- package/dist/components/basic/card.js +186 -0
- package/dist/components/basic/chip.js +103 -0
- package/dist/components/basic/divider.js +127 -0
- package/dist/components/basic/empty.js +72 -0
- package/dist/components/basic/icon.js +129 -0
- package/dist/components/basic/input.d.ts.map +1 -1
- package/dist/components/basic/input.js +314 -0
- package/dist/components/basic/tag.d.ts +7 -2
- package/dist/components/basic/tag.d.ts.map +1 -1
- package/dist/components/basic/tag.js +248 -0
- package/dist/components/basic/textarea.d.ts +0 -1
- package/dist/components/basic/textarea.d.ts.map +1 -1
- package/dist/components/basic/textarea.js +130 -0
- package/dist/components/container/callout.js +108 -0
- package/dist/components/container/details.js +117 -0
- package/dist/components/container/scroller.js +144 -0
- package/dist/components/container/split-panel.js +150 -0
- package/dist/components/data/AGENTS.md +1 -1
- package/dist/components/data/box-table.d.ts +53 -0
- package/dist/components/data/box-table.d.ts.map +1 -0
- package/dist/components/data/box-table.js +220 -0
- package/dist/components/data/dropdown.d.ts +8 -5
- package/dist/components/data/dropdown.d.ts.map +1 -1
- package/dist/components/data/dropdown.js +219 -0
- package/dist/components/data/metrics-group.js +180 -0
- package/dist/components/data/metrics.d.ts +11 -0
- package/dist/components/data/metrics.d.ts.map +1 -1
- package/dist/components/data/metrics.js +309 -0
- package/dist/components/data/pagination.js +119 -0
- package/dist/components/data/tab-pane.d.ts +58 -12
- package/dist/components/data/tab-pane.d.ts.map +1 -1
- package/dist/components/data/tab-pane.js +130 -0
- package/dist/components/data/table-column.d.ts +29 -5
- package/dist/components/data/table-column.d.ts.map +1 -1
- package/dist/components/data/table-column.js +123 -0
- package/dist/components/data/table.d.ts +134 -54
- package/dist/components/data/table.d.ts.map +1 -1
- package/dist/components/data/table.js +1210 -0
- package/dist/components/data/tabs.d.ts +60 -3
- package/dist/components/data/tabs.d.ts.map +1 -1
- package/dist/components/data/tabs.js +416 -0
- package/dist/components/data/timeline-item.js +127 -0
- package/dist/components/data/timeline.js +204 -0
- package/dist/components/data/tree-menu.d.ts +12 -2
- package/dist/components/data/tree-menu.d.ts.map +1 -1
- package/dist/components/data/tree-menu.js +482 -0
- package/dist/components/data/tree.js +269 -0
- package/dist/components/display/AGENTS.md +5 -2
- package/dist/components/display/animated-image.js +98 -0
- package/dist/components/display/autoview.d.ts +139 -0
- package/dist/components/display/autoview.d.ts.map +1 -0
- package/dist/components/display/autoview.js +460 -0
- package/dist/components/display/brief-box.d.ts +42 -0
- package/dist/components/display/brief-box.d.ts.map +1 -0
- package/dist/components/display/brief-box.js +117 -0
- package/dist/components/display/carousel.js +223 -0
- package/dist/components/display/code-editor.d.ts.map +1 -1
- package/dist/components/display/code-editor.js +976 -0
- package/dist/components/display/comparison.js +132 -0
- package/dist/components/display/desc-item.d.ts +48 -0
- package/dist/components/display/desc-item.d.ts.map +1 -0
- package/dist/components/display/desc-item.js +150 -0
- package/dist/components/display/desc.d.ts +68 -0
- package/dist/components/display/desc.d.ts.map +1 -0
- package/dist/components/display/desc.js +405 -0
- package/dist/components/display/detail-box.d.ts +51 -0
- package/dist/components/display/detail-box.d.ts.map +1 -0
- package/dist/components/display/detail-box.js +157 -0
- package/dist/components/display/label.js +166 -0
- package/dist/components/display/markdown-editor.js +319 -0
- package/dist/components/display/markdown.d.ts.map +1 -1
- package/dist/components/display/markdown.js +193 -0
- package/dist/components/display/mini-box.d.ts +31 -0
- package/dist/components/display/mini-box.d.ts.map +1 -0
- package/dist/components/display/mini-box.js +137 -0
- package/dist/components/display/profile.d.ts +18 -0
- package/dist/components/display/profile.d.ts.map +1 -0
- package/dist/components/display/profile.js +164 -0
- package/dist/components/feedback/AGENTS.md +1 -0
- package/dist/components/feedback/alert.js +150 -0
- package/dist/components/feedback/dialog.js +228 -0
- package/dist/components/feedback/drawer.d.ts.map +1 -1
- package/dist/components/feedback/drawer.js +338 -0
- package/dist/components/feedback/loading.js +130 -0
- package/dist/components/feedback/modal.d.ts.map +1 -1
- package/dist/components/feedback/modal.js +303 -0
- package/dist/components/feedback/notification.js +170 -0
- package/dist/components/feedback/popover.d.ts +1 -1
- package/dist/components/feedback/popover.js +124 -0
- package/dist/components/feedback/toast.js +142 -0
- package/dist/components/feedback/tooltip.d.ts +1 -1
- package/dist/components/feedback/tooltip.js +153 -0
- package/dist/components/form/AGENTS.md +4 -0
- package/dist/components/form/autoform-item.d.ts +6 -0
- package/dist/components/form/autoform-item.d.ts.map +1 -1
- package/dist/components/form/autoform-item.js +791 -0
- package/dist/components/form/autoform.d.ts +15 -5
- package/dist/components/form/autoform.d.ts.map +1 -1
- package/dist/components/form/autoform.js +303 -0
- package/dist/components/form/checkbox-group.js +118 -0
- package/dist/components/form/checkbox.js +123 -0
- package/dist/components/form/color-picker.js +148 -0
- package/dist/components/form/combobox.d.ts +4 -0
- package/dist/components/form/combobox.d.ts.map +1 -1
- package/dist/components/form/combobox.js +325 -0
- package/dist/components/form/date-picker.js +123 -0
- package/dist/components/form/form-item.d.ts.map +1 -1
- package/dist/components/form/form-item.js +141 -0
- package/dist/components/form/form.js +94 -0
- package/dist/components/form/radio-group.js +106 -0
- package/dist/components/form/radio.js +110 -0
- package/dist/components/form/rate.js +116 -0
- package/dist/components/form/select.d.ts +5 -1
- package/dist/components/form/select.d.ts.map +1 -1
- package/dist/components/form/select.js +539 -0
- package/dist/components/form/slider.js +134 -0
- package/dist/components/form/switch.js +146 -0
- package/dist/components/form/time-picker.js +92 -0
- package/dist/components/form/transfer.js +273 -0
- package/dist/components/form/upload.js +138 -0
- package/dist/components/framework/body.js +333 -0
- package/dist/components/framework/dashboard-panel.js +519 -0
- package/dist/components/framework/dashboard.d.ts.map +1 -1
- package/dist/components/framework/dashboard.js +1084 -0
- package/dist/components/framework/header.js +237 -0
- package/dist/components/framework/log-panel.js +637 -0
- package/dist/components/framework/page.js +151 -0
- package/dist/components/framework/sidebar.d.ts +4 -10
- package/dist/components/framework/sidebar.d.ts.map +1 -1
- package/dist/components/framework/sidebar.js +477 -0
- package/dist/components/layout/affix.js +137 -0
- package/dist/components/layout/col.js +103 -0
- package/dist/components/layout/collapse-item.js +165 -0
- package/dist/components/layout/collapse.js +108 -0
- package/dist/components/layout/container.js +92 -0
- package/dist/components/layout/flex.js +100 -0
- package/dist/components/layout/row.js +103 -0
- package/dist/components/layout/space.js +85 -0
- package/dist/components/navigation/back-top.js +127 -0
- package/dist/components/navigation/breadcrumb-item.js +108 -0
- package/dist/components/navigation/breadcrumb.js +70 -0
- package/dist/components/navigation/menu-item.js +181 -0
- package/dist/components/navigation/menu.js +126 -0
- package/dist/components/navigation/steps.js +183 -0
- package/dist/components/navigation/sub-menu.d.ts.map +1 -1
- package/dist/components/navigation/sub-menu.js +252 -0
- package/dist/components/progress/progress-bar.js +97 -0
- package/dist/components/progress/progress-ring.js +111 -0
- package/dist/components/progress/skeleton.js +108 -0
- package/dist/components/progress/spinner.js +129 -0
- package/dist/components/theme/locale-switch.js +241 -0
- package/dist/components/theme/shadow-picker.js +233 -0
- package/dist/components/theme/shape-picker.js +232 -0
- package/dist/components/theme/theme-picker.js +236 -0
- package/dist/components/theme/theme-preview.d.ts +1 -2
- package/dist/components/theme/theme-preview.d.ts.map +1 -1
- package/dist/components/theme/theme-preview.js +376 -0
- package/dist/components/theme/theme-switch.d.ts.map +1 -1
- package/dist/components/theme/theme-switch.js +318 -0
- package/dist/components/theme/typo-picker.js +219 -0
- package/dist/core/AGENTS.md +6 -1
- package/dist/core/aithe-element.d.ts +2 -2
- package/dist/core/aithe-element.js +135 -0
- package/dist/core/aithe-widget.js +30 -0
- package/dist/core/anchored-overlay.d.ts +3 -0
- package/dist/core/anchored-overlay.d.ts.map +1 -1
- package/dist/core/anchored-overlay.js +111 -0
- package/dist/core/autoform/autoform.js +79 -0
- package/dist/core/autoform/autoview.d.ts +86 -0
- package/dist/core/autoform/autoview.d.ts.map +1 -0
- package/dist/core/autoform/autoview.js +37 -0
- package/dist/core/autoform/condition.js +170 -0
- package/dist/core/autoform/index.d.ts +2 -0
- package/dist/core/autoform/index.d.ts.map +1 -1
- package/dist/core/autoform/index.js +9 -0
- package/dist/core/autoform/types.js +7 -0
- package/dist/core/datahub/__tests__/force-options.test.d.ts +8 -0
- package/dist/core/datahub/__tests__/force-options.test.d.ts.map +1 -0
- package/dist/core/datahub/__tests__/force-options.test.js +161 -0
- package/dist/core/datahub/config/strategy.d.ts +1 -1
- package/dist/core/datahub/config/strategy.d.ts.map +1 -1
- package/dist/core/datahub/config/strategy.js +50 -0
- package/dist/core/datahub/core/adapter/fetch-adapter.d.ts +1 -1
- package/dist/core/datahub/core/adapter/fetch-adapter.d.ts.map +1 -1
- package/dist/core/datahub/core/adapter/fetch-adapter.js +118 -0
- package/dist/core/datahub/core/adapter/index.js +7 -0
- package/dist/core/datahub/core/adapter/mock-adapter.d.ts +1 -1
- package/dist/core/datahub/core/adapter/mock-adapter.d.ts.map +1 -1
- package/dist/core/datahub/core/adapter/mock-adapter.js +58 -0
- package/dist/core/datahub/core/api-styles.d.ts +1 -1
- package/dist/core/datahub/core/api-styles.d.ts.map +1 -1
- package/dist/core/datahub/core/api-styles.js +136 -0
- package/dist/core/datahub/core/datahub-core.d.ts +53 -3
- package/dist/core/datahub/core/datahub-core.d.ts.map +1 -1
- package/dist/core/datahub/core/datahub-core.js +520 -0
- package/dist/core/datahub/core/index.js +7 -0
- package/dist/core/datahub/index.js +50 -0
- package/dist/core/datahub/types.d.ts +24 -0
- package/dist/core/datahub/types.d.ts.map +1 -1
- package/dist/core/datahub/types.js +31 -0
- package/dist/core/datahub/utils/cache.js +55 -0
- package/dist/core/datahub/utils/common.js +23 -0
- package/dist/core/datahub/utils/dedup.d.ts +1 -1
- package/dist/core/datahub/utils/dedup.d.ts.map +1 -1
- package/dist/core/datahub/utils/dedup.js +52 -0
- package/dist/core/datahub/utils/idempotent.js +61 -0
- package/dist/core/datahub/utils/is-query.js +53 -0
- package/dist/core/datahub/utils/loading.js +78 -0
- package/dist/core/filter/__tests__/index.test.d.ts +2 -0
- package/dist/core/filter/__tests__/index.test.d.ts.map +1 -0
- package/dist/core/filter/__tests__/index.test.js +230 -0
- package/dist/core/filter/builtins.d.ts +60 -0
- package/dist/core/filter/builtins.d.ts.map +1 -0
- package/dist/core/filter/builtins.js +172 -0
- package/dist/core/filter/factory.d.ts +54 -0
- package/dist/core/filter/factory.d.ts.map +1 -0
- package/dist/core/filter/factory.js +96 -0
- package/dist/core/filter/index.d.ts +11 -0
- package/dist/core/filter/index.d.ts.map +1 -0
- package/dist/core/filter/index.js +9 -0
- package/dist/core/filter/types.d.ts +12 -0
- package/dist/core/filter/types.d.ts.map +1 -0
- package/dist/core/filter/types.js +1 -0
- package/dist/core/floating.js +132 -0
- package/dist/core/highlight/index.js +43 -0
- package/dist/core/highlight/lang-bash.js +27 -0
- package/dist/core/highlight/lang-c.js +27 -0
- package/dist/core/highlight/lang-cmake.js +27 -0
- package/dist/core/highlight/lang-cpp.js +27 -0
- package/dist/core/highlight/lang-css.js +24 -0
- package/dist/core/highlight/lang-dart.js +27 -0
- package/dist/core/highlight/lang-dockerfile.js +16 -0
- package/dist/core/highlight/lang-fsharp.js +23 -0
- package/dist/core/highlight/lang-go.js +22 -0
- package/dist/core/highlight/lang-html.js +12 -0
- package/dist/core/highlight/lang-java.js +22 -0
- package/dist/core/highlight/lang-javascript.js +26 -0
- package/dist/core/highlight/lang-json.js +13 -0
- package/dist/core/highlight/lang-jsonline.js +13 -0
- package/dist/core/highlight/lang-jsx.js +30 -0
- package/dist/core/highlight/lang-kotlin.js +27 -0
- package/dist/core/highlight/lang-latex.js +22 -0
- package/dist/core/highlight/lang-lua.js +26 -0
- package/dist/core/highlight/lang-makefile.js +22 -0
- package/dist/core/highlight/lang-markdown.js +18 -0
- package/dist/core/highlight/lang-objectivec.js +24 -0
- package/dist/core/highlight/lang-perl.js +30 -0
- package/dist/core/highlight/lang-powershell.js +23 -0
- package/dist/core/highlight/lang-python.js +27 -0
- package/dist/core/highlight/lang-r.js +21 -0
- package/dist/core/highlight/lang-ruby.js +29 -0
- package/dist/core/highlight/lang-rust.js +24 -0
- package/dist/core/highlight/lang-scala.js +26 -0
- package/dist/core/highlight/lang-sql.js +21 -0
- package/dist/core/highlight/lang-svelte.js +27 -0
- package/dist/core/highlight/lang-swift.js +28 -0
- package/dist/core/highlight/lang-tsx.js +35 -0
- package/dist/core/highlight/lang-typescript.js +31 -0
- package/dist/core/highlight/lang-vue.js +29 -0
- package/dist/core/highlight/lang-wasm.js +22 -0
- package/dist/core/highlight/lang-xml.js +12 -0
- package/dist/core/highlight/lang-yaml.js +14 -0
- package/dist/core/highlight/registry.js +99 -0
- package/dist/core/logger/LoggerCore.js +626 -0
- package/dist/core/logger/index.js +10 -0
- package/dist/core/logger/types.js +29 -0
- package/dist/core/markdown/index.js +20 -0
- package/dist/core/markdown/parser.d.ts +2 -0
- package/dist/core/markdown/parser.d.ts.map +1 -1
- package/dist/core/markdown/parser.js +376 -0
- package/dist/core/markdown/plugins.d.ts +2 -1
- package/dist/core/markdown/plugins.d.ts.map +1 -1
- package/dist/core/markdown/plugins.js +755 -0
- package/dist/core/markdown/types.d.ts +5 -0
- package/dist/core/markdown/types.d.ts.map +1 -1
- package/dist/core/markdown/types.js +7 -0
- package/dist/core/router/index.js +244 -0
- package/dist/core/styles.js +44 -0
- package/dist/core/types.d.ts +52 -3
- package/dist/core/types.d.ts.map +1 -1
- package/dist/core/types.js +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3695 -1622
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +1844 -758
- package/dist/index.umd.js.map +1 -1
- package/dist/styles/aithe-ui.d.ts +23 -0
- package/dist/styles/aithe-ui.d.ts.map +1 -1
- package/dist/styles/aithe-ui.js +185 -0
- package/dist/styles/global.css.d.ts +1 -1
- package/dist/styles/global.css.d.ts.map +1 -1
- package/dist/styles/global.css.js +119 -0
- package/dist/styles/i18n/index.js +206 -0
- package/dist/styles/i18n/locales/de-DE.d.ts.map +1 -1
- package/dist/styles/i18n/locales/de-DE.js +151 -0
- package/dist/styles/i18n/locales/en-US.d.ts.map +1 -1
- package/dist/styles/i18n/locales/en-US.js +160 -0
- package/dist/styles/i18n/locales/es-ES.d.ts.map +1 -1
- package/dist/styles/i18n/locales/es-ES.js +151 -0
- package/dist/styles/i18n/locales/fr-FR.d.ts.map +1 -1
- package/dist/styles/i18n/locales/fr-FR.js +151 -0
- package/dist/styles/i18n/locales/index.js +14 -0
- package/dist/styles/i18n/locales/ja-JP.d.ts.map +1 -1
- package/dist/styles/i18n/locales/ja-JP.js +151 -0
- package/dist/styles/i18n/locales/ko-KR.d.ts.map +1 -1
- package/dist/styles/i18n/locales/ko-KR.js +151 -0
- package/dist/styles/i18n/locales/pt-BR.d.ts.map +1 -1
- package/dist/styles/i18n/locales/pt-BR.js +151 -0
- package/dist/styles/i18n/locales/zh-CN.d.ts.map +1 -1
- package/dist/styles/i18n/locales/zh-CN.js +160 -0
- package/dist/styles/i18n/locales/zh-HK.d.ts.map +1 -1
- package/dist/styles/i18n/locales/zh-HK.js +151 -0
- package/dist/styles/i18n/locales/zh-TW.d.ts.map +1 -1
- package/dist/styles/i18n/locales/zh-TW.js +151 -0
- package/dist/styles/layout/index.js +88 -0
- package/dist/styles/mixins.js +43 -0
- package/dist/styles/shadow/cyber.js +19 -0
- package/dist/styles/shadow/deep.js +19 -0
- package/dist/styles/shadow/diffuse.js +19 -0
- package/dist/styles/shadow/flat.js +19 -0
- package/dist/styles/shadow/glassmorphism.js +19 -0
- package/dist/styles/shadow/index.js +129 -0
- package/dist/styles/shadow/neumorphism.js +21 -0
- package/dist/styles/shadow/retro.js +19 -0
- package/dist/styles/shadow/sharp-business.js +19 -0
- package/dist/styles/shadow/skeuomorphic.js +21 -0
- package/dist/styles/shape/chamfer.js +19 -0
- package/dist/styles/shape/circle.js +19 -0
- package/dist/styles/shape/index.js +174 -0
- package/dist/styles/shape/organic.js +19 -0
- package/dist/styles/shape/pill.js +19 -0
- package/dist/styles/shape/rounded.js +21 -0
- package/dist/styles/shape/rounder.js +19 -0
- package/dist/styles/shape/sharp.js +19 -0
- package/dist/styles/shape/smooth.js +19 -0
- package/dist/styles/theme/aliyun.d.ts +1 -1
- package/dist/styles/theme/aliyun.d.ts.map +1 -1
- package/dist/styles/theme/aliyun.js +102 -0
- package/dist/styles/theme/amber.d.ts +1 -1
- package/dist/styles/theme/amber.d.ts.map +1 -1
- package/dist/styles/theme/amber.js +101 -0
- package/dist/styles/theme/blue.d.ts +1 -1
- package/dist/styles/theme/blue.d.ts.map +1 -1
- package/dist/styles/theme/blue.js +101 -0
- package/dist/styles/theme/charcoal.d.ts +1 -1
- package/dist/styles/theme/charcoal.d.ts.map +1 -1
- package/dist/styles/theme/charcoal.js +106 -0
- package/dist/styles/theme/cyan.d.ts +1 -1
- package/dist/styles/theme/cyan.d.ts.map +1 -1
- package/dist/styles/theme/cyan.js +96 -0
- package/dist/styles/theme/dark.d.ts +1 -1
- package/dist/styles/theme/dark.d.ts.map +1 -1
- package/dist/styles/theme/dark.js +106 -0
- package/dist/styles/theme/ebony.d.ts +1 -1
- package/dist/styles/theme/ebony.d.ts.map +1 -1
- package/dist/styles/theme/ebony.js +106 -0
- package/dist/styles/theme/festive.d.ts +1 -1
- package/dist/styles/theme/festive.d.ts.map +1 -1
- package/dist/styles/theme/festive.js +101 -0
- package/dist/styles/theme/graphite.d.ts +1 -1
- package/dist/styles/theme/graphite.d.ts.map +1 -1
- package/dist/styles/theme/graphite.js +106 -0
- package/dist/styles/theme/gray.d.ts +1 -1
- package/dist/styles/theme/gray.d.ts.map +1 -1
- package/dist/styles/theme/gray.js +101 -0
- package/dist/styles/theme/huawei.d.ts +1 -1
- package/dist/styles/theme/huawei.d.ts.map +1 -1
- package/dist/styles/theme/huawei.js +102 -0
- package/dist/styles/theme/index.d.ts +1 -1
- package/dist/styles/theme/index.d.ts.map +1 -1
- package/dist/styles/theme/index.js +276 -0
- package/dist/styles/theme/indigo.d.ts +1 -1
- package/dist/styles/theme/indigo.d.ts.map +1 -1
- package/dist/styles/theme/indigo.js +101 -0
- package/dist/styles/theme/ink.d.ts +1 -1
- package/dist/styles/theme/ink.d.ts.map +1 -1
- package/dist/styles/theme/ink.js +106 -0
- package/dist/styles/theme/light.d.ts +1 -1
- package/dist/styles/theme/light.d.ts.map +1 -1
- package/dist/styles/theme/light.js +102 -0
- package/dist/styles/theme/midnight.d.ts +1 -1
- package/dist/styles/theme/midnight.d.ts.map +1 -1
- package/dist/styles/theme/midnight.js +106 -0
- package/dist/styles/theme/navy.d.ts +1 -1
- package/dist/styles/theme/navy.d.ts.map +1 -1
- package/dist/styles/theme/navy.js +106 -0
- package/dist/styles/theme/obsidian.d.ts +1 -1
- package/dist/styles/theme/obsidian.d.ts.map +1 -1
- package/dist/styles/theme/obsidian.js +106 -0
- package/dist/styles/theme/onyx.d.ts +1 -1
- package/dist/styles/theme/onyx.d.ts.map +1 -1
- package/dist/styles/theme/onyx.js +106 -0
- package/dist/styles/theme/orange.d.ts +1 -1
- package/dist/styles/theme/orange.d.ts.map +1 -1
- package/dist/styles/theme/orange.js +101 -0
- package/dist/styles/theme/pink.d.ts +1 -1
- package/dist/styles/theme/pink.d.ts.map +1 -1
- package/dist/styles/theme/pink.js +101 -0
- package/dist/styles/theme/purple.d.ts +1 -1
- package/dist/styles/theme/purple.d.ts.map +1 -1
- package/dist/styles/theme/purple.js +101 -0
- package/dist/styles/theme/raisin.d.ts +1 -1
- package/dist/styles/theme/raisin.d.ts.map +1 -1
- package/dist/styles/theme/raisin.js +106 -0
- package/dist/styles/theme/slate.d.ts +1 -1
- package/dist/styles/theme/slate.d.ts.map +1 -1
- package/dist/styles/theme/slate.js +106 -0
- package/dist/styles/theme/teal.d.ts +1 -1
- package/dist/styles/theme/teal.d.ts.map +1 -1
- package/dist/styles/theme/teal.js +101 -0
- package/dist/styles/theme/tianyi.d.ts +1 -1
- package/dist/styles/theme/tianyi.d.ts.map +1 -1
- package/dist/styles/theme/tianyi.js +102 -0
- package/dist/styles/types.js +1 -0
- package/dist/styles/typo/business.js +34 -0
- package/dist/styles/typo/compact.js +34 -0
- package/dist/styles/typo/index.js +99 -0
- package/dist/styles/typo/luxury.js +34 -0
- package/dist/styles/typo/minimal.js +34 -0
- package/dist/types/index.js +2 -0
- package/dist/utils/dom.js +51 -0
- package/dist/utils/events.js +32 -0
- package/dist/utils/icon.js +176 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/utils.d.ts +5 -5
- package/dist/utils/utils.js +89 -0
- package/dist/utils/validation.js +52 -0
- package/docs/api/basic/button.md +9 -6
- package/docs/api/basic/tag.md +24 -17
- package/docs/api/data/box-table.md +73 -0
- package/docs/api/data/dropdown.md +3 -2
- package/docs/api/data/metrics.md +2 -0
- package/docs/api/data/table-column.md +37 -23
- package/docs/api/data/table.md +158 -44
- package/docs/api/data/tabs.md +46 -1
- package/docs/api/data/tree-menu.md +55 -2
- package/docs/api/display/autoview.md +277 -0
- package/docs/api/display/box.md +66 -0
- package/docs/api/display/brief-box.md +73 -0
- package/docs/api/display/desc-item.md +57 -0
- package/docs/api/display/desc.md +246 -0
- package/docs/api/display/detail-box.md +75 -0
- package/docs/api/display/mini-box.md +100 -0
- package/docs/api/display/profile.md +92 -0
- package/docs/api/feedback/popover.md +10 -10
- package/docs/api/feedback/tooltip.md +14 -14
- package/docs/api/form/autoform-item.md +115 -0
- package/docs/api/form/autoform.md +7 -3
- package/docs/api/form/combobox.md +27 -7
- package/docs/api/form/select.md +50 -28
- package/docs/api/framework/log-panel.md +46 -0
- package/docs/api/framework/sidebar.md +3 -2
- package/docs/api/summary.md +46 -35
- package/docs/api/theme/theme-switch.md +1 -1
- package/docs/autoform.md +14 -33
- package/docs/changelog/CHANGELOG.md +155 -0
- package/docs/changelog/VERSION_26.3.1.md +966 -0
- package/docs/changelog/VERSION_26.3.2.md +852 -0
- package/docs/datahub.md +4 -1
- package/docs/filter.md +332 -0
- package/docs/framework-integration.md +2 -2
- package/docs/guide.md +72 -6
- package/docs/i18n.md +2 -4
- package/docs/issue/26.3.1/issue_26.3.1.0.md +84 -0
- package/docs/issue/26.3.1/issue_26.3.1.1.md +72 -0
- package/docs/issue/26.3.1/issue_26.3.1.2.md +75 -0
- package/docs/issue/26.3.1/issue_26.3.1.3.md +78 -0
- package/docs/issue/26.3.1/issue_26.3.1.4.md +113 -0
- package/docs/issue/26.3.1/issue_26.3.1.5.md +142 -0
- package/docs/issue/26.3.1/issue_26.3.1.6.md +100 -0
- package/docs/issue/26.3.1/issue_26.3.1.7.md +78 -0
- package/docs/issue/26.3.2/issue_26.3.2.1.md +46 -0
- package/docs/issue/26.3.2/issue_26.3.2.2.md +82 -0
- package/docs/issue/26.3.2/issue_26.3.2.3.md +57 -0
- package/docs/issue/26.3.2/issue_26.3.2.4.md +43 -0
- package/docs/issue/AGENTS.md +24 -3
- package/docs/markdown.md +2 -2
- package/docs/quickstart.md +5 -5
- package/docs/theming.md +5 -4
- package/package.json +5 -2
- package/dist/components/navigation/dropdown.d.ts +0 -56
- package/dist/components/navigation/dropdown.d.ts.map +0 -1
- /package/docs/issue/{issue_26.2.2.1.md → 26.2.2/issue_26.2.2.1.md} +0 -0
- /package/docs/issue/{issue_26.2.2.2.md → 26.2.2/issue_26.2.2.2.md} +0 -0
- /package/docs/issue/{issue_26.2.2.3.md → 26.2.2/issue_26.2.2.3.md} +0 -0
- /package/docs/issue/{issue_26.2.2.4.md → 26.2.2/issue_26.2.2.4.md} +0 -0
- /package/docs/issue/{issue_26.2.3.1.md → 26.2.3/issue_26.2.3.1.md} +0 -0
- /package/docs/issue/{issue_26.2.3.10.md → 26.2.3/issue_26.2.3.10.md} +0 -0
- /package/docs/issue/{issue_26.2.3.11.md → 26.2.3/issue_26.2.3.11.md} +0 -0
- /package/docs/issue/{issue_26.2.3.12.md → 26.2.3/issue_26.2.3.12.md} +0 -0
- /package/docs/issue/{issue_26.2.3.13.md → 26.2.3/issue_26.2.3.13.md} +0 -0
- /package/docs/issue/{issue_26.2.3.14.md → 26.2.3/issue_26.2.3.14.md} +0 -0
- /package/docs/issue/{issue_26.2.3.15.md → 26.2.3/issue_26.2.3.15.md} +0 -0
- /package/docs/issue/{issue_26.2.3.16.md → 26.2.3/issue_26.2.3.16.md} +0 -0
- /package/docs/issue/{issue_26.2.3.2.md → 26.2.3/issue_26.2.3.2.md} +0 -0
- /package/docs/issue/{issue_26.2.3.3.md → 26.2.3/issue_26.2.3.3.md} +0 -0
- /package/docs/issue/{issue_26.2.3.4.md → 26.2.3/issue_26.2.3.4.md} +0 -0
- /package/docs/issue/{issue_26.2.3.5.md → 26.2.3/issue_26.2.3.5.md} +0 -0
- /package/docs/issue/{issue_26.2.3.6.md → 26.2.3/issue_26.2.3.6.md} +0 -0
- /package/docs/issue/{issue_26.2.3.7.md → 26.2.3/issue_26.2.3.7.md} +0 -0
- /package/docs/issue/{issue_26.2.3.8.md → 26.2.3/issue_26.2.3.8.md} +0 -0
- /package/docs/issue/{issue_26.2.3.9.md → 26.2.3/issue_26.2.3.9.md} +0 -0
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Soft & fresh, young & friendly with warm pink-tinted backgrounds.
|
|
6
6
|
* 柔和清新、年轻友好,配暖粉背景。
|
|
7
7
|
*/
|
|
8
|
-
export declare const pinkThemeTokens = "\n.aithe-theme-pink,\n[data-aithe-theme='pink'] {\n color-scheme: light;\n --aithe-primary-1: #fff0f6;\n --aithe-primary-2: #ffdce8;\n --aithe-primary-3: #ffc0d6;\n --aithe-primary-4: #ff9ebe;\n --aithe-primary-5: #f574a8;\n --aithe-primary-6: #e04d8a;\n --aithe-primary-7: #c03070;\n --aithe-primary-8: #9e1e5a;\n --aithe-primary-9: #7a1246;\n --aithe-primary-10: #560a32;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #faf8f9;\n --aithe-neutral-2: #f2eef0;\n --aithe-neutral-3: #e4dce0;\n --aithe-neutral-4: #cec0c8;\n --aithe-neutral-5: #b0a0aa;\n --aithe-neutral-6: #92828e;\n --aithe-neutral-7: #746474;\n --aithe-neutral-8: #564858;\n --aithe-neutral-9: #382e3a;\n --aithe-neutral-10: #1c161e;\n --aithe-color-bg: #faf0f4;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fef6f9 0%, #f5e8ef 100%);\n --aithe-color-surface: rgba(255, 250, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e2ea;\n --aithe-color-border: rgba(160, 60, 100, 0.18);\n --aithe-color-border-strong: rgba(140, 40, 80, 0.28);\n --aithe-color-text: #2a0e1c;\n --aithe-color-text-muted: #643052;\n --aithe-color-text-subtle: #946282;\n --aithe-color-overlay: rgba(30, 10, 20, 0.48);\n --aithe-color-selection: rgba(224, 77, 138, 0.16);\n --aithe-color-focus-ring: rgba(224, 77, 138, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #db2777;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #db2777;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #92828e;\n --aithe-code-doctype: #92828e;\n --aithe-code-placeholder: #92828e;\n}\n";
|
|
8
|
+
export declare const pinkThemeTokens = "\n.aithe-theme-pink,\n[data-aithe-theme='pink'] {\n color-scheme: light;\n --aithe-primary-1: #fff0f6;\n --aithe-primary-2: #ffdce8;\n --aithe-primary-3: #ffc0d6;\n --aithe-primary-4: #ff9ebe;\n --aithe-primary-5: #f574a8;\n --aithe-primary-6: #e04d8a;\n --aithe-primary-7: #c03070;\n --aithe-primary-8: #9e1e5a;\n --aithe-primary-9: #7a1246;\n --aithe-primary-10: #560a32;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #faf8f9;\n --aithe-neutral-2: #f2eef0;\n --aithe-neutral-3: #e4dce0;\n --aithe-neutral-4: #cec0c8;\n --aithe-neutral-5: #b0a0aa;\n --aithe-neutral-6: #92828e;\n --aithe-neutral-7: #746474;\n --aithe-neutral-8: #564858;\n --aithe-neutral-9: #382e3a;\n --aithe-neutral-10: #1c161e;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf0f4;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fef6f9 0%, #f5e8ef 100%);\n --aithe-color-surface: rgba(255, 250, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f0e2ea;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(160, 60, 100, 0.18);\n --aithe-color-border-strong: rgba(140, 40, 80, 0.28);\n --aithe-color-text: #2a0e1c;\n --aithe-color-text-muted: #643052;\n --aithe-color-text-subtle: #946282;\n --aithe-color-overlay: rgba(30, 10, 20, 0.48);\n --aithe-color-selection: rgba(224, 77, 138, 0.16);\n --aithe-color-focus-ring: rgba(224, 77, 138, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #db2777;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #db2777;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #92828e;\n --aithe-code-doctype: #92828e;\n --aithe-code-placeholder: #92828e;\n}\n";
|
|
9
9
|
//# sourceMappingURL=pink.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pink.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/pink.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"pink.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/pink.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,inGA6F3B,CAAC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pink theme tokens.
|
|
3
|
+
* 粉色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Soft & fresh, young & friendly with warm pink-tinted backgrounds.
|
|
6
|
+
* 柔和清新、年轻友好,配暖粉背景。
|
|
7
|
+
*/
|
|
8
|
+
export const pinkThemeTokens = `
|
|
9
|
+
.aithe-theme-pink,
|
|
10
|
+
[data-aithe-theme='pink'] {
|
|
11
|
+
color-scheme: light;
|
|
12
|
+
--aithe-primary-1: #fff0f6;
|
|
13
|
+
--aithe-primary-2: #ffdce8;
|
|
14
|
+
--aithe-primary-3: #ffc0d6;
|
|
15
|
+
--aithe-primary-4: #ff9ebe;
|
|
16
|
+
--aithe-primary-5: #f574a8;
|
|
17
|
+
--aithe-primary-6: #e04d8a;
|
|
18
|
+
--aithe-primary-7: #c03070;
|
|
19
|
+
--aithe-primary-8: #9e1e5a;
|
|
20
|
+
--aithe-primary-9: #7a1246;
|
|
21
|
+
--aithe-primary-10: #560a32;
|
|
22
|
+
--aithe-success-1: #f0faf4;
|
|
23
|
+
--aithe-success-2: #d6f0e0;
|
|
24
|
+
--aithe-success-3: #aee0be;
|
|
25
|
+
--aithe-success-4: #78cc96;
|
|
26
|
+
--aithe-success-5: #4db872;
|
|
27
|
+
--aithe-success-6: #2f9e56;
|
|
28
|
+
--aithe-success-7: #1f8040;
|
|
29
|
+
--aithe-success-8: #186432;
|
|
30
|
+
--aithe-success-9: #124c26;
|
|
31
|
+
--aithe-success-10: #0c361a;
|
|
32
|
+
--aithe-warning-1: #fff9f0;
|
|
33
|
+
--aithe-warning-2: #ffefcc;
|
|
34
|
+
--aithe-warning-3: #ffe0a0;
|
|
35
|
+
--aithe-warning-4: #ffcc6a;
|
|
36
|
+
--aithe-warning-5: #f0b030;
|
|
37
|
+
--aithe-warning-6: #c89018;
|
|
38
|
+
--aithe-warning-7: #a07010;
|
|
39
|
+
--aithe-warning-8: #7a550c;
|
|
40
|
+
--aithe-warning-9: #563e08;
|
|
41
|
+
--aithe-warning-10: #3a2a05;
|
|
42
|
+
--aithe-danger-1: #fff2f4;
|
|
43
|
+
--aithe-danger-2: #ffdde3;
|
|
44
|
+
--aithe-danger-3: #ffc0cc;
|
|
45
|
+
--aithe-danger-4: #ff96aa;
|
|
46
|
+
--aithe-danger-5: #f06888;
|
|
47
|
+
--aithe-danger-6: #d44068;
|
|
48
|
+
--aithe-danger-7: #b02450;
|
|
49
|
+
--aithe-danger-8: #8c183e;
|
|
50
|
+
--aithe-danger-9: #6a1030;
|
|
51
|
+
--aithe-danger-10: #480a20;
|
|
52
|
+
--aithe-neutral-1: #faf8f9;
|
|
53
|
+
--aithe-neutral-2: #f2eef0;
|
|
54
|
+
--aithe-neutral-3: #e4dce0;
|
|
55
|
+
--aithe-neutral-4: #cec0c8;
|
|
56
|
+
--aithe-neutral-5: #b0a0aa;
|
|
57
|
+
--aithe-neutral-6: #92828e;
|
|
58
|
+
--aithe-neutral-7: #746474;
|
|
59
|
+
--aithe-neutral-8: #564858;
|
|
60
|
+
--aithe-neutral-9: #382e3a;
|
|
61
|
+
--aithe-neutral-10: #1c161e;
|
|
62
|
+
--aithe-fill-1: #f7f8fa;
|
|
63
|
+
--aithe-fill-2: #f0f1f3;
|
|
64
|
+
--aithe-color-bg: #faf0f4;
|
|
65
|
+
--aithe-color-bg-subtle: linear-gradient(180deg, #fef6f9 0%, #f5e8ef 100%);
|
|
66
|
+
--aithe-color-surface: rgba(255, 250, 252, 0.88);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
|
|
68
|
+
--aithe-color-surface-muted: #f0e2ea;
|
|
69
|
+
--aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(160, 60, 100, 0.18);
|
|
71
|
+
--aithe-color-border-strong: rgba(140, 40, 80, 0.28);
|
|
72
|
+
--aithe-color-text: #2a0e1c;
|
|
73
|
+
--aithe-color-text-muted: #643052;
|
|
74
|
+
--aithe-color-text-subtle: #946282;
|
|
75
|
+
--aithe-color-overlay: rgba(30, 10, 20, 0.48);
|
|
76
|
+
--aithe-color-selection: rgba(224, 77, 138, 0.16);
|
|
77
|
+
--aithe-color-focus-ring: rgba(224, 77, 138, 0.36);
|
|
78
|
+
--aithe-color-text-secondary: #3d4a66;
|
|
79
|
+
--aithe-color-bg-muted: #e8ecf4;
|
|
80
|
+
--aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
|
|
81
|
+
--aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
|
|
82
|
+
--aithe-primary-6-rgb: 77, 141, 255;
|
|
83
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
84
|
+
--aithe-code-keyword: #7c3aed;
|
|
85
|
+
--aithe-code-boolean: #b45309;
|
|
86
|
+
--aithe-code-builtin: #db2777;
|
|
87
|
+
--aithe-code-number: #b45309;
|
|
88
|
+
--aithe-code-string: #15803d;
|
|
89
|
+
--aithe-code-function: #db2777;
|
|
90
|
+
--aithe-code-type: #a16207;
|
|
91
|
+
--aithe-code-preprocessor: #7c3aed;
|
|
92
|
+
--aithe-code-tag: #be123c;
|
|
93
|
+
--aithe-code-attr: #b45309;
|
|
94
|
+
--aithe-code-key: #be123c;
|
|
95
|
+
--aithe-code-punctuation: #7c4dff;
|
|
96
|
+
--aithe-code-entity: #b45309;
|
|
97
|
+
--aithe-code-comment: #92828e;
|
|
98
|
+
--aithe-code-doctype: #92828e;
|
|
99
|
+
--aithe-code-placeholder: #92828e;
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Refined luxury, tech elegance with purple-tinted backgrounds.
|
|
6
6
|
* 轻奢高级、科技优雅,配淡紫背景。
|
|
7
7
|
*/
|
|
8
|
-
export declare const purpleThemeTokens = "\n.aithe-theme-purple,\n[data-aithe-theme='purple'] {\n color-scheme: light;\n --aithe-primary-1: #f5f0ff;\n --aithe-primary-2: #e8dbff;\n --aithe-primary-3: #d3bfff;\n --aithe-primary-4: #b899ff;\n --aithe-primary-5: #9b6ff5;\n --aithe-primary-6: #7c4de0;\n --aithe-primary-7: #6334c0;\n --aithe-primary-8: #4e259e;\n --aithe-primary-9: #3b1a7a;\n --aithe-primary-10: #281056;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #f8f7fa;\n --aithe-neutral-2: #eeeef4;\n --aithe-neutral-3: #dddde8;\n --aithe-neutral-4: #c4c3d4;\n --aithe-neutral-5: #a8a6bc;\n --aithe-neutral-6: #8a88a0;\n --aithe-neutral-7: #6c6a82;\n --aithe-neutral-8: #504e64;\n --aithe-neutral-9: #343246;\n --aithe-neutral-10: #1a1926;\n --aithe-color-bg: #eeeaf6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f5f0fc 0%, #e6e0f2 100%);\n --aithe-color-surface: rgba(252, 250, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4def0;\n --aithe-color-border: rgba(100, 70, 160, 0.18);\n --aithe-color-border-strong: rgba(80, 50, 140, 0.28);\n --aithe-color-text: #1a0e2e;\n --aithe-color-text-muted: #4a306e;\n --aithe-color-text-subtle: #7a609e;\n --aithe-color-overlay: rgba(18, 10, 36, 0.48);\n --aithe-color-selection: rgba(124, 77, 224, 0.16);\n --aithe-color-focus-ring: rgba(124, 77, 224, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #6d28d9;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #6d28d9;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be185d;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be185d;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #8b8aa0;\n --aithe-code-doctype: #8b8aa0;\n --aithe-code-placeholder: #8b8aa0;\n}\n";
|
|
8
|
+
export declare const purpleThemeTokens = "\n.aithe-theme-purple,\n[data-aithe-theme='purple'] {\n color-scheme: light;\n --aithe-primary-1: #f5f0ff;\n --aithe-primary-2: #e8dbff;\n --aithe-primary-3: #d3bfff;\n --aithe-primary-4: #b899ff;\n --aithe-primary-5: #9b6ff5;\n --aithe-primary-6: #7c4de0;\n --aithe-primary-7: #6334c0;\n --aithe-primary-8: #4e259e;\n --aithe-primary-9: #3b1a7a;\n --aithe-primary-10: #281056;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fff9f0;\n --aithe-warning-2: #ffefcc;\n --aithe-warning-3: #ffe0a0;\n --aithe-warning-4: #ffcc6a;\n --aithe-warning-5: #f0b030;\n --aithe-warning-6: #c89018;\n --aithe-warning-7: #a07010;\n --aithe-warning-8: #7a550c;\n --aithe-warning-9: #563e08;\n --aithe-warning-10: #3a2a05;\n --aithe-danger-1: #fff2f4;\n --aithe-danger-2: #ffdde3;\n --aithe-danger-3: #ffc0cc;\n --aithe-danger-4: #ff96aa;\n --aithe-danger-5: #f06888;\n --aithe-danger-6: #d44068;\n --aithe-danger-7: #b02450;\n --aithe-danger-8: #8c183e;\n --aithe-danger-9: #6a1030;\n --aithe-danger-10: #480a20;\n --aithe-neutral-1: #f8f7fa;\n --aithe-neutral-2: #eeeef4;\n --aithe-neutral-3: #dddde8;\n --aithe-neutral-4: #c4c3d4;\n --aithe-neutral-5: #a8a6bc;\n --aithe-neutral-6: #8a88a0;\n --aithe-neutral-7: #6c6a82;\n --aithe-neutral-8: #504e64;\n --aithe-neutral-9: #343246;\n --aithe-neutral-10: #1a1926;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #eeeaf6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f5f0fc 0%, #e6e0f2 100%);\n --aithe-color-surface: rgba(252, 250, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4def0;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(100, 70, 160, 0.18);\n --aithe-color-border-strong: rgba(80, 50, 140, 0.28);\n --aithe-color-text: #1a0e2e;\n --aithe-color-text-muted: #4a306e;\n --aithe-color-text-subtle: #7a609e;\n --aithe-color-overlay: rgba(18, 10, 36, 0.48);\n --aithe-color-selection: rgba(124, 77, 224, 0.16);\n --aithe-color-focus-ring: rgba(124, 77, 224, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #6d28d9;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #6d28d9;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #be185d;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #be185d;\n --aithe-code-punctuation: #7c4dff;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #8b8aa0;\n --aithe-code-doctype: #8b8aa0;\n --aithe-code-placeholder: #8b8aa0;\n}\n";
|
|
9
9
|
//# sourceMappingURL=purple.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purple.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/purple.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"purple.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/purple.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,qnGA6F7B,CAAC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Purple theme tokens.
|
|
3
|
+
* 紫色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Refined luxury, tech elegance with purple-tinted backgrounds.
|
|
6
|
+
* 轻奢高级、科技优雅,配淡紫背景。
|
|
7
|
+
*/
|
|
8
|
+
export const purpleThemeTokens = `
|
|
9
|
+
.aithe-theme-purple,
|
|
10
|
+
[data-aithe-theme='purple'] {
|
|
11
|
+
color-scheme: light;
|
|
12
|
+
--aithe-primary-1: #f5f0ff;
|
|
13
|
+
--aithe-primary-2: #e8dbff;
|
|
14
|
+
--aithe-primary-3: #d3bfff;
|
|
15
|
+
--aithe-primary-4: #b899ff;
|
|
16
|
+
--aithe-primary-5: #9b6ff5;
|
|
17
|
+
--aithe-primary-6: #7c4de0;
|
|
18
|
+
--aithe-primary-7: #6334c0;
|
|
19
|
+
--aithe-primary-8: #4e259e;
|
|
20
|
+
--aithe-primary-9: #3b1a7a;
|
|
21
|
+
--aithe-primary-10: #281056;
|
|
22
|
+
--aithe-success-1: #f0faf4;
|
|
23
|
+
--aithe-success-2: #d6f0e0;
|
|
24
|
+
--aithe-success-3: #aee0be;
|
|
25
|
+
--aithe-success-4: #78cc96;
|
|
26
|
+
--aithe-success-5: #4db872;
|
|
27
|
+
--aithe-success-6: #2f9e56;
|
|
28
|
+
--aithe-success-7: #1f8040;
|
|
29
|
+
--aithe-success-8: #186432;
|
|
30
|
+
--aithe-success-9: #124c26;
|
|
31
|
+
--aithe-success-10: #0c361a;
|
|
32
|
+
--aithe-warning-1: #fff9f0;
|
|
33
|
+
--aithe-warning-2: #ffefcc;
|
|
34
|
+
--aithe-warning-3: #ffe0a0;
|
|
35
|
+
--aithe-warning-4: #ffcc6a;
|
|
36
|
+
--aithe-warning-5: #f0b030;
|
|
37
|
+
--aithe-warning-6: #c89018;
|
|
38
|
+
--aithe-warning-7: #a07010;
|
|
39
|
+
--aithe-warning-8: #7a550c;
|
|
40
|
+
--aithe-warning-9: #563e08;
|
|
41
|
+
--aithe-warning-10: #3a2a05;
|
|
42
|
+
--aithe-danger-1: #fff2f4;
|
|
43
|
+
--aithe-danger-2: #ffdde3;
|
|
44
|
+
--aithe-danger-3: #ffc0cc;
|
|
45
|
+
--aithe-danger-4: #ff96aa;
|
|
46
|
+
--aithe-danger-5: #f06888;
|
|
47
|
+
--aithe-danger-6: #d44068;
|
|
48
|
+
--aithe-danger-7: #b02450;
|
|
49
|
+
--aithe-danger-8: #8c183e;
|
|
50
|
+
--aithe-danger-9: #6a1030;
|
|
51
|
+
--aithe-danger-10: #480a20;
|
|
52
|
+
--aithe-neutral-1: #f8f7fa;
|
|
53
|
+
--aithe-neutral-2: #eeeef4;
|
|
54
|
+
--aithe-neutral-3: #dddde8;
|
|
55
|
+
--aithe-neutral-4: #c4c3d4;
|
|
56
|
+
--aithe-neutral-5: #a8a6bc;
|
|
57
|
+
--aithe-neutral-6: #8a88a0;
|
|
58
|
+
--aithe-neutral-7: #6c6a82;
|
|
59
|
+
--aithe-neutral-8: #504e64;
|
|
60
|
+
--aithe-neutral-9: #343246;
|
|
61
|
+
--aithe-neutral-10: #1a1926;
|
|
62
|
+
--aithe-fill-1: #f7f8fa;
|
|
63
|
+
--aithe-fill-2: #f0f1f3;
|
|
64
|
+
--aithe-color-bg: #eeeaf6;
|
|
65
|
+
--aithe-color-bg-subtle: linear-gradient(180deg, #f5f0fc 0%, #e6e0f2 100%);
|
|
66
|
+
--aithe-color-surface: rgba(252, 250, 255, 0.88);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
|
|
68
|
+
--aithe-color-surface-muted: #e4def0;
|
|
69
|
+
--aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(100, 70, 160, 0.18);
|
|
71
|
+
--aithe-color-border-strong: rgba(80, 50, 140, 0.28);
|
|
72
|
+
--aithe-color-text: #1a0e2e;
|
|
73
|
+
--aithe-color-text-muted: #4a306e;
|
|
74
|
+
--aithe-color-text-subtle: #7a609e;
|
|
75
|
+
--aithe-color-overlay: rgba(18, 10, 36, 0.48);
|
|
76
|
+
--aithe-color-selection: rgba(124, 77, 224, 0.16);
|
|
77
|
+
--aithe-color-focus-ring: rgba(124, 77, 224, 0.36);
|
|
78
|
+
--aithe-color-text-secondary: #3d4a66;
|
|
79
|
+
--aithe-color-bg-muted: #e8ecf4;
|
|
80
|
+
--aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
|
|
81
|
+
--aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
|
|
82
|
+
--aithe-primary-6-rgb: 77, 141, 255;
|
|
83
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
84
|
+
--aithe-code-keyword: #7c3aed;
|
|
85
|
+
--aithe-code-boolean: #b45309;
|
|
86
|
+
--aithe-code-builtin: #6d28d9;
|
|
87
|
+
--aithe-code-number: #b45309;
|
|
88
|
+
--aithe-code-string: #15803d;
|
|
89
|
+
--aithe-code-function: #6d28d9;
|
|
90
|
+
--aithe-code-type: #a16207;
|
|
91
|
+
--aithe-code-preprocessor: #7c3aed;
|
|
92
|
+
--aithe-code-tag: #be185d;
|
|
93
|
+
--aithe-code-attr: #b45309;
|
|
94
|
+
--aithe-code-key: #be185d;
|
|
95
|
+
--aithe-code-punctuation: #7c4dff;
|
|
96
|
+
--aithe-code-entity: #b45309;
|
|
97
|
+
--aithe-code-comment: #8b8aa0;
|
|
98
|
+
--aithe-code-doctype: #8b8aa0;
|
|
99
|
+
--aithe-code-placeholder: #8b8aa0;
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Dark purple-black, creative & mysterious.
|
|
6
6
|
* 深紫黑,创意神秘,适合创意工具、音乐平台、艺术展示。
|
|
7
7
|
*/
|
|
8
|
-
export declare const raisinThemeTokens = "\n.aithe-theme-raisin,\n[data-aithe-theme='raisin'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0ff;\n --aithe-primary-2: #e0d8ff;\n --aithe-primary-3: #c4b4ff;\n --aithe-primary-4: #a48cf5;\n --aithe-primary-5: #8868e0;\n --aithe-primary-6: #6e50c0;\n --aithe-primary-7: #583ca0;\n --aithe-primary-8: #442e80;\n --aithe-primary-9: #342264;\n --aithe-primary-10: #26184a;\n --aithe-success-1: #edfcf8;\n --aithe-success-2: #c9f5e8;\n --aithe-success-3: #9cecd4;\n --aithe-success-4: #6cd8b8;\n --aithe-success-5: #44c09e;\n --aithe-success-6: #2ea882;\n --aithe-success-7: #228c6c;\n --aithe-success-8: #1a7056;\n --aithe-success-9: #145a46;\n --aithe-success-10: #104838;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff0f6;\n --aithe-danger-2: #ffdae8;\n --aithe-danger-3: #ffb8d0;\n --aithe-danger-4: #ff8eb4;\n --aithe-danger-5: #f06896;\n --aithe-danger-6: #d44c7a;\n --aithe-danger-7: #b03460;\n --aithe-danger-8: #8c244c;\n --aithe-danger-9: #6e1a3a;\n --aithe-danger-10: #52122c;\n --aithe-neutral-1: #eeeef6;\n --aithe-neutral-2: #d0cee0;\n --aithe-neutral-3: #aaa8c0;\n --aithe-neutral-4: #8680a0;\n --aithe-neutral-5: #666080;\n --aithe-neutral-6: #4e4868;\n --aithe-neutral-7: #3a3452;\n --aithe-neutral-8: #2a263e;\n --aithe-neutral-9: #1c1a2e;\n --aithe-neutral-10: #0e0c1e;\n --aithe-color-bg: #0e0a18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 50, 140, 0.18) 0%, rgba(14, 10, 24, 1) 55%);\n --aithe-color-surface: rgba(16, 12, 24, 0.84);\n --aithe-color-surface-elevated: rgba(22, 18, 34, 0.96);\n --aithe-color-surface-muted: #18142a;\n --aithe-color-border: rgba(150, 130, 200, 0.17);\n --aithe-color-border-strong: rgba(170, 150, 220, 0.25);\n --aithe-color-text: #eae4f8;\n --aithe-color-text-muted: #9c90b8;\n --aithe-color-text-subtle: #746898;\n --aithe-color-overlay: rgba(4, 2, 8, 0.68);\n --aithe-color-selection: rgba(110, 80, 192, 0.22);\n --aithe-color-focus-ring: rgba(110, 80, 192, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cf5;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3a3452;\n --aithe-code-doctype: #3a3452;\n --aithe-code-placeholder: #3a3452;\n}\n";
|
|
8
|
+
export declare const raisinThemeTokens = "\n.aithe-theme-raisin,\n[data-aithe-theme='raisin'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0ff;\n --aithe-primary-2: #e0d8ff;\n --aithe-primary-3: #c4b4ff;\n --aithe-primary-4: #a48cf5;\n --aithe-primary-5: #8868e0;\n --aithe-primary-6: #6e50c0;\n --aithe-primary-7: #583ca0;\n --aithe-primary-8: #442e80;\n --aithe-primary-9: #342264;\n --aithe-primary-10: #26184a;\n --aithe-success-1: #edfcf8;\n --aithe-success-2: #c9f5e8;\n --aithe-success-3: #9cecd4;\n --aithe-success-4: #6cd8b8;\n --aithe-success-5: #44c09e;\n --aithe-success-6: #2ea882;\n --aithe-success-7: #228c6c;\n --aithe-success-8: #1a7056;\n --aithe-success-9: #145a46;\n --aithe-success-10: #104838;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff0f6;\n --aithe-danger-2: #ffdae8;\n --aithe-danger-3: #ffb8d0;\n --aithe-danger-4: #ff8eb4;\n --aithe-danger-5: #f06896;\n --aithe-danger-6: #d44c7a;\n --aithe-danger-7: #b03460;\n --aithe-danger-8: #8c244c;\n --aithe-danger-9: #6e1a3a;\n --aithe-danger-10: #52122c;\n --aithe-neutral-1: #eeeef6;\n --aithe-neutral-2: #d0cee0;\n --aithe-neutral-3: #aaa8c0;\n --aithe-neutral-4: #8680a0;\n --aithe-neutral-5: #666080;\n --aithe-neutral-6: #4e4868;\n --aithe-neutral-7: #3a3452;\n --aithe-neutral-8: #2a263e;\n --aithe-neutral-9: #1c1a2e;\n --aithe-neutral-10: #0e0c1e;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0e0a18;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 50, 140, 0.18) 0%, rgba(14, 10, 24, 1) 55%);\n --aithe-color-surface: rgba(16, 12, 24, 0.84);\n --aithe-color-surface-elevated: rgba(22, 18, 34, 0.96);\n --aithe-color-surface-muted: #18142a;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(150, 130, 200, 0.17);\n --aithe-color-border-strong: rgba(170, 150, 220, 0.25);\n --aithe-color-text: #eae4f8;\n --aithe-color-text-muted: #9c90b8;\n --aithe-color-text-subtle: #746898;\n --aithe-color-overlay: rgba(4, 2, 8, 0.68);\n --aithe-color-selection: rgba(110, 80, 192, 0.22);\n --aithe-color-focus-ring: rgba(110, 80, 192, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cf5;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #3a3452;\n --aithe-code-doctype: #3a3452;\n --aithe-code-placeholder: #3a3452;\n}\n";
|
|
9
9
|
//# sourceMappingURL=raisin.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"raisin.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/raisin.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"raisin.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/raisin.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,26GAkG7B,CAAC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Raisin theme tokens.
|
|
3
|
+
* 葡萄干暗色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Dark purple-black, creative & mysterious.
|
|
6
|
+
* 深紫黑,创意神秘,适合创意工具、音乐平台、艺术展示。
|
|
7
|
+
*/
|
|
8
|
+
export const raisinThemeTokens = `
|
|
9
|
+
.aithe-theme-raisin,
|
|
10
|
+
[data-aithe-theme='raisin'] {
|
|
11
|
+
color-scheme: dark;
|
|
12
|
+
--aithe-primary-1: #f4f0ff;
|
|
13
|
+
--aithe-primary-2: #e0d8ff;
|
|
14
|
+
--aithe-primary-3: #c4b4ff;
|
|
15
|
+
--aithe-primary-4: #a48cf5;
|
|
16
|
+
--aithe-primary-5: #8868e0;
|
|
17
|
+
--aithe-primary-6: #6e50c0;
|
|
18
|
+
--aithe-primary-7: #583ca0;
|
|
19
|
+
--aithe-primary-8: #442e80;
|
|
20
|
+
--aithe-primary-9: #342264;
|
|
21
|
+
--aithe-primary-10: #26184a;
|
|
22
|
+
--aithe-success-1: #edfcf8;
|
|
23
|
+
--aithe-success-2: #c9f5e8;
|
|
24
|
+
--aithe-success-3: #9cecd4;
|
|
25
|
+
--aithe-success-4: #6cd8b8;
|
|
26
|
+
--aithe-success-5: #44c09e;
|
|
27
|
+
--aithe-success-6: #2ea882;
|
|
28
|
+
--aithe-success-7: #228c6c;
|
|
29
|
+
--aithe-success-8: #1a7056;
|
|
30
|
+
--aithe-success-9: #145a46;
|
|
31
|
+
--aithe-success-10: #104838;
|
|
32
|
+
--aithe-warning-1: #fff9eb;
|
|
33
|
+
--aithe-warning-2: #ffefc4;
|
|
34
|
+
--aithe-warning-3: #ffde8e;
|
|
35
|
+
--aithe-warning-4: #ffc95a;
|
|
36
|
+
--aithe-warning-5: #f0b03e;
|
|
37
|
+
--aithe-warning-6: #d08e26;
|
|
38
|
+
--aithe-warning-7: #ac701a;
|
|
39
|
+
--aithe-warning-8: #8a5816;
|
|
40
|
+
--aithe-warning-9: #6e4614;
|
|
41
|
+
--aithe-warning-10: #583610;
|
|
42
|
+
--aithe-danger-1: #fff0f6;
|
|
43
|
+
--aithe-danger-2: #ffdae8;
|
|
44
|
+
--aithe-danger-3: #ffb8d0;
|
|
45
|
+
--aithe-danger-4: #ff8eb4;
|
|
46
|
+
--aithe-danger-5: #f06896;
|
|
47
|
+
--aithe-danger-6: #d44c7a;
|
|
48
|
+
--aithe-danger-7: #b03460;
|
|
49
|
+
--aithe-danger-8: #8c244c;
|
|
50
|
+
--aithe-danger-9: #6e1a3a;
|
|
51
|
+
--aithe-danger-10: #52122c;
|
|
52
|
+
--aithe-neutral-1: #eeeef6;
|
|
53
|
+
--aithe-neutral-2: #d0cee0;
|
|
54
|
+
--aithe-neutral-3: #aaa8c0;
|
|
55
|
+
--aithe-neutral-4: #8680a0;
|
|
56
|
+
--aithe-neutral-5: #666080;
|
|
57
|
+
--aithe-neutral-6: #4e4868;
|
|
58
|
+
--aithe-neutral-7: #3a3452;
|
|
59
|
+
--aithe-neutral-8: #2a263e;
|
|
60
|
+
--aithe-neutral-9: #1c1a2e;
|
|
61
|
+
--aithe-neutral-10: #0e0c1e;
|
|
62
|
+
--aithe-fill-1: #1a2133;
|
|
63
|
+
--aithe-fill-2: #1e263a;
|
|
64
|
+
--aithe-color-bg: #0e0a18;
|
|
65
|
+
--aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 50, 140, 0.18) 0%, rgba(14, 10, 24, 1) 55%);
|
|
66
|
+
--aithe-color-surface: rgba(16, 12, 24, 0.84);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(22, 18, 34, 0.96);
|
|
68
|
+
--aithe-color-surface-muted: #18142a;
|
|
69
|
+
--aithe-color-surface-hover: rgba(255, 255, 255, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(150, 130, 200, 0.17);
|
|
71
|
+
--aithe-color-border-strong: rgba(170, 150, 220, 0.25);
|
|
72
|
+
--aithe-color-text: #eae4f8;
|
|
73
|
+
--aithe-color-text-muted: #9c90b8;
|
|
74
|
+
--aithe-color-text-subtle: #746898;
|
|
75
|
+
--aithe-color-overlay: rgba(4, 2, 8, 0.68);
|
|
76
|
+
--aithe-color-selection: rgba(110, 80, 192, 0.22);
|
|
77
|
+
--aithe-color-focus-ring: rgba(110, 80, 192, 0.40);
|
|
78
|
+
--aithe-color-text-secondary: #8894ab;
|
|
79
|
+
--aithe-color-bg-muted: #151c2b;
|
|
80
|
+
--aithe-color-bg-hover: rgba(255, 255, 255, 0.04);
|
|
81
|
+
--aithe-color-border-subtle: rgba(172, 188, 217, 0.08);
|
|
82
|
+
--aithe-primary-6-rgb: 74, 125, 255;
|
|
83
|
+
--aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.26);
|
|
84
|
+
--aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.32);
|
|
85
|
+
--aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.38);
|
|
86
|
+
--aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.44);
|
|
87
|
+
--aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.50);
|
|
88
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
89
|
+
--aithe-code-keyword: #c678dd;
|
|
90
|
+
--aithe-code-boolean: #d19a66;
|
|
91
|
+
--aithe-code-builtin: #a48cf5;
|
|
92
|
+
--aithe-code-number: #d19a66;
|
|
93
|
+
--aithe-code-string: #98c379;
|
|
94
|
+
--aithe-code-function: #61afef;
|
|
95
|
+
--aithe-code-type: #e5c07b;
|
|
96
|
+
--aithe-code-preprocessor: #c678dd;
|
|
97
|
+
--aithe-code-tag: #e06c75;
|
|
98
|
+
--aithe-code-attr: #d19a66;
|
|
99
|
+
--aithe-code-key: #e06c75;
|
|
100
|
+
--aithe-code-punctuation: #89ddff;
|
|
101
|
+
--aithe-code-entity: #d19a66;
|
|
102
|
+
--aithe-code-comment: #3a3452;
|
|
103
|
+
--aithe-code-doctype: #3a3452;
|
|
104
|
+
--aithe-code-placeholder: #3a3452;
|
|
105
|
+
}
|
|
106
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Cool blue-gray dark, calm & professional.
|
|
6
6
|
* 冷调蓝灰暗色,沉稳专业,适合 IDE、开发者工具、技术后台。
|
|
7
7
|
*/
|
|
8
|
-
export declare const slateThemeTokens = "\n.aithe-theme-slate,\n[data-aithe-theme='slate'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f4ff;\n --aithe-primary-2: #d9e4ff;\n --aithe-primary-3: #b8ccff;\n --aithe-primary-4: #8eaaff;\n --aithe-primary-5: #6b8cf5;\n --aithe-primary-6: #5470e0;\n --aithe-primary-7: #4358b8;\n --aithe-primary-8: #364590;\n --aithe-primary-9: #2b3670;\n --aithe-primary-10: #212954;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f1f3f8;\n --aithe-neutral-2: #d8dce6;\n --aithe-neutral-3: #b8bfce;\n --aithe-neutral-4: #96a0b4;\n --aithe-neutral-5: #76829a;\n --aithe-neutral-6: #5a6680;\n --aithe-neutral-7: #424d64;\n --aithe-neutral-8: #2e374c;\n --aithe-neutral-9: #1e2536;\n --aithe-neutral-10: #111620;\n --aithe-color-bg: #121824;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(70, 90, 140, 0.18) 0%, rgba(18, 24, 36, 1) 55%);\n --aithe-color-surface: rgba(22, 30, 44, 0.84);\n --aithe-color-surface-elevated: rgba(26, 36, 54, 0.96);\n --aithe-color-surface-muted: #1a2230;\n --aithe-color-border: rgba(160, 180, 220, 0.17);\n --aithe-color-border-strong: rgba(175, 195, 235, 0.25);\n --aithe-color-text: #eef2fc;\n --aithe-color-text-muted: #a0aec6;\n --aithe-color-text-subtle: #7a88a2;\n --aithe-color-overlay: rgba(4, 8, 16, 0.66);\n --aithe-color-selection: rgba(84, 112, 224, 0.22);\n --aithe-color-focus-ring: rgba(84, 112, 224, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.22);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.28);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.34);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.40);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.46);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #4a5568;\n --aithe-code-doctype: #4a5568;\n --aithe-code-placeholder: #4a5568;\n}\n";
|
|
8
|
+
export declare const slateThemeTokens = "\n.aithe-theme-slate,\n[data-aithe-theme='slate'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f4ff;\n --aithe-primary-2: #d9e4ff;\n --aithe-primary-3: #b8ccff;\n --aithe-primary-4: #8eaaff;\n --aithe-primary-5: #6b8cf5;\n --aithe-primary-6: #5470e0;\n --aithe-primary-7: #4358b8;\n --aithe-primary-8: #364590;\n --aithe-primary-9: #2b3670;\n --aithe-primary-10: #212954;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f1f3f8;\n --aithe-neutral-2: #d8dce6;\n --aithe-neutral-3: #b8bfce;\n --aithe-neutral-4: #96a0b4;\n --aithe-neutral-5: #76829a;\n --aithe-neutral-6: #5a6680;\n --aithe-neutral-7: #424d64;\n --aithe-neutral-8: #2e374c;\n --aithe-neutral-9: #1e2536;\n --aithe-neutral-10: #111620;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #121824;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(70, 90, 140, 0.18) 0%, rgba(18, 24, 36, 1) 55%);\n --aithe-color-surface: rgba(22, 30, 44, 0.84);\n --aithe-color-surface-elevated: rgba(26, 36, 54, 0.96);\n --aithe-color-surface-muted: #1a2230;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(160, 180, 220, 0.17);\n --aithe-color-border-strong: rgba(175, 195, 235, 0.25);\n --aithe-color-text: #eef2fc;\n --aithe-color-text-muted: #a0aec6;\n --aithe-color-text-subtle: #7a88a2;\n --aithe-color-overlay: rgba(4, 8, 16, 0.66);\n --aithe-color-selection: rgba(84, 112, 224, 0.22);\n --aithe-color-focus-ring: rgba(84, 112, 224, 0.40);\n --aithe-color-text-secondary: #8894ab;\n --aithe-color-bg-muted: #151c2b;\n --aithe-color-bg-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border-subtle: rgba(172, 188, 217, 0.08);\n --aithe-primary-6-rgb: 74, 125, 255;\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.22);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.28);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.34);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.40);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.46);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #61afef;\n --aithe-code-number: #d19a66;\n --aithe-code-string: #98c379;\n --aithe-code-function: #61afef;\n --aithe-code-type: #e5c07b;\n --aithe-code-preprocessor: #c678dd;\n --aithe-code-tag: #e06c75;\n --aithe-code-attr: #d19a66;\n --aithe-code-key: #e06c75;\n --aithe-code-punctuation: #89ddff;\n --aithe-code-entity: #d19a66;\n --aithe-code-comment: #4a5568;\n --aithe-code-doctype: #4a5568;\n --aithe-code-placeholder: #4a5568;\n}\n";
|
|
9
9
|
//# sourceMappingURL=slate.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slate.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/slate.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"slate.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/slate.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,06GAkG5B,CAAC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Slate theme tokens.
|
|
3
|
+
* 石板暗色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Cool blue-gray dark, calm & professional.
|
|
6
|
+
* 冷调蓝灰暗色,沉稳专业,适合 IDE、开发者工具、技术后台。
|
|
7
|
+
*/
|
|
8
|
+
export const slateThemeTokens = `
|
|
9
|
+
.aithe-theme-slate,
|
|
10
|
+
[data-aithe-theme='slate'] {
|
|
11
|
+
color-scheme: dark;
|
|
12
|
+
--aithe-primary-1: #f0f4ff;
|
|
13
|
+
--aithe-primary-2: #d9e4ff;
|
|
14
|
+
--aithe-primary-3: #b8ccff;
|
|
15
|
+
--aithe-primary-4: #8eaaff;
|
|
16
|
+
--aithe-primary-5: #6b8cf5;
|
|
17
|
+
--aithe-primary-6: #5470e0;
|
|
18
|
+
--aithe-primary-7: #4358b8;
|
|
19
|
+
--aithe-primary-8: #364590;
|
|
20
|
+
--aithe-primary-9: #2b3670;
|
|
21
|
+
--aithe-primary-10: #212954;
|
|
22
|
+
--aithe-success-1: #edfcf6;
|
|
23
|
+
--aithe-success-2: #c9f5e0;
|
|
24
|
+
--aithe-success-3: #9cecc4;
|
|
25
|
+
--aithe-success-4: #6cd8a2;
|
|
26
|
+
--aithe-success-5: #44c084;
|
|
27
|
+
--aithe-success-6: #2ea86c;
|
|
28
|
+
--aithe-success-7: #228c58;
|
|
29
|
+
--aithe-success-8: #1a7046;
|
|
30
|
+
--aithe-success-9: #145a38;
|
|
31
|
+
--aithe-success-10: #10482e;
|
|
32
|
+
--aithe-warning-1: #fff9eb;
|
|
33
|
+
--aithe-warning-2: #ffefc4;
|
|
34
|
+
--aithe-warning-3: #ffde8e;
|
|
35
|
+
--aithe-warning-4: #ffc95a;
|
|
36
|
+
--aithe-warning-5: #f0b03e;
|
|
37
|
+
--aithe-warning-6: #d08e26;
|
|
38
|
+
--aithe-warning-7: #ac701a;
|
|
39
|
+
--aithe-warning-8: #8a5816;
|
|
40
|
+
--aithe-warning-9: #6e4614;
|
|
41
|
+
--aithe-warning-10: #583610;
|
|
42
|
+
--aithe-danger-1: #fff1f4;
|
|
43
|
+
--aithe-danger-2: #ffdce2;
|
|
44
|
+
--aithe-danger-3: #ffbcc8;
|
|
45
|
+
--aithe-danger-4: #ff92a4;
|
|
46
|
+
--aithe-danger-5: #f86c83;
|
|
47
|
+
--aithe-danger-6: #df526b;
|
|
48
|
+
--aithe-danger-7: #be4159;
|
|
49
|
+
--aithe-danger-8: #99354a;
|
|
50
|
+
--aithe-danger-9: #7a2d3d;
|
|
51
|
+
--aithe-danger-10: #612634;
|
|
52
|
+
--aithe-neutral-1: #f1f3f8;
|
|
53
|
+
--aithe-neutral-2: #d8dce6;
|
|
54
|
+
--aithe-neutral-3: #b8bfce;
|
|
55
|
+
--aithe-neutral-4: #96a0b4;
|
|
56
|
+
--aithe-neutral-5: #76829a;
|
|
57
|
+
--aithe-neutral-6: #5a6680;
|
|
58
|
+
--aithe-neutral-7: #424d64;
|
|
59
|
+
--aithe-neutral-8: #2e374c;
|
|
60
|
+
--aithe-neutral-9: #1e2536;
|
|
61
|
+
--aithe-neutral-10: #111620;
|
|
62
|
+
--aithe-fill-1: #1a2133;
|
|
63
|
+
--aithe-fill-2: #1e263a;
|
|
64
|
+
--aithe-color-bg: #121824;
|
|
65
|
+
--aithe-color-bg-subtle: radial-gradient(circle at top, rgba(70, 90, 140, 0.18) 0%, rgba(18, 24, 36, 1) 55%);
|
|
66
|
+
--aithe-color-surface: rgba(22, 30, 44, 0.84);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(26, 36, 54, 0.96);
|
|
68
|
+
--aithe-color-surface-muted: #1a2230;
|
|
69
|
+
--aithe-color-surface-hover: rgba(255, 255, 255, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(160, 180, 220, 0.17);
|
|
71
|
+
--aithe-color-border-strong: rgba(175, 195, 235, 0.25);
|
|
72
|
+
--aithe-color-text: #eef2fc;
|
|
73
|
+
--aithe-color-text-muted: #a0aec6;
|
|
74
|
+
--aithe-color-text-subtle: #7a88a2;
|
|
75
|
+
--aithe-color-overlay: rgba(4, 8, 16, 0.66);
|
|
76
|
+
--aithe-color-selection: rgba(84, 112, 224, 0.22);
|
|
77
|
+
--aithe-color-focus-ring: rgba(84, 112, 224, 0.40);
|
|
78
|
+
--aithe-color-text-secondary: #8894ab;
|
|
79
|
+
--aithe-color-bg-muted: #151c2b;
|
|
80
|
+
--aithe-color-bg-hover: rgba(255, 255, 255, 0.04);
|
|
81
|
+
--aithe-color-border-subtle: rgba(172, 188, 217, 0.08);
|
|
82
|
+
--aithe-primary-6-rgb: 74, 125, 255;
|
|
83
|
+
--aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.22);
|
|
84
|
+
--aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.28);
|
|
85
|
+
--aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.34);
|
|
86
|
+
--aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.40);
|
|
87
|
+
--aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.46);
|
|
88
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
89
|
+
--aithe-code-keyword: #c678dd;
|
|
90
|
+
--aithe-code-boolean: #d19a66;
|
|
91
|
+
--aithe-code-builtin: #61afef;
|
|
92
|
+
--aithe-code-number: #d19a66;
|
|
93
|
+
--aithe-code-string: #98c379;
|
|
94
|
+
--aithe-code-function: #61afef;
|
|
95
|
+
--aithe-code-type: #e5c07b;
|
|
96
|
+
--aithe-code-preprocessor: #c678dd;
|
|
97
|
+
--aithe-code-tag: #e06c75;
|
|
98
|
+
--aithe-code-attr: #d19a66;
|
|
99
|
+
--aithe-code-key: #e06c75;
|
|
100
|
+
--aithe-code-punctuation: #89ddff;
|
|
101
|
+
--aithe-code-entity: #d19a66;
|
|
102
|
+
--aithe-code-comment: #4a5568;
|
|
103
|
+
--aithe-code-doctype: #4a5568;
|
|
104
|
+
--aithe-code-placeholder: #4a5568;
|
|
105
|
+
}
|
|
106
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Crisp & professional, calm tech with cool teal-tinted backgrounds.
|
|
6
6
|
* 清爽专业、冷静科技,配冷调青绿背景。
|
|
7
7
|
*/
|
|
8
|
-
export declare const tealThemeTokens = "\n.aithe-theme-teal,\n[data-aithe-theme='teal'] {\n color-scheme: light;\n --aithe-primary-1: #e6fffb;\n --aithe-primary-2: #b5f5ec;\n --aithe-primary-3: #87e8de;\n --aithe-primary-4: #5cdbd3;\n --aithe-primary-5: #36cfc9;\n --aithe-primary-6: #13a8a8;\n --aithe-primary-7: #088a8a;\n --aithe-primary-8: #006d6d;\n --aithe-primary-9: #005252;\n --aithe-primary-10: #003a3a;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f7faf9;\n --aithe-neutral-2: #ecf2f0;\n --aithe-neutral-3: #d8e6e2;\n --aithe-neutral-4: #bad0ca;\n --aithe-neutral-5: #9ab4ac;\n --aithe-neutral-6: #7c968e;\n --aithe-neutral-7: #5e7872;\n --aithe-neutral-8: #425a56;\n --aithe-neutral-9: #2a3e3a;\n --aithe-neutral-10: #162624;\n --aithe-color-bg: #ecf6f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f0faf8 0%, #e4f2ee 100%);\n --aithe-color-surface: rgba(248, 254, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #dceee8;\n --aithe-color-border: rgba(40, 120, 110, 0.18);\n --aithe-color-border-strong: rgba(30, 100, 90, 0.28);\n --aithe-color-text: #0a2622;\n --aithe-color-text-muted: #265a52;\n --aithe-color-text-subtle: #568a82;\n --aithe-color-overlay: rgba(5, 24, 22, 0.48);\n --aithe-color-selection: rgba(19, 168, 168, 0.16);\n --aithe-color-focus-ring: rgba(19, 168, 168, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #0d9488;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #0d9488;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #00897b;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #5e7872;\n --aithe-code-doctype: #5e7872;\n --aithe-code-placeholder: #5e7872;\n}\n";
|
|
8
|
+
export declare const tealThemeTokens = "\n.aithe-theme-teal,\n[data-aithe-theme='teal'] {\n color-scheme: light;\n --aithe-primary-1: #e6fffb;\n --aithe-primary-2: #b5f5ec;\n --aithe-primary-3: #87e8de;\n --aithe-primary-4: #5cdbd3;\n --aithe-primary-5: #36cfc9;\n --aithe-primary-6: #13a8a8;\n --aithe-primary-7: #088a8a;\n --aithe-primary-8: #006d6d;\n --aithe-primary-9: #005252;\n --aithe-primary-10: #003a3a;\n --aithe-success-1: #f0faf4;\n --aithe-success-2: #d6f0e0;\n --aithe-success-3: #aee0be;\n --aithe-success-4: #78cc96;\n --aithe-success-5: #4db872;\n --aithe-success-6: #2f9e56;\n --aithe-success-7: #1f8040;\n --aithe-success-8: #186432;\n --aithe-success-9: #124c26;\n --aithe-success-10: #0c361a;\n --aithe-warning-1: #fffbe6;\n --aithe-warning-2: #fff3c4;\n --aithe-warning-3: #ffe78a;\n --aithe-warning-4: #ffd84d;\n --aithe-warning-5: #f0c020;\n --aithe-warning-6: #c89e14;\n --aithe-warning-7: #a47e0e;\n --aithe-warning-8: #7f610a;\n --aithe-warning-9: #5c4608;\n --aithe-warning-10: #3d2f05;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffddd9;\n --aithe-danger-3: #ffc0b8;\n --aithe-danger-4: #ff9a8e;\n --aithe-danger-5: #f07068;\n --aithe-danger-6: #d44844;\n --aithe-danger-7: #b02e2c;\n --aithe-danger-8: #8c201e;\n --aithe-danger-9: #6a1616;\n --aithe-danger-10: #4a0e0e;\n --aithe-neutral-1: #f7faf9;\n --aithe-neutral-2: #ecf2f0;\n --aithe-neutral-3: #d8e6e2;\n --aithe-neutral-4: #bad0ca;\n --aithe-neutral-5: #9ab4ac;\n --aithe-neutral-6: #7c968e;\n --aithe-neutral-7: #5e7872;\n --aithe-neutral-8: #425a56;\n --aithe-neutral-9: #2a3e3a;\n --aithe-neutral-10: #162624;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #ecf6f3;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f0faf8 0%, #e4f2ee 100%);\n --aithe-color-surface: rgba(248, 254, 252, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #dceee8;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(40, 120, 110, 0.18);\n --aithe-color-border-strong: rgba(30, 100, 90, 0.28);\n --aithe-color-text: #0a2622;\n --aithe-color-text-muted: #265a52;\n --aithe-color-text-subtle: #568a82;\n --aithe-color-overlay: rgba(5, 24, 22, 0.48);\n --aithe-color-selection: rgba(19, 168, 168, 0.16);\n --aithe-color-focus-ring: rgba(19, 168, 168, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #0d9488;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #0d9488;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #00897b;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #5e7872;\n --aithe-code-doctype: #5e7872;\n --aithe-code-placeholder: #5e7872;\n}\n";
|
|
9
9
|
//# sourceMappingURL=teal.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"teal.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/teal.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"teal.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/teal.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,gnGA6F3B,CAAC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Teal theme tokens.
|
|
3
|
+
* 青色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Crisp & professional, calm tech with cool teal-tinted backgrounds.
|
|
6
|
+
* 清爽专业、冷静科技,配冷调青绿背景。
|
|
7
|
+
*/
|
|
8
|
+
export const tealThemeTokens = `
|
|
9
|
+
.aithe-theme-teal,
|
|
10
|
+
[data-aithe-theme='teal'] {
|
|
11
|
+
color-scheme: light;
|
|
12
|
+
--aithe-primary-1: #e6fffb;
|
|
13
|
+
--aithe-primary-2: #b5f5ec;
|
|
14
|
+
--aithe-primary-3: #87e8de;
|
|
15
|
+
--aithe-primary-4: #5cdbd3;
|
|
16
|
+
--aithe-primary-5: #36cfc9;
|
|
17
|
+
--aithe-primary-6: #13a8a8;
|
|
18
|
+
--aithe-primary-7: #088a8a;
|
|
19
|
+
--aithe-primary-8: #006d6d;
|
|
20
|
+
--aithe-primary-9: #005252;
|
|
21
|
+
--aithe-primary-10: #003a3a;
|
|
22
|
+
--aithe-success-1: #f0faf4;
|
|
23
|
+
--aithe-success-2: #d6f0e0;
|
|
24
|
+
--aithe-success-3: #aee0be;
|
|
25
|
+
--aithe-success-4: #78cc96;
|
|
26
|
+
--aithe-success-5: #4db872;
|
|
27
|
+
--aithe-success-6: #2f9e56;
|
|
28
|
+
--aithe-success-7: #1f8040;
|
|
29
|
+
--aithe-success-8: #186432;
|
|
30
|
+
--aithe-success-9: #124c26;
|
|
31
|
+
--aithe-success-10: #0c361a;
|
|
32
|
+
--aithe-warning-1: #fffbe6;
|
|
33
|
+
--aithe-warning-2: #fff3c4;
|
|
34
|
+
--aithe-warning-3: #ffe78a;
|
|
35
|
+
--aithe-warning-4: #ffd84d;
|
|
36
|
+
--aithe-warning-5: #f0c020;
|
|
37
|
+
--aithe-warning-6: #c89e14;
|
|
38
|
+
--aithe-warning-7: #a47e0e;
|
|
39
|
+
--aithe-warning-8: #7f610a;
|
|
40
|
+
--aithe-warning-9: #5c4608;
|
|
41
|
+
--aithe-warning-10: #3d2f05;
|
|
42
|
+
--aithe-danger-1: #fff1f0;
|
|
43
|
+
--aithe-danger-2: #ffddd9;
|
|
44
|
+
--aithe-danger-3: #ffc0b8;
|
|
45
|
+
--aithe-danger-4: #ff9a8e;
|
|
46
|
+
--aithe-danger-5: #f07068;
|
|
47
|
+
--aithe-danger-6: #d44844;
|
|
48
|
+
--aithe-danger-7: #b02e2c;
|
|
49
|
+
--aithe-danger-8: #8c201e;
|
|
50
|
+
--aithe-danger-9: #6a1616;
|
|
51
|
+
--aithe-danger-10: #4a0e0e;
|
|
52
|
+
--aithe-neutral-1: #f7faf9;
|
|
53
|
+
--aithe-neutral-2: #ecf2f0;
|
|
54
|
+
--aithe-neutral-3: #d8e6e2;
|
|
55
|
+
--aithe-neutral-4: #bad0ca;
|
|
56
|
+
--aithe-neutral-5: #9ab4ac;
|
|
57
|
+
--aithe-neutral-6: #7c968e;
|
|
58
|
+
--aithe-neutral-7: #5e7872;
|
|
59
|
+
--aithe-neutral-8: #425a56;
|
|
60
|
+
--aithe-neutral-9: #2a3e3a;
|
|
61
|
+
--aithe-neutral-10: #162624;
|
|
62
|
+
--aithe-fill-1: #f7f8fa;
|
|
63
|
+
--aithe-fill-2: #f0f1f3;
|
|
64
|
+
--aithe-color-bg: #ecf6f3;
|
|
65
|
+
--aithe-color-bg-subtle: linear-gradient(180deg, #f0faf8 0%, #e4f2ee 100%);
|
|
66
|
+
--aithe-color-surface: rgba(248, 254, 252, 0.88);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
|
|
68
|
+
--aithe-color-surface-muted: #dceee8;
|
|
69
|
+
--aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(40, 120, 110, 0.18);
|
|
71
|
+
--aithe-color-border-strong: rgba(30, 100, 90, 0.28);
|
|
72
|
+
--aithe-color-text: #0a2622;
|
|
73
|
+
--aithe-color-text-muted: #265a52;
|
|
74
|
+
--aithe-color-text-subtle: #568a82;
|
|
75
|
+
--aithe-color-overlay: rgba(5, 24, 22, 0.48);
|
|
76
|
+
--aithe-color-selection: rgba(19, 168, 168, 0.16);
|
|
77
|
+
--aithe-color-focus-ring: rgba(19, 168, 168, 0.36);
|
|
78
|
+
--aithe-color-text-secondary: #3d4a66;
|
|
79
|
+
--aithe-color-bg-muted: #e8ecf4;
|
|
80
|
+
--aithe-color-bg-hover: rgba(0, 0, 0, 0.04);
|
|
81
|
+
--aithe-color-border-subtle: rgba(76, 94, 132, 0.10);
|
|
82
|
+
--aithe-primary-6-rgb: 77, 141, 255;
|
|
83
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
84
|
+
--aithe-code-keyword: #7c3aed;
|
|
85
|
+
--aithe-code-boolean: #b45309;
|
|
86
|
+
--aithe-code-builtin: #0d9488;
|
|
87
|
+
--aithe-code-number: #b45309;
|
|
88
|
+
--aithe-code-string: #15803d;
|
|
89
|
+
--aithe-code-function: #0d9488;
|
|
90
|
+
--aithe-code-type: #a16207;
|
|
91
|
+
--aithe-code-preprocessor: #7c3aed;
|
|
92
|
+
--aithe-code-tag: #dc2626;
|
|
93
|
+
--aithe-code-attr: #b45309;
|
|
94
|
+
--aithe-code-key: #dc2626;
|
|
95
|
+
--aithe-code-punctuation: #00897b;
|
|
96
|
+
--aithe-code-entity: #b45309;
|
|
97
|
+
--aithe-code-comment: #5e7872;
|
|
98
|
+
--aithe-code-doctype: #5e7872;
|
|
99
|
+
--aithe-code-placeholder: #5e7872;
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* trustworthy, state-owned enterprise style.
|
|
7
7
|
* 灵感来自天翼云品牌色:蓝色 primary (#0052CC),配央企可信赖风格。
|
|
8
8
|
*/
|
|
9
|
-
export declare const tianyiThemeTokens = "\n.aithe-theme-tianyi,\n[data-aithe-theme='tianyi'] {\n color-scheme: light;\n --aithe-primary-1: #edf5ff;\n --aithe-primary-2: #d4e8ff;\n --aithe-primary-3: #a8d0ff;\n --aithe-primary-4: #75b2ff;\n --aithe-primary-5: #4d97ff;\n --aithe-primary-6: #2679f0;\n --aithe-primary-7: #0052cc;\n --aithe-primary-8: #0042a8;\n --aithe-primary-9: #003688;\n --aithe-primary-10: #002b6b;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f4f6fa;\n --aithe-neutral-2: #e6eaf3;\n --aithe-neutral-3: #d0d7e6;\n --aithe-neutral-4: #b1bbd0;\n --aithe-neutral-5: #8f9bb5;\n --aithe-neutral-6: #6f7c9a;\n --aithe-neutral-7: #515f7e;\n --aithe-neutral-8: #384662;\n --aithe-neutral-9: #222e47;\n --aithe-neutral-10: #111a2d;\n --aithe-color-bg: #f2f6fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f8fbff 0%, #ecf2fa 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4ebf6;\n --aithe-color-border: rgba(0, 82, 204, 0.16);\n --aithe-color-border-strong: rgba(0, 82, 204, 0.28);\n --aithe-color-text: #0c1324;\n --aithe-color-text-muted: #384b6a;\n --aithe-color-text-subtle: #687b9a;\n --aithe-color-overlay: rgba(6, 14, 28, 0.50);\n --aithe-color-selection: rgba(0, 82, 204, 0.16);\n --aithe-color-focus-ring: rgba(0, 82, 204, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n";
|
|
9
|
+
export declare const tianyiThemeTokens = "\n.aithe-theme-tianyi,\n[data-aithe-theme='tianyi'] {\n color-scheme: light;\n --aithe-primary-1: #edf5ff;\n --aithe-primary-2: #d4e8ff;\n --aithe-primary-3: #a8d0ff;\n --aithe-primary-4: #75b2ff;\n --aithe-primary-5: #4d97ff;\n --aithe-primary-6: #2679f0;\n --aithe-primary-7: #0052cc;\n --aithe-primary-8: #0042a8;\n --aithe-primary-9: #003688;\n --aithe-primary-10: #002b6b;\n --aithe-success-1: #edfcf6;\n --aithe-success-2: #c9f5e0;\n --aithe-success-3: #9cecc4;\n --aithe-success-4: #6cd8a2;\n --aithe-success-5: #44c084;\n --aithe-success-6: #2ea86c;\n --aithe-success-7: #228c58;\n --aithe-success-8: #1a7046;\n --aithe-success-9: #145a38;\n --aithe-success-10: #10482e;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #ffefc4;\n --aithe-warning-3: #ffde8e;\n --aithe-warning-4: #ffc95a;\n --aithe-warning-5: #f0b03e;\n --aithe-warning-6: #d08e26;\n --aithe-warning-7: #ac701a;\n --aithe-warning-8: #8a5816;\n --aithe-warning-9: #6e4614;\n --aithe-warning-10: #583610;\n --aithe-danger-1: #fff1f4;\n --aithe-danger-2: #ffdce2;\n --aithe-danger-3: #ffbcc8;\n --aithe-danger-4: #ff92a4;\n --aithe-danger-5: #f86c83;\n --aithe-danger-6: #df526b;\n --aithe-danger-7: #be4159;\n --aithe-danger-8: #99354a;\n --aithe-danger-9: #7a2d3d;\n --aithe-danger-10: #612634;\n --aithe-neutral-1: #f4f6fa;\n --aithe-neutral-2: #e6eaf3;\n --aithe-neutral-3: #d0d7e6;\n --aithe-neutral-4: #b1bbd0;\n --aithe-neutral-5: #8f9bb5;\n --aithe-neutral-6: #6f7c9a;\n --aithe-neutral-7: #515f7e;\n --aithe-neutral-8: #384662;\n --aithe-neutral-9: #222e47;\n --aithe-neutral-10: #111a2d;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #f2f6fc;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f8fbff 0%, #ecf2fa 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.88);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #e4ebf6;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(0, 82, 204, 0.16);\n --aithe-color-border-strong: rgba(0, 82, 204, 0.28);\n --aithe-color-text: #0c1324;\n --aithe-color-text-muted: #384b6a;\n --aithe-color-text-subtle: #687b9a;\n --aithe-color-overlay: rgba(6, 14, 28, 0.50);\n --aithe-color-selection: rgba(0, 82, 204, 0.16);\n --aithe-color-focus-ring: rgba(0, 82, 204, 0.36);\n --aithe-color-text-secondary: #3d4a66;\n --aithe-color-bg-muted: #e8ecf4;\n --aithe-color-bg-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border-subtle: rgba(76, 94, 132, 0.10);\n --aithe-primary-6-rgb: 77, 141, 255;\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #7c3aed;\n --aithe-code-boolean: #b45309;\n --aithe-code-builtin: #2563eb;\n --aithe-code-number: #b45309;\n --aithe-code-string: #15803d;\n --aithe-code-function: #2563eb;\n --aithe-code-type: #a16207;\n --aithe-code-preprocessor: #7c3aed;\n --aithe-code-tag: #dc2626;\n --aithe-code-attr: #b45309;\n --aithe-code-key: #dc2626;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #b45309;\n --aithe-code-comment: #94a3b8;\n --aithe-code-doctype: #94a3b8;\n --aithe-code-placeholder: #94a3b8;\n}\n";
|
|
10
10
|
//# sourceMappingURL=tianyi.d.ts.map
|