@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
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Dark theme tokens.
|
|
3
|
+
* 深色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Primary, success, warning, danger, neutral scales plus semantic color aliases and dark-mode shadows.
|
|
6
|
+
* primary、success、warning、danger、neutral 色阶、语义颜色别名及深色模式阴影。
|
|
7
|
+
*/
|
|
8
|
+
export const darkThemeTokens = `
|
|
9
|
+
.aithe-theme-dark,
|
|
10
|
+
[data-aithe-theme='dark'] {
|
|
11
|
+
color-scheme: dark;
|
|
12
|
+
--aithe-primary-1: #edf4ff;
|
|
13
|
+
--aithe-primary-2: #d7e5ff;
|
|
14
|
+
--aithe-primary-3: #b8d2ff;
|
|
15
|
+
--aithe-primary-4: #8ab3ff;
|
|
16
|
+
--aithe-primary-5: #6092ff;
|
|
17
|
+
--aithe-primary-6: #4a7dff;
|
|
18
|
+
--aithe-primary-7: #3d68e0;
|
|
19
|
+
--aithe-primary-8: #3555b6;
|
|
20
|
+
--aithe-primary-9: #2f478f;
|
|
21
|
+
--aithe-primary-10: #28396f;
|
|
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: #f5f7fb;
|
|
53
|
+
--aithe-neutral-2: #dfe5ef;
|
|
54
|
+
--aithe-neutral-3: #c7d0de;
|
|
55
|
+
--aithe-neutral-4: #aab6c9;
|
|
56
|
+
--aithe-neutral-5: #8997b0;
|
|
57
|
+
--aithe-neutral-6: #6d7a92;
|
|
58
|
+
--aithe-neutral-7: #536077;
|
|
59
|
+
--aithe-neutral-8: #3b465a;
|
|
60
|
+
--aithe-neutral-9: #242d3d;
|
|
61
|
+
--aithe-neutral-10: #121925;
|
|
62
|
+
--aithe-fill-1: #1a2133;
|
|
63
|
+
--aithe-fill-2: #1e263a;
|
|
64
|
+
--aithe-color-bg: #0c1018;
|
|
65
|
+
--aithe-color-bg-subtle: radial-gradient(circle at top, rgba(55, 87, 151, 0.22) 0%, rgba(12, 16, 24, 1) 58%);
|
|
66
|
+
--aithe-color-surface: rgba(17, 24, 39, 0.82);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(19, 27, 44, 0.96);
|
|
68
|
+
--aithe-color-surface-muted: #151c2b;
|
|
69
|
+
--aithe-color-surface-hover: rgba(255, 255, 255, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(172, 188, 217, 0.16);
|
|
71
|
+
--aithe-color-border-strong: rgba(183, 198, 228, 0.24);
|
|
72
|
+
--aithe-color-text: #f0f5ff;
|
|
73
|
+
--aithe-color-text-muted: #a8b5cc;
|
|
74
|
+
--aithe-color-text-subtle: #8894ab;
|
|
75
|
+
--aithe-color-overlay: rgba(1, 4, 11, 0.68);
|
|
76
|
+
--aithe-color-selection: rgba(116, 170, 255, 0.24);
|
|
77
|
+
--aithe-color-focus-ring: rgba(116, 170, 255, 0.42);
|
|
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.20);
|
|
84
|
+
--aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.26);
|
|
85
|
+
--aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.32);
|
|
86
|
+
--aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.38);
|
|
87
|
+
--aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.44);
|
|
88
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
89
|
+
--aithe-code-keyword: #c678dd;
|
|
90
|
+
--aithe-code-boolean: #d19a66;
|
|
91
|
+
--aithe-code-builtin: #e5c07b;
|
|
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: #5c6370;
|
|
103
|
+
--aithe-code-doctype: #5c6370;
|
|
104
|
+
--aithe-code-placeholder: #5c6370;
|
|
105
|
+
}
|
|
106
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Warm deep black, rich & luxurious.
|
|
6
6
|
* 暖调深黑,丰厚奢华,适合高端品牌、奢侈品、暗色展示。
|
|
7
7
|
*/
|
|
8
|
-
export declare const ebonyThemeTokens = "\n.aithe-theme-ebony,\n[data-aithe-theme='ebony'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0f8;\n --aithe-primary-2: #e0d8f0;\n --aithe-primary-3: #c4b4e0;\n --aithe-primary-4: #a48cc8;\n --aithe-primary-5: #8468b0;\n --aithe-primary-6: #6a5094;\n --aithe-primary-7: #544078;\n --aithe-primary-8: #403260;\n --aithe-primary-9: #30264a;\n --aithe-primary-10: #221c38;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\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: #f0ece8;\n --aithe-neutral-2: #d4ccc4;\n --aithe-neutral-3: #b0a498;\n --aithe-neutral-4: #8c7e72;\n --aithe-neutral-5: #6e6258;\n --aithe-neutral-6: #544c44;\n --aithe-neutral-7: #3e3832;\n --aithe-neutral-8: #2c2822;\n --aithe-neutral-9: #1c1a16;\n --aithe-neutral-10: #0e0c0a;\n --aithe-color-bg: #0c0a08;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 60, 100, 0.14) 0%, rgba(12, 10, 8, 1) 55%);\n --aithe-color-surface: rgba(16, 14, 12, 0.86);\n --aithe-color-surface-elevated: rgba(22, 20, 18, 0.96);\n --aithe-color-surface-muted: #181614;\n --aithe-color-border: rgba(160, 140, 130, 0.17);\n --aithe-color-border-strong: rgba(180, 160, 150, 0.25);\n --aithe-color-text: #ece6e0;\n --aithe-color-text-muted: #a09080;\n --aithe-color-text-subtle: #786c60;\n --aithe-color-overlay: rgba(4, 2, 0, 0.70);\n --aithe-color-selection: rgba(106, 80, 148, 0.20);\n --aithe-color-focus-ring: rgba(106, 80, 148, 0.38);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.28);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.34);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.40);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.46);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.52);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cc8;\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: #3e3832;\n --aithe-code-doctype: #3e3832;\n --aithe-code-placeholder: #3e3832;\n}\n";
|
|
8
|
+
export declare const ebonyThemeTokens = "\n.aithe-theme-ebony,\n[data-aithe-theme='ebony'] {\n color-scheme: dark;\n --aithe-primary-1: #f4f0f8;\n --aithe-primary-2: #e0d8f0;\n --aithe-primary-3: #c4b4e0;\n --aithe-primary-4: #a48cc8;\n --aithe-primary-5: #8468b0;\n --aithe-primary-6: #6a5094;\n --aithe-primary-7: #544078;\n --aithe-primary-8: #403260;\n --aithe-primary-9: #30264a;\n --aithe-primary-10: #221c38;\n --aithe-success-1: #f0fcee;\n --aithe-success-2: #d2f5cc;\n --aithe-success-3: #aeeaa0;\n --aithe-success-4: #80da6e;\n --aithe-success-5: #5ac648;\n --aithe-success-6: #3eae30;\n --aithe-success-7: #2e9024;\n --aithe-success-8: #22721c;\n --aithe-success-9: #1a5a16;\n --aithe-success-10: #144610;\n --aithe-warning-1: #fff9eb;\n --aithe-warning-2: #fff0c4;\n --aithe-warning-3: #ffe08e;\n --aithe-warning-4: #ffcc5a;\n --aithe-warning-5: #f0b43e;\n --aithe-warning-6: #d09426;\n --aithe-warning-7: #ac761a;\n --aithe-warning-8: #8a5c16;\n --aithe-warning-9: #6e4a14;\n --aithe-warning-10: #583810;\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: #f0ece8;\n --aithe-neutral-2: #d4ccc4;\n --aithe-neutral-3: #b0a498;\n --aithe-neutral-4: #8c7e72;\n --aithe-neutral-5: #6e6258;\n --aithe-neutral-6: #544c44;\n --aithe-neutral-7: #3e3832;\n --aithe-neutral-8: #2c2822;\n --aithe-neutral-9: #1c1a16;\n --aithe-neutral-10: #0e0c0a;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #0c0a08;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 60, 100, 0.14) 0%, rgba(12, 10, 8, 1) 55%);\n --aithe-color-surface: rgba(16, 14, 12, 0.86);\n --aithe-color-surface-elevated: rgba(22, 20, 18, 0.96);\n --aithe-color-surface-muted: #181614;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(160, 140, 130, 0.17);\n --aithe-color-border-strong: rgba(180, 160, 150, 0.25);\n --aithe-color-text: #ece6e0;\n --aithe-color-text-muted: #a09080;\n --aithe-color-text-subtle: #786c60;\n --aithe-color-overlay: rgba(4, 2, 0, 0.70);\n --aithe-color-selection: rgba(106, 80, 148, 0.20);\n --aithe-color-focus-ring: rgba(106, 80, 148, 0.38);\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.28);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.34);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.40);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.46);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.52);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #c678dd;\n --aithe-code-boolean: #d19a66;\n --aithe-code-builtin: #a48cc8;\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: #3e3832;\n --aithe-code-doctype: #3e3832;\n --aithe-code-placeholder: #3e3832;\n}\n";
|
|
9
9
|
//# sourceMappingURL=ebony.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ebony.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/ebony.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,
|
|
1
|
+
{"version":3,"file":"ebony.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/ebony.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,gBAAgB,w6GAkG5B,CAAC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ebony theme tokens.
|
|
3
|
+
* 乌木暗色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Warm deep black, rich & luxurious.
|
|
6
|
+
* 暖调深黑,丰厚奢华,适合高端品牌、奢侈品、暗色展示。
|
|
7
|
+
*/
|
|
8
|
+
export const ebonyThemeTokens = `
|
|
9
|
+
.aithe-theme-ebony,
|
|
10
|
+
[data-aithe-theme='ebony'] {
|
|
11
|
+
color-scheme: dark;
|
|
12
|
+
--aithe-primary-1: #f4f0f8;
|
|
13
|
+
--aithe-primary-2: #e0d8f0;
|
|
14
|
+
--aithe-primary-3: #c4b4e0;
|
|
15
|
+
--aithe-primary-4: #a48cc8;
|
|
16
|
+
--aithe-primary-5: #8468b0;
|
|
17
|
+
--aithe-primary-6: #6a5094;
|
|
18
|
+
--aithe-primary-7: #544078;
|
|
19
|
+
--aithe-primary-8: #403260;
|
|
20
|
+
--aithe-primary-9: #30264a;
|
|
21
|
+
--aithe-primary-10: #221c38;
|
|
22
|
+
--aithe-success-1: #f0fcee;
|
|
23
|
+
--aithe-success-2: #d2f5cc;
|
|
24
|
+
--aithe-success-3: #aeeaa0;
|
|
25
|
+
--aithe-success-4: #80da6e;
|
|
26
|
+
--aithe-success-5: #5ac648;
|
|
27
|
+
--aithe-success-6: #3eae30;
|
|
28
|
+
--aithe-success-7: #2e9024;
|
|
29
|
+
--aithe-success-8: #22721c;
|
|
30
|
+
--aithe-success-9: #1a5a16;
|
|
31
|
+
--aithe-success-10: #144610;
|
|
32
|
+
--aithe-warning-1: #fff9eb;
|
|
33
|
+
--aithe-warning-2: #fff0c4;
|
|
34
|
+
--aithe-warning-3: #ffe08e;
|
|
35
|
+
--aithe-warning-4: #ffcc5a;
|
|
36
|
+
--aithe-warning-5: #f0b43e;
|
|
37
|
+
--aithe-warning-6: #d09426;
|
|
38
|
+
--aithe-warning-7: #ac761a;
|
|
39
|
+
--aithe-warning-8: #8a5c16;
|
|
40
|
+
--aithe-warning-9: #6e4a14;
|
|
41
|
+
--aithe-warning-10: #583810;
|
|
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: #f0ece8;
|
|
53
|
+
--aithe-neutral-2: #d4ccc4;
|
|
54
|
+
--aithe-neutral-3: #b0a498;
|
|
55
|
+
--aithe-neutral-4: #8c7e72;
|
|
56
|
+
--aithe-neutral-5: #6e6258;
|
|
57
|
+
--aithe-neutral-6: #544c44;
|
|
58
|
+
--aithe-neutral-7: #3e3832;
|
|
59
|
+
--aithe-neutral-8: #2c2822;
|
|
60
|
+
--aithe-neutral-9: #1c1a16;
|
|
61
|
+
--aithe-neutral-10: #0e0c0a;
|
|
62
|
+
--aithe-fill-1: #1a2133;
|
|
63
|
+
--aithe-fill-2: #1e263a;
|
|
64
|
+
--aithe-color-bg: #0c0a08;
|
|
65
|
+
--aithe-color-bg-subtle: radial-gradient(circle at top, rgba(90, 60, 100, 0.14) 0%, rgba(12, 10, 8, 1) 55%);
|
|
66
|
+
--aithe-color-surface: rgba(16, 14, 12, 0.86);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(22, 20, 18, 0.96);
|
|
68
|
+
--aithe-color-surface-muted: #181614;
|
|
69
|
+
--aithe-color-surface-hover: rgba(255, 255, 255, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(160, 140, 130, 0.17);
|
|
71
|
+
--aithe-color-border-strong: rgba(180, 160, 150, 0.25);
|
|
72
|
+
--aithe-color-text: #ece6e0;
|
|
73
|
+
--aithe-color-text-muted: #a09080;
|
|
74
|
+
--aithe-color-text-subtle: #786c60;
|
|
75
|
+
--aithe-color-overlay: rgba(4, 2, 0, 0.70);
|
|
76
|
+
--aithe-color-selection: rgba(106, 80, 148, 0.20);
|
|
77
|
+
--aithe-color-focus-ring: rgba(106, 80, 148, 0.38);
|
|
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.28);
|
|
84
|
+
--aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.34);
|
|
85
|
+
--aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.40);
|
|
86
|
+
--aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.46);
|
|
87
|
+
--aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.52);
|
|
88
|
+
--aithe-color-text-on-primary: #ffffff;
|
|
89
|
+
--aithe-code-keyword: #c678dd;
|
|
90
|
+
--aithe-code-boolean: #d19a66;
|
|
91
|
+
--aithe-code-builtin: #a48cc8;
|
|
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: #3e3832;
|
|
103
|
+
--aithe-code-doctype: #3e3832;
|
|
104
|
+
--aithe-code-placeholder: #3e3832;
|
|
105
|
+
}
|
|
106
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Bright red & warm red primary with gold and light orange accents, grand and celebratory.
|
|
6
6
|
* 明亮正红与暖红主色,搭配金色、浅橙点缀,热闹大气、节日氛围,适合活动、庆典、电商大促。
|
|
7
7
|
*/
|
|
8
|
-
export declare const festiveThemeTokens = "\n.aithe-theme-festive,\n[data-aithe-theme='festive'] {\n color-scheme: light;\n --aithe-primary-1: #fff5f5;\n --aithe-primary-2: #ffe8e6;\n --aithe-primary-3: #ffd4cf;\n --aithe-primary-4: #ffb3aa;\n --aithe-primary-5: #ff8c80;\n --aithe-primary-6: #f5313d;\n --aithe-primary-7: #d91a2a;\n --aithe-primary-8: #b51020;\n --aithe-primary-9: #8e0a18;\n --aithe-primary-10: #660612;\n --aithe-success-1: #f4fce8;\n --aithe-success-2: #e2f5c8;\n --aithe-success-3: #c5eca0;\n --aithe-success-4: #9ede6a;\n --aithe-success-5: #7acd42;\n --aithe-success-6: #5cb32a;\n --aithe-success-7: #46941e;\n --aithe-success-8: #367618;\n --aithe-success-9: #2a5c14;\n --aithe-success-10: #1f4410;\n --aithe-warning-1: #fffbf0;\n --aithe-warning-2: #fff1cc;\n --aithe-warning-3: #ffe4a0;\n --aithe-warning-4: #ffd470;\n --aithe-warning-5: #f5c242;\n --aithe-warning-6: #d4a017;\n --aithe-warning-7: #b8860b;\n --aithe-warning-8: #8c6d0f;\n --aithe-warning-9: #6b4f0a;\n --aithe-warning-10: #493506;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffccc7;\n --aithe-danger-3: #ffa39e;\n --aithe-danger-4: #ff7875;\n --aithe-danger-5: #ff4d4f;\n --aithe-danger-6: #d91a2a;\n --aithe-danger-7: #b51020;\n --aithe-danger-8: #8e0a18;\n --aithe-danger-9: #660612;\n --aithe-danger-10: #44040c;\n --aithe-neutral-1: #fdfbfa;\n --aithe-neutral-2: #f8f3f1;\n --aithe-neutral-3: #efe6e2;\n --aithe-neutral-4: #ddd0c8;\n --aithe-neutral-5: #c4b2a6;\n --aithe-neutral-6: #a89486;\n --aithe-neutral-7: #8a766a;\n --aithe-neutral-8: #665850;\n --aithe-neutral-9: #423a36;\n --aithe-neutral-10: #221e1c;\n --aithe-color-bg: #fef8f5;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffbf9 0%, #fef3ed 100%);\n --aithe-color-surface: rgba(255, 253, 251, 0.90);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f8ede6;\n --aithe-color-border: rgba(180, 80, 50, 0.16);\n --aithe-color-border-strong: rgba(160, 60, 35, 0.26);\n --aithe-color-text: #2c1014;\n --aithe-color-text-muted: #6e3a3a;\n --aithe-color-text-subtle: #9a6e68;\n --aithe-color-overlay: rgba(36, 8, 8, 0.48);\n --aithe-color-selection: rgba(245, 49, 61, 0.14);\n --aithe-color-focus-ring: rgba(245, 49, 61, 0.34);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #9333ea;\n --aithe-code-boolean: #c2410c;\n --aithe-code-builtin: #dc2626;\n --aithe-code-number: #c2410c;\n --aithe-code-string: #16a34a;\n --aithe-code-function: #dc2626;\n --aithe-code-type: #b45309;\n --aithe-code-preprocessor: #9333ea;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #c2410c;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #6a5acd;\n --aithe-code-entity: #c2410c;\n --aithe-code-comment: #a8a29e;\n --aithe-code-doctype: #a8a29e;\n --aithe-code-placeholder: #a8a29e;\n}\n";
|
|
8
|
+
export declare const festiveThemeTokens = "\n.aithe-theme-festive,\n[data-aithe-theme='festive'] {\n color-scheme: light;\n --aithe-primary-1: #fff5f5;\n --aithe-primary-2: #ffe8e6;\n --aithe-primary-3: #ffd4cf;\n --aithe-primary-4: #ffb3aa;\n --aithe-primary-5: #ff8c80;\n --aithe-primary-6: #f5313d;\n --aithe-primary-7: #d91a2a;\n --aithe-primary-8: #b51020;\n --aithe-primary-9: #8e0a18;\n --aithe-primary-10: #660612;\n --aithe-success-1: #f4fce8;\n --aithe-success-2: #e2f5c8;\n --aithe-success-3: #c5eca0;\n --aithe-success-4: #9ede6a;\n --aithe-success-5: #7acd42;\n --aithe-success-6: #5cb32a;\n --aithe-success-7: #46941e;\n --aithe-success-8: #367618;\n --aithe-success-9: #2a5c14;\n --aithe-success-10: #1f4410;\n --aithe-warning-1: #fffbf0;\n --aithe-warning-2: #fff1cc;\n --aithe-warning-3: #ffe4a0;\n --aithe-warning-4: #ffd470;\n --aithe-warning-5: #f5c242;\n --aithe-warning-6: #d4a017;\n --aithe-warning-7: #b8860b;\n --aithe-warning-8: #8c6d0f;\n --aithe-warning-9: #6b4f0a;\n --aithe-warning-10: #493506;\n --aithe-danger-1: #fff1f0;\n --aithe-danger-2: #ffccc7;\n --aithe-danger-3: #ffa39e;\n --aithe-danger-4: #ff7875;\n --aithe-danger-5: #ff4d4f;\n --aithe-danger-6: #d91a2a;\n --aithe-danger-7: #b51020;\n --aithe-danger-8: #8e0a18;\n --aithe-danger-9: #660612;\n --aithe-danger-10: #44040c;\n --aithe-neutral-1: #fdfbfa;\n --aithe-neutral-2: #f8f3f1;\n --aithe-neutral-3: #efe6e2;\n --aithe-neutral-4: #ddd0c8;\n --aithe-neutral-5: #c4b2a6;\n --aithe-neutral-6: #a89486;\n --aithe-neutral-7: #8a766a;\n --aithe-neutral-8: #665850;\n --aithe-neutral-9: #423a36;\n --aithe-neutral-10: #221e1c;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #fef8f5;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fffbf9 0%, #fef3ed 100%);\n --aithe-color-surface: rgba(255, 253, 251, 0.90);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);\n --aithe-color-surface-muted: #f8ede6;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(180, 80, 50, 0.16);\n --aithe-color-border-strong: rgba(160, 60, 35, 0.26);\n --aithe-color-text: #2c1014;\n --aithe-color-text-muted: #6e3a3a;\n --aithe-color-text-subtle: #9a6e68;\n --aithe-color-overlay: rgba(36, 8, 8, 0.48);\n --aithe-color-selection: rgba(245, 49, 61, 0.14);\n --aithe-color-focus-ring: rgba(245, 49, 61, 0.34);\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: #9333ea;\n --aithe-code-boolean: #c2410c;\n --aithe-code-builtin: #dc2626;\n --aithe-code-number: #c2410c;\n --aithe-code-string: #16a34a;\n --aithe-code-function: #dc2626;\n --aithe-code-type: #b45309;\n --aithe-code-preprocessor: #9333ea;\n --aithe-code-tag: #be123c;\n --aithe-code-attr: #c2410c;\n --aithe-code-key: #be123c;\n --aithe-code-punctuation: #6a5acd;\n --aithe-code-entity: #c2410c;\n --aithe-code-comment: #a8a29e;\n --aithe-code-doctype: #a8a29e;\n --aithe-code-placeholder: #a8a29e;\n}\n";
|
|
9
9
|
//# sourceMappingURL=festive.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"festive.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/festive.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"festive.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/festive.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,kBAAkB,knGA6F9B,CAAC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Festive theme tokens.
|
|
3
|
+
* 喜庆主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Bright red & warm red primary with gold and light orange accents, grand and celebratory.
|
|
6
|
+
* 明亮正红与暖红主色,搭配金色、浅橙点缀,热闹大气、节日氛围,适合活动、庆典、电商大促。
|
|
7
|
+
*/
|
|
8
|
+
export const festiveThemeTokens = `
|
|
9
|
+
.aithe-theme-festive,
|
|
10
|
+
[data-aithe-theme='festive'] {
|
|
11
|
+
color-scheme: light;
|
|
12
|
+
--aithe-primary-1: #fff5f5;
|
|
13
|
+
--aithe-primary-2: #ffe8e6;
|
|
14
|
+
--aithe-primary-3: #ffd4cf;
|
|
15
|
+
--aithe-primary-4: #ffb3aa;
|
|
16
|
+
--aithe-primary-5: #ff8c80;
|
|
17
|
+
--aithe-primary-6: #f5313d;
|
|
18
|
+
--aithe-primary-7: #d91a2a;
|
|
19
|
+
--aithe-primary-8: #b51020;
|
|
20
|
+
--aithe-primary-9: #8e0a18;
|
|
21
|
+
--aithe-primary-10: #660612;
|
|
22
|
+
--aithe-success-1: #f4fce8;
|
|
23
|
+
--aithe-success-2: #e2f5c8;
|
|
24
|
+
--aithe-success-3: #c5eca0;
|
|
25
|
+
--aithe-success-4: #9ede6a;
|
|
26
|
+
--aithe-success-5: #7acd42;
|
|
27
|
+
--aithe-success-6: #5cb32a;
|
|
28
|
+
--aithe-success-7: #46941e;
|
|
29
|
+
--aithe-success-8: #367618;
|
|
30
|
+
--aithe-success-9: #2a5c14;
|
|
31
|
+
--aithe-success-10: #1f4410;
|
|
32
|
+
--aithe-warning-1: #fffbf0;
|
|
33
|
+
--aithe-warning-2: #fff1cc;
|
|
34
|
+
--aithe-warning-3: #ffe4a0;
|
|
35
|
+
--aithe-warning-4: #ffd470;
|
|
36
|
+
--aithe-warning-5: #f5c242;
|
|
37
|
+
--aithe-warning-6: #d4a017;
|
|
38
|
+
--aithe-warning-7: #b8860b;
|
|
39
|
+
--aithe-warning-8: #8c6d0f;
|
|
40
|
+
--aithe-warning-9: #6b4f0a;
|
|
41
|
+
--aithe-warning-10: #493506;
|
|
42
|
+
--aithe-danger-1: #fff1f0;
|
|
43
|
+
--aithe-danger-2: #ffccc7;
|
|
44
|
+
--aithe-danger-3: #ffa39e;
|
|
45
|
+
--aithe-danger-4: #ff7875;
|
|
46
|
+
--aithe-danger-5: #ff4d4f;
|
|
47
|
+
--aithe-danger-6: #d91a2a;
|
|
48
|
+
--aithe-danger-7: #b51020;
|
|
49
|
+
--aithe-danger-8: #8e0a18;
|
|
50
|
+
--aithe-danger-9: #660612;
|
|
51
|
+
--aithe-danger-10: #44040c;
|
|
52
|
+
--aithe-neutral-1: #fdfbfa;
|
|
53
|
+
--aithe-neutral-2: #f8f3f1;
|
|
54
|
+
--aithe-neutral-3: #efe6e2;
|
|
55
|
+
--aithe-neutral-4: #ddd0c8;
|
|
56
|
+
--aithe-neutral-5: #c4b2a6;
|
|
57
|
+
--aithe-neutral-6: #a89486;
|
|
58
|
+
--aithe-neutral-7: #8a766a;
|
|
59
|
+
--aithe-neutral-8: #665850;
|
|
60
|
+
--aithe-neutral-9: #423a36;
|
|
61
|
+
--aithe-neutral-10: #221e1c;
|
|
62
|
+
--aithe-fill-1: #f7f8fa;
|
|
63
|
+
--aithe-fill-2: #f0f1f3;
|
|
64
|
+
--aithe-color-bg: #fef8f5;
|
|
65
|
+
--aithe-color-bg-subtle: linear-gradient(180deg, #fffbf9 0%, #fef3ed 100%);
|
|
66
|
+
--aithe-color-surface: rgba(255, 253, 251, 0.90);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(255, 255, 255, 0.98);
|
|
68
|
+
--aithe-color-surface-muted: #f8ede6;
|
|
69
|
+
--aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(180, 80, 50, 0.16);
|
|
71
|
+
--aithe-color-border-strong: rgba(160, 60, 35, 0.26);
|
|
72
|
+
--aithe-color-text: #2c1014;
|
|
73
|
+
--aithe-color-text-muted: #6e3a3a;
|
|
74
|
+
--aithe-color-text-subtle: #9a6e68;
|
|
75
|
+
--aithe-color-overlay: rgba(36, 8, 8, 0.48);
|
|
76
|
+
--aithe-color-selection: rgba(245, 49, 61, 0.14);
|
|
77
|
+
--aithe-color-focus-ring: rgba(245, 49, 61, 0.34);
|
|
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: #9333ea;
|
|
85
|
+
--aithe-code-boolean: #c2410c;
|
|
86
|
+
--aithe-code-builtin: #dc2626;
|
|
87
|
+
--aithe-code-number: #c2410c;
|
|
88
|
+
--aithe-code-string: #16a34a;
|
|
89
|
+
--aithe-code-function: #dc2626;
|
|
90
|
+
--aithe-code-type: #b45309;
|
|
91
|
+
--aithe-code-preprocessor: #9333ea;
|
|
92
|
+
--aithe-code-tag: #be123c;
|
|
93
|
+
--aithe-code-attr: #c2410c;
|
|
94
|
+
--aithe-code-key: #be123c;
|
|
95
|
+
--aithe-code-punctuation: #6a5acd;
|
|
96
|
+
--aithe-code-entity: #c2410c;
|
|
97
|
+
--aithe-code-comment: #a8a29e;
|
|
98
|
+
--aithe-code-doctype: #a8a29e;
|
|
99
|
+
--aithe-code-placeholder: #a8a29e;
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Metallic gray, neutral & refined.
|
|
6
6
|
* 金属灰调,中性克制,适合设计工具、通用暗色、跨场景适配。
|
|
7
7
|
*/
|
|
8
|
-
export declare const graphiteThemeTokens = "\n.aithe-theme-graphite,\n[data-aithe-theme='graphite'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f2f8;\n --aithe-primary-2: #d6dcf0;\n --aithe-primary-3: #b0bce4;\n --aithe-primary-4: #8498d4;\n --aithe-primary-5: #6278c0;\n --aithe-primary-6: #4c60a6;\n --aithe-primary-7: #3c4e88;\n --aithe-primary-8: #2e3e6c;\n --aithe-primary-9: #223054;\n --aithe-primary-10: #182240;\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: #eef0f4;\n --aithe-neutral-2: #d2d6de;\n --aithe-neutral-3: #b0b6c4;\n --aithe-neutral-4: #8c94a8;\n --aithe-neutral-5: #6c748c;\n --aithe-neutral-6: #525a72;\n --aithe-neutral-7: #3c445a;\n --aithe-neutral-8: #2a3044;\n --aithe-neutral-9: #1c2034;\n --aithe-neutral-10: #101424;\n --aithe-color-bg: #12141a;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 90, 130, 0.14) 0%, rgba(18, 20, 26, 1) 55%);\n --aithe-color-surface: rgba(20, 22, 28, 0.84);\n --aithe-color-surface-elevated: rgba(26, 30, 38, 0.96);\n --aithe-color-surface-muted: #1c1e26;\n --aithe-color-border: rgba(150, 160, 190, 0.17);\n --aithe-color-border-strong: rgba(170, 180, 210, 0.25);\n --aithe-color-text: #e8eaf4;\n --aithe-color-text-muted: #989eb0;\n --aithe-color-text-subtle: #727a90;\n --aithe-color-overlay: rgba(4, 4, 10, 0.66);\n --aithe-color-selection: rgba(76, 96, 166, 0.22);\n --aithe-color-focus-ring: rgba(76, 96, 166, 0.40);\n --aithe-shadow-1: 0 8px 18px rgba(0, 0, 0, 0.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\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: #3c445a;\n --aithe-code-doctype: #3c445a;\n --aithe-code-placeholder: #3c445a;\n}\n";
|
|
8
|
+
export declare const graphiteThemeTokens = "\n.aithe-theme-graphite,\n[data-aithe-theme='graphite'] {\n color-scheme: dark;\n --aithe-primary-1: #f0f2f8;\n --aithe-primary-2: #d6dcf0;\n --aithe-primary-3: #b0bce4;\n --aithe-primary-4: #8498d4;\n --aithe-primary-5: #6278c0;\n --aithe-primary-6: #4c60a6;\n --aithe-primary-7: #3c4e88;\n --aithe-primary-8: #2e3e6c;\n --aithe-primary-9: #223054;\n --aithe-primary-10: #182240;\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: #eef0f4;\n --aithe-neutral-2: #d2d6de;\n --aithe-neutral-3: #b0b6c4;\n --aithe-neutral-4: #8c94a8;\n --aithe-neutral-5: #6c748c;\n --aithe-neutral-6: #525a72;\n --aithe-neutral-7: #3c445a;\n --aithe-neutral-8: #2a3044;\n --aithe-neutral-9: #1c2034;\n --aithe-neutral-10: #101424;\n --aithe-fill-1: #1a2133;\n --aithe-fill-2: #1e263a;\n --aithe-color-bg: #12141a;\n --aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 90, 130, 0.14) 0%, rgba(18, 20, 26, 1) 55%);\n --aithe-color-surface: rgba(20, 22, 28, 0.84);\n --aithe-color-surface-elevated: rgba(26, 30, 38, 0.96);\n --aithe-color-surface-muted: #1c1e26;\n --aithe-color-surface-hover: rgba(255, 255, 255, 0.04);\n --aithe-color-border: rgba(150, 160, 190, 0.17);\n --aithe-color-border-strong: rgba(170, 180, 210, 0.25);\n --aithe-color-text: #e8eaf4;\n --aithe-color-text-muted: #989eb0;\n --aithe-color-text-subtle: #727a90;\n --aithe-color-overlay: rgba(4, 4, 10, 0.66);\n --aithe-color-selection: rgba(76, 96, 166, 0.22);\n --aithe-color-focus-ring: rgba(76, 96, 166, 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.24);\n --aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);\n --aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);\n --aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);\n --aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);\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: #3c445a;\n --aithe-code-doctype: #3c445a;\n --aithe-code-placeholder: #3c445a;\n}\n";
|
|
9
9
|
//# sourceMappingURL=graphite.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graphite.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/graphite.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"graphite.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/graphite.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,86GAkG/B,CAAC"}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Graphite theme tokens.
|
|
3
|
+
* 石墨暗色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Metallic gray, neutral & refined.
|
|
6
|
+
* 金属灰调,中性克制,适合设计工具、通用暗色、跨场景适配。
|
|
7
|
+
*/
|
|
8
|
+
export const graphiteThemeTokens = `
|
|
9
|
+
.aithe-theme-graphite,
|
|
10
|
+
[data-aithe-theme='graphite'] {
|
|
11
|
+
color-scheme: dark;
|
|
12
|
+
--aithe-primary-1: #f0f2f8;
|
|
13
|
+
--aithe-primary-2: #d6dcf0;
|
|
14
|
+
--aithe-primary-3: #b0bce4;
|
|
15
|
+
--aithe-primary-4: #8498d4;
|
|
16
|
+
--aithe-primary-5: #6278c0;
|
|
17
|
+
--aithe-primary-6: #4c60a6;
|
|
18
|
+
--aithe-primary-7: #3c4e88;
|
|
19
|
+
--aithe-primary-8: #2e3e6c;
|
|
20
|
+
--aithe-primary-9: #223054;
|
|
21
|
+
--aithe-primary-10: #182240;
|
|
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: #eef0f4;
|
|
53
|
+
--aithe-neutral-2: #d2d6de;
|
|
54
|
+
--aithe-neutral-3: #b0b6c4;
|
|
55
|
+
--aithe-neutral-4: #8c94a8;
|
|
56
|
+
--aithe-neutral-5: #6c748c;
|
|
57
|
+
--aithe-neutral-6: #525a72;
|
|
58
|
+
--aithe-neutral-7: #3c445a;
|
|
59
|
+
--aithe-neutral-8: #2a3044;
|
|
60
|
+
--aithe-neutral-9: #1c2034;
|
|
61
|
+
--aithe-neutral-10: #101424;
|
|
62
|
+
--aithe-fill-1: #1a2133;
|
|
63
|
+
--aithe-fill-2: #1e263a;
|
|
64
|
+
--aithe-color-bg: #12141a;
|
|
65
|
+
--aithe-color-bg-subtle: radial-gradient(circle at top, rgba(80, 90, 130, 0.14) 0%, rgba(18, 20, 26, 1) 55%);
|
|
66
|
+
--aithe-color-surface: rgba(20, 22, 28, 0.84);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(26, 30, 38, 0.96);
|
|
68
|
+
--aithe-color-surface-muted: #1c1e26;
|
|
69
|
+
--aithe-color-surface-hover: rgba(255, 255, 255, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(150, 160, 190, 0.17);
|
|
71
|
+
--aithe-color-border-strong: rgba(170, 180, 210, 0.25);
|
|
72
|
+
--aithe-color-text: #e8eaf4;
|
|
73
|
+
--aithe-color-text-muted: #989eb0;
|
|
74
|
+
--aithe-color-text-subtle: #727a90;
|
|
75
|
+
--aithe-color-overlay: rgba(4, 4, 10, 0.66);
|
|
76
|
+
--aithe-color-selection: rgba(76, 96, 166, 0.22);
|
|
77
|
+
--aithe-color-focus-ring: rgba(76, 96, 166, 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.24);
|
|
84
|
+
--aithe-shadow-2: 0 14px 34px rgba(0, 0, 0, 0.30);
|
|
85
|
+
--aithe-shadow-3: 0 20px 44px rgba(0, 0, 0, 0.36);
|
|
86
|
+
--aithe-shadow-4: 0 24px 56px rgba(0, 0, 0, 0.42);
|
|
87
|
+
--aithe-shadow-5: 0 30px 72px rgba(0, 0, 0, 0.48);
|
|
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: #3c445a;
|
|
103
|
+
--aithe-code-doctype: #3c445a;
|
|
104
|
+
--aithe-code-placeholder: #3c445a;
|
|
105
|
+
}
|
|
106
|
+
`;
|
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Muted primary palette, semantic scales, and desaturated semantic color aliases.
|
|
6
6
|
* 柔和的 primary 调色板、语义色阶及低饱和度语义颜色别名。
|
|
7
7
|
*/
|
|
8
|
-
export declare const grayThemeTokens = "\n.aithe-theme-gray,\n[data-aithe-theme='gray'] {\n color-scheme: light;\n --aithe-primary-1: #f4f6fb;\n --aithe-primary-2: #e8edf6;\n --aithe-primary-3: #d4dce9;\n --aithe-primary-4: #b8c3d8;\n --aithe-primary-5: #96a4c0;\n --aithe-primary-6: #7485a4;\n --aithe-primary-7: #5e708d;\n --aithe-primary-8: #4d5d76;\n --aithe-primary-9: #404d61;\n --aithe-primary-10: #313a48;\n --aithe-success-1: #eff7f3;\n --aithe-success-2: #dcefe4;\n --aithe-success-3: #badfc9;\n --aithe-success-4: #97cfac;\n --aithe-success-5: #73bd90;\n --aithe-success-6: #5aa277;\n --aithe-success-7: #4a8461;\n --aithe-success-8: #3d6950;\n --aithe-success-9: #335543;\n --aithe-success-10: #294437;\n --aithe-warning-1: #f9f4ea;\n --aithe-warning-2: #f3e8cf;\n --aithe-warning-3: #e8d3a3;\n --aithe-warning-4: #dbbb79;\n --aithe-warning-5: #c7a05b;\n --aithe-warning-6: #ab8442;\n --aithe-warning-7: #8d6a33;\n --aithe-warning-8: #72532a;\n --aithe-warning-9: #5b4324;\n --aithe-warning-10: #49371f;\n --aithe-danger-1: #faf1f2;\n --aithe-danger-2: #f2dfe2;\n --aithe-danger-3: #e8c3c9;\n --aithe-danger-4: #dba0a9;\n --aithe-danger-5: #c97d88;\n --aithe-danger-6: #b0626d;\n --aithe-danger-7: #924f59;\n --aithe-danger-8: #764149;\n --aithe-danger-9: #60363d;\n --aithe-danger-10: #4d2c31;\n --aithe-neutral-1: #fafbfc;\n --aithe-neutral-2: #f0f2f5;\n --aithe-neutral-3: #dfe4ea;\n --aithe-neutral-4: #c8d0db;\n --aithe-neutral-5: #adb7c6;\n --aithe-neutral-6: #8f99aa;\n --aithe-neutral-7: #717b8d;\n --aithe-neutral-8: #566070;\n --aithe-neutral-9: #3d4654;\n --aithe-neutral-10: #252d36;\n --aithe-color-bg: #f1f3f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f6f8fa 0%, #edf0f4 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.84);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.96);\n --aithe-color-surface-muted: #e8ecf2;\n --aithe-color-border: rgba(76, 84, 98, 0.18);\n --aithe-color-border-strong: rgba(55, 62, 72, 0.28);\n --aithe-color-text: #1a202c;\n --aithe-color-text-muted: #4a5468;\n --aithe-color-text-subtle: #788298;\n --aithe-color-overlay: rgba(28, 31, 37, 0.48);\n --aithe-color-selection: rgba(116, 133, 164, 0.20);\n --aithe-color-focus-ring: rgba(116, 133, 164, 0.36);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #6b7280;\n --aithe-code-boolean: #78716c;\n --aithe-code-builtin: #64748b;\n --aithe-code-number: #78716c;\n --aithe-code-string: #4b5563;\n --aithe-code-function: #64748b;\n --aithe-code-type: #57534e;\n --aithe-code-preprocessor: #6b7280;\n --aithe-code-tag: #6b7280;\n --aithe-code-attr: #78716c;\n --aithe-code-key: #6b7280;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #78716c;\n --aithe-code-comment: #788298;\n --aithe-code-doctype: #788298;\n --aithe-code-placeholder: #788298;\n}\n";
|
|
8
|
+
export declare const grayThemeTokens = "\n.aithe-theme-gray,\n[data-aithe-theme='gray'] {\n color-scheme: light;\n --aithe-primary-1: #f4f6fb;\n --aithe-primary-2: #e8edf6;\n --aithe-primary-3: #d4dce9;\n --aithe-primary-4: #b8c3d8;\n --aithe-primary-5: #96a4c0;\n --aithe-primary-6: #7485a4;\n --aithe-primary-7: #5e708d;\n --aithe-primary-8: #4d5d76;\n --aithe-primary-9: #404d61;\n --aithe-primary-10: #313a48;\n --aithe-success-1: #eff7f3;\n --aithe-success-2: #dcefe4;\n --aithe-success-3: #badfc9;\n --aithe-success-4: #97cfac;\n --aithe-success-5: #73bd90;\n --aithe-success-6: #5aa277;\n --aithe-success-7: #4a8461;\n --aithe-success-8: #3d6950;\n --aithe-success-9: #335543;\n --aithe-success-10: #294437;\n --aithe-warning-1: #f9f4ea;\n --aithe-warning-2: #f3e8cf;\n --aithe-warning-3: #e8d3a3;\n --aithe-warning-4: #dbbb79;\n --aithe-warning-5: #c7a05b;\n --aithe-warning-6: #ab8442;\n --aithe-warning-7: #8d6a33;\n --aithe-warning-8: #72532a;\n --aithe-warning-9: #5b4324;\n --aithe-warning-10: #49371f;\n --aithe-danger-1: #faf1f2;\n --aithe-danger-2: #f2dfe2;\n --aithe-danger-3: #e8c3c9;\n --aithe-danger-4: #dba0a9;\n --aithe-danger-5: #c97d88;\n --aithe-danger-6: #b0626d;\n --aithe-danger-7: #924f59;\n --aithe-danger-8: #764149;\n --aithe-danger-9: #60363d;\n --aithe-danger-10: #4d2c31;\n --aithe-neutral-1: #fafbfc;\n --aithe-neutral-2: #f0f2f5;\n --aithe-neutral-3: #dfe4ea;\n --aithe-neutral-4: #c8d0db;\n --aithe-neutral-5: #adb7c6;\n --aithe-neutral-6: #8f99aa;\n --aithe-neutral-7: #717b8d;\n --aithe-neutral-8: #566070;\n --aithe-neutral-9: #3d4654;\n --aithe-neutral-10: #252d36;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #f1f3f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #f6f8fa 0%, #edf0f4 100%);\n --aithe-color-surface: rgba(255, 255, 255, 0.84);\n --aithe-color-surface-elevated: rgba(255, 255, 255, 0.96);\n --aithe-color-surface-muted: #e8ecf2;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(76, 84, 98, 0.18);\n --aithe-color-border-strong: rgba(55, 62, 72, 0.28);\n --aithe-color-text: #1a202c;\n --aithe-color-text-muted: #4a5468;\n --aithe-color-text-subtle: #788298;\n --aithe-color-overlay: rgba(28, 31, 37, 0.48);\n --aithe-color-selection: rgba(116, 133, 164, 0.20);\n --aithe-color-focus-ring: rgba(116, 133, 164, 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: #6b7280;\n --aithe-code-boolean: #78716c;\n --aithe-code-builtin: #64748b;\n --aithe-code-number: #78716c;\n --aithe-code-string: #4b5563;\n --aithe-code-function: #64748b;\n --aithe-code-type: #57534e;\n --aithe-code-preprocessor: #6b7280;\n --aithe-code-tag: #6b7280;\n --aithe-code-attr: #78716c;\n --aithe-code-key: #6b7280;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #78716c;\n --aithe-code-comment: #788298;\n --aithe-code-doctype: #788298;\n --aithe-code-placeholder: #788298;\n}\n";
|
|
9
9
|
//# sourceMappingURL=gray.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gray.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/gray.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"gray.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/gray.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,eAAe,gnGA6F3B,CAAC"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Gray theme tokens.
|
|
3
|
+
* 灰色主题令牌。
|
|
4
|
+
*
|
|
5
|
+
* Muted primary palette, semantic scales, and desaturated semantic color aliases.
|
|
6
|
+
* 柔和的 primary 调色板、语义色阶及低饱和度语义颜色别名。
|
|
7
|
+
*/
|
|
8
|
+
export const grayThemeTokens = `
|
|
9
|
+
.aithe-theme-gray,
|
|
10
|
+
[data-aithe-theme='gray'] {
|
|
11
|
+
color-scheme: light;
|
|
12
|
+
--aithe-primary-1: #f4f6fb;
|
|
13
|
+
--aithe-primary-2: #e8edf6;
|
|
14
|
+
--aithe-primary-3: #d4dce9;
|
|
15
|
+
--aithe-primary-4: #b8c3d8;
|
|
16
|
+
--aithe-primary-5: #96a4c0;
|
|
17
|
+
--aithe-primary-6: #7485a4;
|
|
18
|
+
--aithe-primary-7: #5e708d;
|
|
19
|
+
--aithe-primary-8: #4d5d76;
|
|
20
|
+
--aithe-primary-9: #404d61;
|
|
21
|
+
--aithe-primary-10: #313a48;
|
|
22
|
+
--aithe-success-1: #eff7f3;
|
|
23
|
+
--aithe-success-2: #dcefe4;
|
|
24
|
+
--aithe-success-3: #badfc9;
|
|
25
|
+
--aithe-success-4: #97cfac;
|
|
26
|
+
--aithe-success-5: #73bd90;
|
|
27
|
+
--aithe-success-6: #5aa277;
|
|
28
|
+
--aithe-success-7: #4a8461;
|
|
29
|
+
--aithe-success-8: #3d6950;
|
|
30
|
+
--aithe-success-9: #335543;
|
|
31
|
+
--aithe-success-10: #294437;
|
|
32
|
+
--aithe-warning-1: #f9f4ea;
|
|
33
|
+
--aithe-warning-2: #f3e8cf;
|
|
34
|
+
--aithe-warning-3: #e8d3a3;
|
|
35
|
+
--aithe-warning-4: #dbbb79;
|
|
36
|
+
--aithe-warning-5: #c7a05b;
|
|
37
|
+
--aithe-warning-6: #ab8442;
|
|
38
|
+
--aithe-warning-7: #8d6a33;
|
|
39
|
+
--aithe-warning-8: #72532a;
|
|
40
|
+
--aithe-warning-9: #5b4324;
|
|
41
|
+
--aithe-warning-10: #49371f;
|
|
42
|
+
--aithe-danger-1: #faf1f2;
|
|
43
|
+
--aithe-danger-2: #f2dfe2;
|
|
44
|
+
--aithe-danger-3: #e8c3c9;
|
|
45
|
+
--aithe-danger-4: #dba0a9;
|
|
46
|
+
--aithe-danger-5: #c97d88;
|
|
47
|
+
--aithe-danger-6: #b0626d;
|
|
48
|
+
--aithe-danger-7: #924f59;
|
|
49
|
+
--aithe-danger-8: #764149;
|
|
50
|
+
--aithe-danger-9: #60363d;
|
|
51
|
+
--aithe-danger-10: #4d2c31;
|
|
52
|
+
--aithe-neutral-1: #fafbfc;
|
|
53
|
+
--aithe-neutral-2: #f0f2f5;
|
|
54
|
+
--aithe-neutral-3: #dfe4ea;
|
|
55
|
+
--aithe-neutral-4: #c8d0db;
|
|
56
|
+
--aithe-neutral-5: #adb7c6;
|
|
57
|
+
--aithe-neutral-6: #8f99aa;
|
|
58
|
+
--aithe-neutral-7: #717b8d;
|
|
59
|
+
--aithe-neutral-8: #566070;
|
|
60
|
+
--aithe-neutral-9: #3d4654;
|
|
61
|
+
--aithe-neutral-10: #252d36;
|
|
62
|
+
--aithe-fill-1: #f7f8fa;
|
|
63
|
+
--aithe-fill-2: #f0f1f3;
|
|
64
|
+
--aithe-color-bg: #f1f3f6;
|
|
65
|
+
--aithe-color-bg-subtle: linear-gradient(180deg, #f6f8fa 0%, #edf0f4 100%);
|
|
66
|
+
--aithe-color-surface: rgba(255, 255, 255, 0.84);
|
|
67
|
+
--aithe-color-surface-elevated: rgba(255, 255, 255, 0.96);
|
|
68
|
+
--aithe-color-surface-muted: #e8ecf2;
|
|
69
|
+
--aithe-color-surface-hover: rgba(0, 0, 0, 0.04);
|
|
70
|
+
--aithe-color-border: rgba(76, 84, 98, 0.18);
|
|
71
|
+
--aithe-color-border-strong: rgba(55, 62, 72, 0.28);
|
|
72
|
+
--aithe-color-text: #1a202c;
|
|
73
|
+
--aithe-color-text-muted: #4a5468;
|
|
74
|
+
--aithe-color-text-subtle: #788298;
|
|
75
|
+
--aithe-color-overlay: rgba(28, 31, 37, 0.48);
|
|
76
|
+
--aithe-color-selection: rgba(116, 133, 164, 0.20);
|
|
77
|
+
--aithe-color-focus-ring: rgba(116, 133, 164, 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: #6b7280;
|
|
85
|
+
--aithe-code-boolean: #78716c;
|
|
86
|
+
--aithe-code-builtin: #64748b;
|
|
87
|
+
--aithe-code-number: #78716c;
|
|
88
|
+
--aithe-code-string: #4b5563;
|
|
89
|
+
--aithe-code-function: #64748b;
|
|
90
|
+
--aithe-code-type: #57534e;
|
|
91
|
+
--aithe-code-preprocessor: #6b7280;
|
|
92
|
+
--aithe-code-tag: #6b7280;
|
|
93
|
+
--aithe-code-attr: #78716c;
|
|
94
|
+
--aithe-code-key: #6b7280;
|
|
95
|
+
--aithe-code-punctuation: #5c6bc0;
|
|
96
|
+
--aithe-code-entity: #78716c;
|
|
97
|
+
--aithe-code-comment: #788298;
|
|
98
|
+
--aithe-code-doctype: #788298;
|
|
99
|
+
--aithe-code-placeholder: #788298;
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
@@ -6,5 +6,5 @@
|
|
|
6
6
|
* professional, trustworthy blue-tinted backgrounds.
|
|
7
7
|
* 灵感来自华为云品牌色:红色 primary (#CF102D),配专业可信的蓝色调背景。
|
|
8
8
|
*/
|
|
9
|
-
export declare const huaweiThemeTokens = "\n.aithe-theme-huawei,\n[data-aithe-theme='huawei'] {\n color-scheme: light;\n --aithe-primary-1: #fef2f3;\n --aithe-primary-2: #fde3e5;\n --aithe-primary-3: #fbc8cd;\n --aithe-primary-4: #f9a1a9;\n --aithe-primary-5: #f57582;\n --aithe-primary-6: #e8414f;\n --aithe-primary-7: #cf102d;\n --aithe-primary-8: #a80d24;\n --aithe-primary-9: #860e1f;\n --aithe-primary-10: #6b0e1b;\n --aithe-success-1: #effcf6;\n --aithe-success-2: #d9f5e6;\n --aithe-success-3: #b7ebcf;\n --aithe-success-4: #84d9ae;\n --aithe-success-5: #52c48a;\n --aithe-success-6: #2eae70;\n --aithe-success-7: #1f915d;\n --aithe-success-8: #1b754e;\n --aithe-success-9: #185e40;\n --aithe-success-10: #144b34;\n --aithe-warning-1: #fff8e8;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffe08c;\n --aithe-warning-4: #ffcc59;\n --aithe-warning-5: #f6b73a;\n --aithe-warning-6: #dd9621;\n --aithe-warning-7: #b97516;\n --aithe-warning-8: #955b14;\n --aithe-warning-9: #754712;\n --aithe-warning-10: #5c390f;\n --aithe-danger-1: #fff1f2;\n --aithe-danger-2: #ffe0e4;\n --aithe-danger-3: #ffc4cb;\n --aithe-danger-4: #ff9ca8;\n --aithe-danger-5: #ff7283;\n --aithe-danger-6: #f04f64;\n --aithe-danger-7: #cf3950;\n --aithe-danger-8: #ab3144;\n --aithe-danger-9: #882c3a;\n --aithe-danger-10: #6d2630;\n --aithe-neutral-1: #f5f7fa;\n --aithe-neutral-2: #e9ecf3;\n --aithe-neutral-3: #d5dae6;\n --aithe-neutral-4: #b8bfd0;\n --aithe-neutral-5: #98a0b5;\n --aithe-neutral-6: #78809a;\n --aithe-neutral-7: #59617c;\n --aithe-neutral-8: #3d4560;\n --aithe-neutral-9: #262d45;\n --aithe-neutral-10: #13182b;\n --aithe-color-bg: #faf5f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefafa 0%, #f5eef0 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: #f0e8ea;\n --aithe-color-border: rgba(207, 16, 45, 0.15);\n --aithe-color-border-strong: rgba(207, 16, 45, 0.25);\n --aithe-color-text: #0c1222;\n --aithe-color-text-muted: #3a4560;\n --aithe-color-text-subtle: #68748f;\n --aithe-color-overlay: rgba(8, 13, 26, 0.52);\n --aithe-color-selection: rgba(207, 16, 45, 0.14);\n --aithe-color-focus-ring: rgba(207, 16, 45, 0.34);\n --aithe-color-text-on-primary: #ffffff;\n --aithe-code-keyword: #a626a4;\n --aithe-code-boolean: #986801;\n --aithe-code-builtin: #4078f2;\n --aithe-code-number: #986801;\n --aithe-code-string: #50a14f;\n --aithe-code-function: #4078f2;\n --aithe-code-type: #c18401;\n --aithe-code-preprocessor: #a626a4;\n --aithe-code-tag: #e45649;\n --aithe-code-attr: #986801;\n --aithe-code-key: #e45649;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #986801;\n --aithe-code-comment: #a0a1a7;\n --aithe-code-doctype: #a0a1a7;\n --aithe-code-placeholder: #a0a1a7;\n}\n";
|
|
9
|
+
export declare const huaweiThemeTokens = "\n.aithe-theme-huawei,\n[data-aithe-theme='huawei'] {\n color-scheme: light;\n --aithe-primary-1: #fef2f3;\n --aithe-primary-2: #fde3e5;\n --aithe-primary-3: #fbc8cd;\n --aithe-primary-4: #f9a1a9;\n --aithe-primary-5: #f57582;\n --aithe-primary-6: #e8414f;\n --aithe-primary-7: #cf102d;\n --aithe-primary-8: #a80d24;\n --aithe-primary-9: #860e1f;\n --aithe-primary-10: #6b0e1b;\n --aithe-success-1: #effcf6;\n --aithe-success-2: #d9f5e6;\n --aithe-success-3: #b7ebcf;\n --aithe-success-4: #84d9ae;\n --aithe-success-5: #52c48a;\n --aithe-success-6: #2eae70;\n --aithe-success-7: #1f915d;\n --aithe-success-8: #1b754e;\n --aithe-success-9: #185e40;\n --aithe-success-10: #144b34;\n --aithe-warning-1: #fff8e8;\n --aithe-warning-2: #ffefc7;\n --aithe-warning-3: #ffe08c;\n --aithe-warning-4: #ffcc59;\n --aithe-warning-5: #f6b73a;\n --aithe-warning-6: #dd9621;\n --aithe-warning-7: #b97516;\n --aithe-warning-8: #955b14;\n --aithe-warning-9: #754712;\n --aithe-warning-10: #5c390f;\n --aithe-danger-1: #fff1f2;\n --aithe-danger-2: #ffe0e4;\n --aithe-danger-3: #ffc4cb;\n --aithe-danger-4: #ff9ca8;\n --aithe-danger-5: #ff7283;\n --aithe-danger-6: #f04f64;\n --aithe-danger-7: #cf3950;\n --aithe-danger-8: #ab3144;\n --aithe-danger-9: #882c3a;\n --aithe-danger-10: #6d2630;\n --aithe-neutral-1: #f5f7fa;\n --aithe-neutral-2: #e9ecf3;\n --aithe-neutral-3: #d5dae6;\n --aithe-neutral-4: #b8bfd0;\n --aithe-neutral-5: #98a0b5;\n --aithe-neutral-6: #78809a;\n --aithe-neutral-7: #59617c;\n --aithe-neutral-8: #3d4560;\n --aithe-neutral-9: #262d45;\n --aithe-neutral-10: #13182b;\n --aithe-fill-1: #f7f8fa;\n --aithe-fill-2: #f0f1f3;\n --aithe-color-bg: #faf5f6;\n --aithe-color-bg-subtle: linear-gradient(180deg, #fefafa 0%, #f5eef0 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: #f0e8ea;\n --aithe-color-surface-hover: rgba(0, 0, 0, 0.04);\n --aithe-color-border: rgba(207, 16, 45, 0.15);\n --aithe-color-border-strong: rgba(207, 16, 45, 0.25);\n --aithe-color-text: #0c1222;\n --aithe-color-text-muted: #3a4560;\n --aithe-color-text-subtle: #68748f;\n --aithe-color-overlay: rgba(8, 13, 26, 0.52);\n --aithe-color-selection: rgba(207, 16, 45, 0.14);\n --aithe-color-focus-ring: rgba(207, 16, 45, 0.34);\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: #a626a4;\n --aithe-code-boolean: #986801;\n --aithe-code-builtin: #4078f2;\n --aithe-code-number: #986801;\n --aithe-code-string: #50a14f;\n --aithe-code-function: #4078f2;\n --aithe-code-type: #c18401;\n --aithe-code-preprocessor: #a626a4;\n --aithe-code-tag: #e45649;\n --aithe-code-attr: #986801;\n --aithe-code-key: #e45649;\n --aithe-code-punctuation: #5c6bc0;\n --aithe-code-entity: #986801;\n --aithe-code-comment: #a0a1a7;\n --aithe-code-doctype: #a0a1a7;\n --aithe-code-placeholder: #a0a1a7;\n}\n";
|
|
10
10
|
//# sourceMappingURL=huawei.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"huawei.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/huawei.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"huawei.d.ts","sourceRoot":"","sources":["../../../src/styles/theme/huawei.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,eAAO,MAAM,iBAAiB,inGA6F7B,CAAC"}
|