@fibery/ui-kit 2.1.1 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/esfint.config.mjs +17 -0
- package/package.json +25 -18
- package/scripts/generate-icons.mjs +12 -9
- package/src/a11y-color.ts +3 -1
- package/src/action-badge.tsx +8 -5
- package/src/actions-menu/actions-menu-checkbox-item.tsx +5 -3
- package/src/actions-menu/actions-menu-confirmation.tsx +1 -0
- package/src/actions-menu/actions-menu-item.tsx +10 -8
- package/src/actions-menu/actions-menu-props.tsx +4 -3
- package/src/actions-menu/actions-menu-separator.tsx +1 -1
- package/src/actions-menu/actions-menu-sub-command-menu.tsx +5 -4
- package/src/actions-menu/actions-menu-sub-menu.tsx +5 -5
- package/src/actions-menu/actions-menu.tsx +16 -19
- package/src/actions-menu/async-actions-menu-item.tsx +3 -1
- package/src/actions-menu/context-actions-menu.tsx +9 -7
- package/src/actions-menu/contexts/actions-menu-context.tsx +2 -1
- package/src/actions-menu/contexts/actions-menu-dangerous-rows.tsx +2 -1
- package/src/actions-menu/index.tsx +1 -1
- package/src/actions-panel.tsx +3 -1
- package/src/ai/max-tokens.tsx +2 -1
- package/src/ai/model.tsx +4 -3
- package/src/ai/temperature.tsx +4 -3
- package/src/animated-height-container.tsx +5 -3
- package/src/animated-number.tsx +2 -1
- package/src/animations.tsx +2 -1
- package/src/antd/ant-modal.tsx +158 -8
- package/src/antd/ant-upload.tsx +285 -25
- package/src/antd/auto-complete.tsx +145 -0
- package/src/antd/auto-width-transparent-textarea.tsx +13 -5
- package/src/antd/global-overrides.ts +352 -0
- package/src/antd/index.tsx +4 -2
- package/src/antd/input-number.tsx +99 -12
- package/src/antd/input.tsx +130 -10
- package/src/antd/styles.ts +91 -32
- package/src/antd/tabs.tsx +174 -0
- package/src/antd/utils.tsx +2 -1
- package/src/apca.lc-low.test.ts +69 -0
- package/src/apca.test.ts +186 -0
- package/src/apca.ts +130 -0
- package/src/app-icon-with-fallback.tsx +9 -18
- package/src/app-icon-wrapper.tsx +4 -2
- package/src/app-icon.tsx +6 -20
- package/src/app-icons.json +13096 -0
- package/src/app-mode.tsx +1 -0
- package/src/avatar.tsx +15 -59
- package/src/axis-header.tsx +6 -4
- package/src/badge.tsx +5 -3
- package/src/banner/banner-action.tsx +3 -1
- package/src/banner/banner-context.tsx +2 -1
- package/src/banner/banner.tsx +23 -17
- package/src/beta-badge.tsx +4 -4
- package/src/board-table-loader.tsx +3 -2
- package/src/box.tsx +14 -7
- package/src/breadcrumb.tsx +5 -3
- package/src/breakpoints.tsx +2 -1
- package/src/button/actions-button-compact.tsx +5 -3
- package/src/button/actions-button.tsx +4 -2
- package/src/button/add-button.tsx +4 -2
- package/src/button/back-button.tsx +4 -2
- package/src/button/base-button.tsx +4 -2
- package/src/button/button-group.tsx +1 -0
- package/src/button/button.tsx +15 -13
- package/src/button/icon-button.tsx +5 -3
- package/src/button/make-button-colors.ts +10 -9
- package/src/button/select-button.tsx +4 -2
- package/src/canvas-colors.ts +15 -14
- package/src/card-container.tsx +3 -2
- package/src/card-hidden-link.tsx +1 -1
- package/src/checkbox-multi-select.tsx +6 -5
- package/src/checkbox.tsx +61 -17
- package/src/collapsible-section.tsx +6 -4
- package/src/color-adjuster.ts +128 -0
- package/src/color-filter.test.ts +2 -49
- package/src/color-filter.ts +42 -66
- package/src/color-inspect.ts +76 -0
- package/src/color-picker/color-picker-or-loader.tsx +24 -0
- package/src/color-picker/index.tsx +97 -17
- package/src/color-picker/slider-pointer.tsx +16 -0
- package/src/color-picker/swatch.tsx +8 -5
- package/src/color-utils.test.ts +6 -274
- package/src/color-utils.ts +17 -139
- package/src/command-menu/index.tsx +4 -2
- package/src/command-menu/nested-command-menu.tsx +9 -7
- package/src/comment.tsx +11 -3
- package/src/context-menu/index.tsx +1 -0
- package/src/count-badge.tsx +13 -3
- package/src/country-selector.tsx +2 -1
- package/src/date-picker/autocomplete.tsx +2 -1
- package/src/date-picker/contexts.ts +1 -1
- package/src/date-picker/date-range-input.tsx +8 -6
- package/src/date-picker/date-range-picker-popup-content.tsx +27 -23
- package/src/date-picker/date-range-picker.tsx +16 -15
- package/src/date-picker/day-with-start-end-buttons.tsx +5 -2
- package/src/date-picker/fake-date-input.tsx +4 -3
- package/src/date-picker/relative-date-picker.tsx +19 -15
- package/src/date-picker/single-date-input.tsx +7 -5
- package/src/date-picker/single-date-picker-popup-content.tsx +6 -5
- package/src/date-picker/single-date-picker.tsx +21 -19
- package/src/date-picker/styles.ts +1 -0
- package/src/date-picker/types.ts +6 -5
- package/src/date-picker/utils.ts +3 -2
- package/src/date-picker/with-popup-control.tsx +5 -10
- package/src/day-select/day-select.tsx +1 -0
- package/src/day-select/iso-week-day-select.tsx +3 -1
- package/src/day-select/mount-day-select.tsx +2 -1
- package/src/day-select/week-day-select.tsx +4 -2
- package/src/delayed.tsx +2 -1
- package/src/design-system/alpha.ts +7 -4
- package/src/design-system/animation.ts +13 -10
- package/src/design-system/colors-callout.neutral-dark.test.ts +78 -0
- package/src/design-system/colors-callout.neutral-light.test.ts +78 -0
- package/src/design-system/colors-callout.warm-dark.test.ts +78 -0
- package/src/design-system/colors-callout.warm-light.test.ts +78 -0
- package/src/design-system/colors-css.ts +6 -2
- package/src/design-system/colors-enum._.template +22 -0
- package/src/design-system/colors-enum.dark.neutral.test.ts +367 -0
- package/src/design-system/colors-enum.dark.warm.test.ts +367 -0
- package/src/design-system/colors-enum.light.neutral.test.ts +367 -0
- package/src/design-system/colors-enum.light.warm.test.ts +367 -0
- package/src/design-system/colors-highlight.neutral-dark.test.ts +78 -0
- package/src/design-system/colors-highlight.neutral-light.test.ts +78 -0
- package/src/design-system/colors-highlight.warm-dark.test.ts +78 -0
- package/src/design-system/colors-highlight.warm-light.test.ts +78 -0
- package/src/design-system/colors-js.test.ts +25 -169
- package/src/design-system/colors-js.ts +16 -24
- package/src/design-system/colors-swatches.ts +43 -0
- package/src/design-system/colors.test.ts +1 -22
- package/src/design-system/colors.ts +56 -134
- package/src/design-system/def.ts +21 -13
- package/src/design-system/fns.adaptive.test.ts +149 -0
- package/src/design-system/fns.badge.dark.neutral.test.ts +152 -0
- package/src/design-system/fns.badge.dark.warm.test.ts +152 -0
- package/src/design-system/fns.badge.light.neutral.test.ts +152 -0
- package/src/design-system/fns.badge.light.warm.test.ts +152 -0
- package/src/design-system/fns.deneutralize.test.ts +44 -0
- package/src/design-system/fns.enum.green-on-turquoise.test.ts +34 -0
- package/src/design-system/fns.enum.ts +79 -0
- package/src/design-system/fns.icon.dark.neutral.test.ts +124 -0
- package/src/design-system/fns.icon.dark.warm.test.ts +124 -0
- package/src/design-system/fns.icon.light.neutral.test.ts +124 -0
- package/src/design-system/fns.icon.light.warm.test.ts +124 -0
- package/src/design-system/fns.icon.ts +144 -0
- package/src/design-system/fns.ts +133 -0
- package/src/design-system/theme.test.ts +6 -5
- package/src/design-system/theme.ts +11 -13
- package/src/design-system/types.ts +20 -4
- package/src/design-system/typography.ts +196 -40
- package/src/design-system/vars.test.ts +10 -15
- package/src/design-system/vars.ts +42 -23
- package/src/design-system.ts +16 -3
- package/src/dnd.tsx +3 -2
- package/src/dot.tsx +4 -2
- package/src/double-apply.ts +19 -0
- package/src/dropdown-menu/index.tsx +1 -0
- package/src/emoji-picker/app-icon-picker.tsx +6 -4
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +6 -4
- package/src/emoji-picker/emoji-picker-preview-footer.tsx +5 -4
- package/src/emoji-picker/emoji-picker.tsx +3 -2
- package/src/emoji-picker/emoji.tsx +4 -2
- package/src/emoji-picker/icon-emoji-picker.tsx +8 -5
- package/src/emoji-picker/primitives/category-label.tsx +4 -5
- package/src/emoji-picker/primitives/content.tsx +4 -2
- package/src/emoji-picker/primitives/emoji.tsx +4 -3
- package/src/emoji-picker/primitives/footer.tsx +1 -0
- package/src/emoji-picker/primitives/grid-item.tsx +1 -0
- package/src/emoji-picker/primitives/grid.tsx +11 -8
- package/src/emoji-picker/primitives/header.tsx +1 -0
- package/src/emoji-picker/primitives/preview-provider.tsx +2 -2
- package/src/emoji-picker/primitives/root.tsx +6 -5
- package/src/emoji-picker/primitives/search-provider.tsx +1 -1
- package/src/emoji-picker/primitives/search.tsx +7 -7
- package/src/emoji-picker/primitives/skin-provider.tsx +3 -2
- package/src/emoji-picker/primitives/skin-tone.tsx +5 -5
- package/src/emoji-picker/stores/emoji-data-store.tsx +2 -1
- package/src/emoji-picker/stores/lazy-icon-data-store.tsx +5 -3
- package/src/emoji-picker/stores/static-emoji-data-store.tsx +3 -1
- package/src/emoji-picker/use-emoji-found.tsx +2 -1
- package/src/emoji-picker/use-responsive-emoji-size.ts +2 -1
- package/src/emoji-picker/utils/emoji-set.ts +2 -1
- package/src/emoji-picker/utils/emoji-support.ts +2 -2
- package/src/emoji.tsx +1 -0
- package/src/empty-state/empty-state-emoji.tsx +1 -0
- package/src/empty-state/empty-state.tsx +4 -5
- package/src/empty-value.tsx +2 -1
- package/src/errors.ts +1 -1
- package/src/favorites-icon.tsx +6 -5
- package/src/fibermoji-placeholder.tsx +57 -16
- package/src/field-container.tsx +9 -9
- package/src/field-icon.tsx +3 -2
- package/src/field-type-icon.tsx +31 -31
- package/src/file-item/file-icon.tsx +7 -7
- package/src/file-item/file-menu-items.tsx +9 -8
- package/src/file-item/file-preview-actions.tsx +4 -4
- package/src/file-item/file-title.tsx +2 -1
- package/src/file-item.tsx +9 -7
- package/src/flags.ts +4 -2
- package/src/form-field-loader.tsx +3 -1
- package/src/form-utils.ts +1 -1
- package/src/guide-link.tsx +2 -2
- package/src/header-layout.tsx +15 -13
- package/src/highlight-colors.test.ts +69 -37
- package/src/highlight-colors.ts +20 -47
- package/src/hint.tsx +6 -4
- package/src/hotkey-scope.test.ts +120 -0
- package/src/hotkey-scope.tsx +42 -0
- package/src/hoverable-via-display.tsx +2 -2
- package/src/hoverable.tsx +1 -1
- package/src/html-styles.ts +15 -16
- package/src/hue-shift.test.ts +1 -1
- package/src/icons/ast/error-circle-filled.ts +12 -0
- package/src/icons/ast/index.tsx +448 -447
- package/src/icons/generate-icon-from-ast.ts +1 -0
- package/src/icons/get-paths.ts +1 -1
- package/src/icons/get-shift-style.ts +1 -1
- package/src/icons/icon.tsx +86 -0
- package/src/icons/react/abort.tsx +18 -0
- package/src/icons/react/access-template.tsx +18 -0
- package/src/icons/react/activity-filled.tsx +18 -0
- package/src/icons/react/activity-log.tsx +18 -0
- package/src/icons/react/activity.tsx +18 -0
- package/src/icons/react/add-after.tsx +18 -0
- package/src/icons/react/add-before.tsx +18 -0
- package/src/icons/react/add-compact.tsx +18 -0
- package/src/icons/react/add-database.tsx +18 -0
- package/src/icons/react/add-group.tsx +18 -0
- package/src/icons/react/add-integration.tsx +18 -0
- package/src/icons/react/add-reactions.tsx +18 -0
- package/src/icons/react/add.tsx +18 -0
- package/src/icons/react/ai-assistant-filled.tsx +18 -0
- package/src/icons/react/ai-assistant.tsx +18 -0
- package/src/icons/react/ai-avatar.tsx +18 -0
- package/src/icons/react/ai-fibery-build.tsx +18 -0
- package/src/icons/react/ai-search.tsx +18 -0
- package/src/icons/react/alert-triangle.tsx +18 -0
- package/src/icons/react/anthropic.tsx +18 -0
- package/src/icons/react/app-details.tsx +18 -0
- package/src/icons/react/app-store-one-color.tsx +18 -0
- package/src/icons/react/app-store.tsx +18 -0
- package/src/icons/react/app-templates.tsx +18 -0
- package/src/icons/react/app-webhooks.tsx +18 -0
- package/src/icons/react/app-wiki.tsx +18 -0
- package/src/icons/react/app.tsx +18 -0
- package/src/icons/react/appearance-auto.tsx +18 -0
- package/src/icons/react/appearance-dark.tsx +18 -0
- package/src/icons/react/appearance-light.tsx +18 -0
- package/src/icons/react/apple.tsx +18 -0
- package/src/icons/react/arrow-bar-down.tsx +18 -0
- package/src/icons/react/arrow-bar-left.tsx +18 -0
- package/src/icons/react/arrow-bar-right.tsx +18 -0
- package/src/icons/react/arrow-bar-up.tsx +18 -0
- package/src/icons/react/arrow-bottom.tsx +18 -0
- package/src/icons/react/arrow-collapse-vertical.tsx +18 -0
- package/src/icons/react/arrow-collapse.tsx +18 -0
- package/src/icons/react/arrow-forward.tsx +18 -0
- package/src/icons/react/arrow-left.tsx +18 -0
- package/src/icons/react/arrow-right.tsx +18 -0
- package/src/icons/react/arrow-top.tsx +18 -0
- package/src/icons/react/arrow-up-circle.tsx +18 -0
- package/src/icons/react/arrows-right-left.tsx +18 -0
- package/src/icons/react/ask-for-input.tsx +18 -0
- package/src/icons/react/asterisk.tsx +18 -0
- package/src/icons/react/atom.tsx +18 -0
- package/src/icons/react/automations-cancelled.tsx +18 -0
- package/src/icons/react/automations-disabled.tsx +18 -0
- package/src/icons/react/automations-error.tsx +18 -0
- package/src/icons/react/automations-in-progress.tsx +18 -0
- package/src/icons/react/automations-not-started.tsx +18 -0
- package/src/icons/react/automations-success.tsx +18 -0
- package/src/icons/react/back.tsx +18 -0
- package/src/icons/react/backlog-icon.tsx +18 -0
- package/src/icons/react/batch-actions-icon.tsx +18 -0
- package/src/icons/react/bell-circle.tsx +18 -0
- package/src/icons/react/bell-filled.tsx +18 -0
- package/src/icons/react/bell-off.tsx +18 -0
- package/src/icons/react/bell-ringing.tsx +18 -0
- package/src/icons/react/bell-x.tsx +18 -0
- package/src/icons/react/bolt.tsx +18 -0
- package/src/icons/react/bring-forward.tsx +18 -0
- package/src/icons/react/bring-to-front.tsx +18 -0
- package/src/icons/react/cards.tsx +18 -0
- package/src/icons/react/chat-ai.tsx +18 -0
- package/src/icons/react/chat-bubble.tsx +18 -0
- package/src/icons/react/chat-float.tsx +18 -0
- package/src/icons/react/chat-sidebar.tsx +18 -0
- package/src/icons/react/chat.tsx +18 -0
- package/src/icons/react/check-circle-filled.tsx +18 -0
- package/src/icons/react/check-circle.tsx +18 -0
- package/src/icons/react/checked.tsx +18 -0
- package/src/icons/react/clean.tsx +18 -0
- package/src/icons/react/clear-input-filled.tsx +18 -0
- package/src/icons/react/clear-value.tsx +18 -0
- package/src/icons/react/clear.tsx +18 -0
- package/src/icons/react/clock-alarm.tsx +18 -0
- package/src/icons/react/clock-forward.tsx +18 -0
- package/src/icons/react/clock.tsx +18 -0
- package/src/icons/react/close.tsx +18 -0
- package/src/icons/react/collapse-all-horizontal.tsx +18 -0
- package/src/icons/react/collapse-all.tsx +18 -0
- package/src/icons/react/color-coding-filled.tsx +18 -0
- package/src/icons/react/color-coding.tsx +18 -0
- package/src/icons/react/columns-2.tsx +18 -0
- package/src/icons/react/columns-4.tsx +18 -0
- package/src/icons/react/columns.tsx +18 -0
- package/src/icons/react/comment-bubble.tsx +18 -0
- package/src/icons/react/copy.tsx +18 -0
- package/src/icons/react/create.tsx +18 -0
- package/src/icons/react/credits-filled.tsx +18 -0
- package/src/icons/react/cross-circle.tsx +18 -0
- package/src/icons/react/crosshair.tsx +18 -0
- package/src/icons/react/csv.tsx +18 -0
- package/src/icons/react/database-off.tsx +18 -0
- package/src/icons/react/database-stroke.tsx +18 -0
- package/src/icons/react/database.tsx +18 -0
- package/src/icons/react/date-range.tsx +18 -0
- package/src/icons/react/delete.tsx +18 -0
- package/src/icons/react/demo.tsx +18 -0
- package/src/icons/react/dependency.tsx +18 -0
- package/src/icons/react/dividers.tsx +18 -0
- package/src/icons/react/document.tsx +18 -0
- package/src/icons/react/double-arrow-left.tsx +18 -0
- package/src/icons/react/double-arrow-right.tsx +18 -0
- package/src/icons/react/double-line.tsx +18 -0
- package/src/icons/react/drag-block-handle-single.tsx +18 -0
- package/src/icons/react/drag-block-handle.tsx +18 -0
- package/src/icons/react/drag-handle.tsx +18 -0
- package/src/icons/react/duplicate.tsx +18 -0
- package/src/icons/react/dynamic-filter-value.tsx +18 -0
- package/src/icons/react/edit-value.tsx +18 -0
- package/src/icons/react/email.tsx +18 -0
- package/src/icons/react/emoji-delete.tsx +18 -0
- package/src/icons/react/entity-create-filled.tsx +18 -0
- package/src/icons/react/entity-create.tsx +18 -0
- package/src/icons/react/entity-merge.tsx +18 -0
- package/src/icons/react/equation.tsx +18 -0
- package/src/icons/react/error-circle-filled.tsx +18 -0
- package/src/icons/react/expand-all-horizontal.tsx +18 -0
- package/src/icons/react/expand-all.tsx +18 -0
- package/src/icons/react/export.tsx +18 -0
- package/src/icons/react/extension-assignments.tsx +18 -0
- package/src/icons/react/extension-avatar.tsx +18 -0
- package/src/icons/react/extension-comments.tsx +18 -0
- package/src/icons/react/extension-files.tsx +18 -0
- package/src/icons/react/extension-references.tsx +18 -0
- package/src/icons/react/extension-workflow.tsx +18 -0
- package/src/icons/react/eye.tsx +18 -0
- package/src/icons/react/favorites-checked.tsx +18 -0
- package/src/icons/react/favorites-off.tsx +18 -0
- package/src/icons/react/favorites.tsx +18 -0
- package/src/icons/react/fibery-desktop-app.tsx +18 -0
- package/src/icons/react/fibery-mono.tsx +18 -0
- package/src/icons/react/field-unit.tsx +18 -0
- package/src/icons/react/fields.tsx +18 -0
- package/src/icons/react/figma.tsx +18 -0
- package/src/icons/react/file-archive.tsx +18 -0
- package/src/icons/react/file-broken.tsx +18 -0
- package/src/icons/react/file-counter.tsx +18 -0
- package/src/icons/react/file-document.tsx +18 -0
- package/src/icons/react/file-download.tsx +18 -0
- package/src/icons/react/file-image.tsx +18 -0
- package/src/icons/react/file-multiple.tsx +18 -0
- package/src/icons/react/file-other.tsx +18 -0
- package/src/icons/react/file-presentation.tsx +18 -0
- package/src/icons/react/file-table.tsx +18 -0
- package/src/icons/react/file-upload.tsx +18 -0
- package/src/icons/react/file-video.tsx +18 -0
- package/src/icons/react/filter.tsx +18 -0
- package/src/icons/react/fit-to-screen.tsx +18 -0
- package/src/icons/react/focus-mode-off.tsx +18 -0
- package/src/icons/react/focus-mode.tsx +18 -0
- package/src/icons/react/folder-favorite.tsx +18 -0
- package/src/icons/react/folder.tsx +18 -0
- package/src/icons/react/form-with-cover.tsx +18 -0
- package/src/icons/react/form-without-cover.tsx +18 -0
- package/src/icons/react/fullscreen-mode-off-icon.tsx +18 -0
- package/src/icons/react/fullscreen-mode-on-icon.tsx +18 -0
- package/src/icons/react/fullscreen-mode-on.tsx +18 -0
- package/src/icons/react/gift.tsx +18 -0
- package/src/icons/react/github.tsx +18 -0
- package/src/icons/react/gitlab.tsx +18 -0
- package/src/icons/react/globe-simple.tsx +18 -0
- package/src/icons/react/globe-unpublish.tsx +18 -0
- package/src/icons/react/globe.tsx +18 -0
- package/src/icons/react/go-to.tsx +18 -0
- package/src/icons/react/google-drive.tsx +18 -0
- package/src/icons/react/google-map.tsx +18 -0
- package/src/icons/react/graduation-cap-filled.tsx +18 -0
- package/src/icons/react/headphones-ai.tsx +18 -0
- package/src/icons/react/headphones.tsx +18 -0
- package/src/icons/react/hide.tsx +18 -0
- package/src/icons/react/highlights.tsx +18 -0
- package/src/icons/react/hint.tsx +18 -0
- package/src/icons/react/home-filled.tsx +18 -0
- package/src/icons/react/home.tsx +18 -0
- package/src/icons/react/image-xmark.tsx +18 -0
- package/src/icons/react/import-filled.tsx +18 -0
- package/src/icons/react/import.tsx +18 -0
- package/src/icons/react/index.tsx +448 -447
- package/src/icons/react/info-circle-filled.tsx +18 -0
- package/src/icons/react/info-circle.tsx +18 -0
- package/src/icons/react/integration.tsx +18 -0
- package/src/icons/react/integrations-filled.tsx +18 -0
- package/src/icons/react/integrations-integration-discourse-color.tsx +18 -0
- package/src/icons/react/integrations-integration-intercom-color.tsx +18 -0
- package/src/icons/react/integrations-integration-slack-color.tsx +18 -0
- package/src/icons/react/integrations-integration-zendesk-color.tsx +18 -0
- package/src/icons/react/intercom.tsx +18 -0
- package/src/icons/react/invite-people.tsx +18 -0
- package/src/icons/react/items-timeline.tsx +18 -0
- package/src/icons/react/items.tsx +18 -0
- package/src/icons/react/jira.tsx +18 -0
- package/src/icons/react/key.tsx +18 -0
- package/src/icons/react/keyboard-hide-down.tsx +18 -0
- package/src/icons/react/lab.tsx +18 -0
- package/src/icons/react/layout-double.tsx +18 -0
- package/src/icons/react/layout-multiple.tsx +18 -0
- package/src/icons/react/layout-single.tsx +18 -0
- package/src/icons/react/left-panel.tsx +18 -0
- package/src/icons/react/level-plus.tsx +18 -0
- package/src/icons/react/levels.tsx +18 -0
- package/src/icons/react/line-divider.tsx +18 -0
- package/src/icons/react/line-jump.tsx +18 -0
- package/src/icons/react/link.tsx +18 -0
- package/src/icons/react/location-edit.tsx +18 -0
- package/src/icons/react/lock-outline.tsx +18 -0
- package/src/icons/react/lock.tsx +18 -0
- package/src/icons/react/logout.tsx +18 -0
- package/src/icons/react/loom.tsx +18 -0
- package/src/icons/react/loupe-zoom-in.tsx +18 -0
- package/src/icons/react/loupe-zoom-out.tsx +18 -0
- package/src/icons/react/loupe-zoom.tsx +18 -0
- package/src/icons/react/many-people.tsx +18 -0
- package/src/icons/react/map-mode.tsx +18 -0
- package/src/icons/react/markdown.tsx +18 -0
- package/src/icons/react/menu-collapser.tsx +18 -0
- package/src/icons/react/mermaid.tsx +18 -0
- package/src/icons/react/message-plus-square.tsx +18 -0
- package/src/icons/react/message-plus.tsx +18 -0
- package/src/icons/react/milestones.tsx +18 -0
- package/src/icons/react/minus.tsx +18 -0
- package/src/icons/react/miro.tsx +18 -0
- package/src/icons/react/mirror-off.tsx +18 -0
- package/src/icons/react/mirror-on.tsx +18 -0
- package/src/icons/react/mixpanel.tsx +18 -0
- package/src/icons/react/monitor.tsx +18 -0
- package/src/icons/react/more-compact.tsx +18 -0
- package/src/icons/react/more.tsx +18 -0
- package/src/icons/react/move-bottom.tsx +18 -0
- package/src/icons/react/move-left.tsx +18 -0
- package/src/icons/react/move-right.tsx +18 -0
- package/src/icons/react/move-space.tsx +18 -0
- package/src/icons/react/move-top.tsx +18 -0
- package/src/icons/react/network-add.tsx +18 -0
- package/src/icons/react/network.tsx +18 -0
- package/src/icons/react/no-border.tsx +18 -0
- package/src/icons/react/no-fill.tsx +18 -0
- package/src/icons/react/notifications.tsx +18 -0
- package/src/icons/react/obj-child.tsx +18 -0
- package/src/icons/react/obj-m2m.tsx +18 -0
- package/src/icons/react/obj-o2o.tsx +18 -0
- package/src/icons/react/obj-parent.tsx +18 -0
- package/src/icons/react/obj-self.tsx +18 -0
- package/src/icons/react/on-schedule.tsx +18 -0
- package/src/icons/react/open-ai.tsx +18 -0
- package/src/icons/react/open-as-page.tsx +18 -0
- package/src/icons/react/page-regular-mode.tsx +18 -0
- package/src/icons/react/page-wide-mode.tsx +18 -0
- package/src/icons/react/panel-add.tsx +18 -0
- package/src/icons/react/pencil.tsx +18 -0
- package/src/icons/react/people-check.tsx +18 -0
- package/src/icons/react/people.tsx +18 -0
- package/src/icons/react/photo.tsx +18 -0
- package/src/icons/react/pin-filled.tsx +18 -0
- package/src/icons/react/pin.tsx +18 -0
- package/src/icons/react/popup.tsx +18 -0
- package/src/icons/react/posts.tsx +18 -0
- package/src/icons/react/present-play.tsx +18 -0
- package/src/icons/react/present-stop.tsx +18 -0
- package/src/icons/react/print.tsx +18 -0
- package/src/icons/react/private-items.tsx +18 -0
- package/src/icons/react/question.tsx +18 -0
- package/src/icons/react/quick-filter-personal.tsx +18 -0
- package/src/icons/react/quick-filter.tsx +18 -0
- package/src/icons/react/read-only.tsx +18 -0
- package/src/icons/react/refresh.tsx +18 -0
- package/src/icons/react/remove-people.tsx +18 -0
- package/src/icons/react/remove.tsx +18 -0
- package/src/icons/react/reply.tsx +18 -0
- package/src/icons/react/reset-password.tsx +18 -0
- package/src/icons/react/restore.tsx +18 -0
- package/src/icons/react/richeditor-actions-more.tsx +18 -0
- package/src/icons/react/richeditor-block-callout.tsx +18 -0
- package/src/icons/react/richeditor-block-code.tsx +18 -0
- package/src/icons/react/richeditor-block-embed.tsx +18 -0
- package/src/icons/react/richeditor-block-entity.tsx +18 -0
- package/src/icons/react/richeditor-block-file.tsx +18 -0
- package/src/icons/react/richeditor-block-h1.tsx +18 -0
- package/src/icons/react/richeditor-block-h2.tsx +18 -0
- package/src/icons/react/richeditor-block-h3.tsx +18 -0
- package/src/icons/react/richeditor-block-h4.tsx +18 -0
- package/src/icons/react/richeditor-block-mention.tsx +18 -0
- package/src/icons/react/richeditor-block-paragraph.tsx +18 -0
- package/src/icons/react/richeditor-block-quote.tsx +18 -0
- package/src/icons/react/richeditor-checklist-create.tsx +18 -0
- package/src/icons/react/richeditor-comment-create.tsx +18 -0
- package/src/icons/react/richeditor-entity-link-create.tsx +18 -0
- package/src/icons/react/richeditor-history-redo.tsx +18 -0
- package/src/icons/react/richeditor-history-undo.tsx +18 -0
- package/src/icons/react/richeditor-image-align-center.tsx +18 -0
- package/src/icons/react/richeditor-image-align-left.tsx +18 -0
- package/src/icons/react/richeditor-image-align-right.tsx +18 -0
- package/src/icons/react/richeditor-image-upload.tsx +18 -0
- package/src/icons/react/richeditor-image-wrap-center.tsx +18 -0
- package/src/icons/react/richeditor-image-wrap-left.tsx +18 -0
- package/src/icons/react/richeditor-image-wrap-right.tsx +18 -0
- package/src/icons/react/richeditor-image-zoom.tsx +18 -0
- package/src/icons/react/richeditor-link-create.tsx +18 -0
- package/src/icons/react/richeditor-linkedhighlight-create.tsx +18 -0
- package/src/icons/react/richeditor-list-bullet.tsx +18 -0
- package/src/icons/react/richeditor-list-indent.tsx +18 -0
- package/src/icons/react/richeditor-list-ordered.tsx +18 -0
- package/src/icons/react/richeditor-list-unindent.tsx +18 -0
- package/src/icons/react/richeditor-mark-code.tsx +18 -0
- package/src/icons/react/richeditor-mark-em.tsx +18 -0
- package/src/icons/react/richeditor-mark-highlight.tsx +18 -0
- package/src/icons/react/richeditor-mark-strike.tsx +18 -0
- package/src/icons/react/richeditor-mark-strong.tsx +18 -0
- package/src/icons/react/richeditor-mark-text-background-color.tsx +18 -0
- package/src/icons/react/richeditor-mark-underline.tsx +18 -0
- package/src/icons/react/richeditor-open-link.tsx +18 -0
- package/src/icons/react/richeditor-table-create.tsx +18 -0
- package/src/icons/react/richeditor-unlink.tsx +18 -0
- package/src/icons/react/richeditor-video-upload.tsx +18 -0
- package/src/icons/react/right-panel.tsx +18 -0
- package/src/icons/react/rows.tsx +18 -0
- package/src/icons/react/rule-scheduled.tsx +18 -0
- package/src/icons/react/search-add.tsx +18 -0
- package/src/icons/react/search-filled.tsx +18 -0
- package/src/icons/react/search-remove.tsx +18 -0
- package/src/icons/react/search.tsx +18 -0
- package/src/icons/react/self-reference-off.tsx +18 -0
- package/src/icons/react/self-reference-on.tsx +18 -0
- package/src/icons/react/send-arrow.tsx +18 -0
- package/src/icons/react/send-backward.tsx +18 -0
- package/src/icons/react/send-to-back.tsx +18 -0
- package/src/icons/react/settings-filled.tsx +18 -0
- package/src/icons/react/settings-off.tsx +18 -0
- package/src/icons/react/settings.tsx +18 -0
- package/src/icons/react/share.tsx +18 -0
- package/src/icons/react/shared.tsx +18 -0
- package/src/icons/react/shield-keyhole.tsx +18 -0
- package/src/icons/react/show-author.tsx +18 -0
- package/src/icons/react/sidebar-fields-opened.tsx +18 -0
- package/src/icons/react/sidebar-fields.tsx +18 -0
- package/src/icons/react/sidebar.tsx +18 -0
- package/src/icons/react/simple-compass.tsx +18 -0
- package/src/icons/react/slack-icon.tsx +18 -0
- package/src/icons/react/slack.tsx +18 -0
- package/src/icons/react/slide-menu-close.tsx +18 -0
- package/src/icons/react/slide-menu-filled.tsx +18 -0
- package/src/icons/react/slide-menu-open.tsx +18 -0
- package/src/icons/react/slide-menu.tsx +18 -0
- package/src/icons/react/smart-folder.tsx +18 -0
- package/src/icons/react/sort-on-bottom.tsx +18 -0
- package/src/icons/react/sort-on-top.tsx +18 -0
- package/src/icons/react/sort.tsx +18 -0
- package/src/icons/react/space-app.tsx +18 -0
- package/src/icons/react/space-generate.tsx +18 -0
- package/src/icons/react/space-list.tsx +18 -0
- package/src/icons/react/space-scratch.tsx +18 -0
- package/src/icons/react/space-template.tsx +18 -0
- package/src/icons/react/spinner.tsx +18 -0
- package/src/icons/react/success.tsx +18 -0
- package/src/icons/react/suggest-integration.tsx +18 -0
- package/src/icons/react/switch-to-mention.tsx +18 -0
- package/src/icons/react/switch-to-text.tsx +18 -0
- package/src/icons/react/switch-to-widget.tsx +18 -0
- package/src/icons/react/table-layout.tsx +18 -0
- package/src/icons/react/template.tsx +18 -0
- package/src/icons/react/templates-filled.tsx +18 -0
- package/src/icons/react/templates.tsx +18 -0
- package/src/icons/react/terminal.tsx +18 -0
- package/src/icons/react/text-no-wrap.tsx +18 -0
- package/src/icons/react/text-tool-align-bottom.tsx +18 -0
- package/src/icons/react/text-tool-align-middle.tsx +18 -0
- package/src/icons/react/text-tool-align-top.tsx +18 -0
- package/src/icons/react/text-wrap.tsx +18 -0
- package/src/icons/react/thumbs-down.tsx +18 -0
- package/src/icons/react/thumbs-up.tsx +18 -0
- package/src/icons/react/toc.tsx +18 -0
- package/src/icons/react/twitter.tsx +18 -0
- package/src/icons/react/type-boolean.tsx +18 -0
- package/src/icons/react/type-button.tsx +18 -0
- package/src/icons/react/type-checkbox.tsx +18 -0
- package/src/icons/react/type-date.tsx +18 -0
- package/src/icons/react/type-email.tsx +18 -0
- package/src/icons/react/type-emoji.tsx +18 -0
- package/src/icons/react/type-formula.tsx +18 -0
- package/src/icons/react/type-function.tsx +18 -0
- package/src/icons/react/type-id.tsx +18 -0
- package/src/icons/react/type-location.tsx +18 -0
- package/src/icons/react/type-lookup.tsx +18 -0
- package/src/icons/react/type-money.tsx +18 -0
- package/src/icons/react/type-multi-select.tsx +18 -0
- package/src/icons/react/type-number.tsx +18 -0
- package/src/icons/react/type-percent.tsx +18 -0
- package/src/icons/react/type-phone.tsx +18 -0
- package/src/icons/react/type-relation.tsx +18 -0
- package/src/icons/react/type-rich-text.tsx +18 -0
- package/src/icons/react/type-rule.tsx +18 -0
- package/src/icons/react/type-single-select.tsx +18 -0
- package/src/icons/react/type-text.tsx +18 -0
- package/src/icons/react/type-url.tsx +18 -0
- package/src/icons/react/units-avatar.tsx +18 -0
- package/src/icons/react/units-collection.tsx +18 -0
- package/src/icons/react/units-counter.tsx +18 -0
- package/src/icons/react/units-date.tsx +18 -0
- package/src/icons/react/units-db-badge-abbr.tsx +18 -0
- package/src/icons/react/units-db-badge-full.tsx +18 -0
- package/src/icons/react/units-db-icon.tsx +18 -0
- package/src/icons/react/units-field-icon-button.tsx +18 -0
- package/src/icons/react/units-field.tsx +18 -0
- package/src/icons/react/units-input.tsx +18 -0
- package/src/icons/react/units-progress-bar.tsx +18 -0
- package/src/icons/react/units-rich-text.tsx +18 -0
- package/src/icons/react/units-snippet.tsx +18 -0
- package/src/icons/react/unlink.tsx +18 -0
- package/src/icons/react/unlock-filled.tsx +18 -0
- package/src/icons/react/unlock-outline.tsx +18 -0
- package/src/icons/react/upgrade.tsx +18 -0
- package/src/icons/react/usb-flash-drive.tsx +18 -0
- package/src/icons/react/user-check.tsx +18 -0
- package/src/icons/react/user-group-remove.tsx +18 -0
- package/src/icons/react/user-group.tsx +18 -0
- package/src/icons/react/user-role.tsx +18 -0
- package/src/icons/react/user-x.tsx +18 -0
- package/src/icons/react/value-edit.tsx +18 -0
- package/src/icons/react/view-ai.tsx +18 -0
- package/src/icons/react/view-board.tsx +18 -0
- package/src/icons/react/view-calendar.tsx +18 -0
- package/src/icons/react/view-canvas.tsx +18 -0
- package/src/icons/react/view-chart.tsx +18 -0
- package/src/icons/react/view-dashboard.tsx +18 -0
- package/src/icons/react/view-details.tsx +18 -0
- package/src/icons/react/view-document.tsx +18 -0
- package/src/icons/react/view-embed.tsx +18 -0
- package/src/icons/react/view-feed.tsx +18 -0
- package/src/icons/react/view-form.tsx +18 -0
- package/src/icons/react/view-gallery.tsx +18 -0
- package/src/icons/react/view-gantt.tsx +18 -0
- package/src/icons/react/view-list.tsx +18 -0
- package/src/icons/react/view-map.tsx +18 -0
- package/src/icons/react/view-page.tsx +18 -0
- package/src/icons/react/view-table.tsx +18 -0
- package/src/icons/react/view-timeline.tsx +18 -0
- package/src/icons/react/views.tsx +18 -0
- package/src/icons/react/warning-triangle-filled.tsx +18 -0
- package/src/icons/react/warning-triangle.tsx +18 -0
- package/src/icons/react/warning.tsx +18 -0
- package/src/icons/react/webhooks.tsx +18 -0
- package/src/icons/react/windows.tsx +18 -0
- package/src/icons/react/workspace-map.tsx +18 -0
- package/src/icons/react/youtube.tsx +18 -0
- package/src/icons/react/zoom-in.tsx +18 -0
- package/src/icons/react/zoom-out.tsx +18 -0
- package/src/icons/svg/error-circle-filled.svg +3 -0
- package/src/icons/types.ts +2 -2
- package/src/images-gallery/images-gallery-fall-through-provider.tsx +4 -2
- package/src/images-gallery/images-gallery.tsx +12 -10
- package/src/images-gallery/slide-buttons.tsx +17 -16
- package/src/images-gallery/zoom.tsx +2 -1
- package/src/integration-compact-info-button.tsx +7 -7
- package/src/is-in-popup.ts +1 -1
- package/src/item.tsx +3 -1
- package/src/kbd.tsx +20 -19
- package/src/layout-styles.ts +15 -10
- package/src/layout.tsx +2 -1
- package/src/link-input/components/ant-text-area-with-custom-read-state.tsx +77 -0
- package/src/link-input/index.tsx +3 -4
- package/src/lists/actions-menu-row-surface.tsx +7 -6
- package/src/lists/list-row-surface.tsx +7 -5
- package/src/loaders.tsx +7 -5
- package/src/loading-sausage.tsx +4 -2
- package/src/logo.tsx +2 -1
- package/src/media-query-utils.ts +4 -13
- package/src/memoize.test.ts +56 -0
- package/src/memoize.ts +8 -0
- package/src/menu-item-actions.tsx +2 -1
- package/src/mobile-keyboard-aware-popup.tsx +5 -3
- package/src/modal-menu/modal-menu-checkbox-item.tsx +4 -3
- package/src/modal-menu/modal-menu-content.tsx +5 -4
- package/src/modal-menu/modal-menu-group.tsx +1 -1
- package/src/modal-menu/modal-menu-item.tsx +4 -3
- package/src/modal-menu/modal-menu-label.tsx +14 -11
- package/src/modal-menu/modal-menu-root.tsx +5 -2
- package/src/modal-menu/modal-menu-separator.tsx +1 -0
- package/src/modal-menu/modal-menu-trigger.tsx +3 -1
- package/src/modal-menu/modal-submenu-content.tsx +3 -2
- package/src/modal-menu/modal-submenu-trigger.tsx +5 -4
- package/src/modal-menu/modal-submenu.tsx +3 -1
- package/src/new-badge.tsx +6 -4
- package/src/new-card-placeholder.tsx +6 -3
- package/src/notification-dot.tsx +2 -1
- package/src/number-input/edit-unit-styles.ts +1 -0
- package/src/number-input/number-input-inline-with-autosize.tsx +7 -6
- package/src/number-input/number-input-inline.tsx +9 -7
- package/src/number-input/number-input.test.tsx +4 -3
- package/src/number-input/number-input.tsx +3 -2
- package/src/number-input/stack.tsx +1 -1
- package/src/number-input/step-button.tsx +3 -2
- package/src/number-input/styles.ts +1 -0
- package/src/number-input/text-area-auto-sized.tsx +4 -3
- package/src/number-input/text-input-auto-sized.tsx +4 -3
- package/src/number-input/utils.ts +1 -1
- package/src/online-users.tsx +18 -5
- package/src/open-popover-tracker.tsx +2 -1
- package/src/palette-generator.test.ts +25 -30
- package/src/palette-generator.ts +27 -18
- package/src/palettes/common.ts +19 -0
- package/src/palettes/diff-colors.test.ts +416 -0
- package/src/palettes/diff-colors.ts +179 -51
- package/src/palettes/inspect.canvas-colors.test.ts +116 -116
- package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +1154 -1154
- package/src/palettes/inspect.defs.colors.neutral-user.test.ts +1154 -1154
- package/src/palettes/inspect.defs.colors.warm-arch.test.ts +1155 -1153
- package/src/palettes/inspect.defs.colors.warm-user.test.ts +1155 -1153
- package/src/palettes/inspect.neutral-arch.test.ts +152 -147
- package/src/palettes/inspect.neutral-user.test.ts +152 -147
- package/src/palettes/inspect.warm-arch.test.ts +152 -147
- package/src/palettes/inspect.warm-user.test.ts +152 -147
- package/src/palettes/neutral-arch.ts +3 -1
- package/src/palettes/neutral-user.ts +3 -1
- package/src/palettes/neutral.ts +41 -21
- package/src/palettes/show-colors.test.ts +131 -0
- package/src/palettes/testkit.test.ts +224 -0
- package/src/palettes/testkit.ts +227 -0
- package/src/palettes/warm-arch.ts +3 -1
- package/src/palettes/warm-user.ts +3 -1
- package/src/palettes/warm.ts +72 -3
- package/src/platform-symbols.ts +18 -5
- package/src/popover/index.tsx +21 -19
- package/src/popover/mobile-popover-context.tsx +3 -2
- package/src/popover/mobile-popover.tsx +16 -13
- package/src/popover/modifiers.tsx +5 -4
- package/src/popover/popup-modifiers-context.ts +4 -3
- package/src/popover/popup-stack-context.tsx +2 -1
- package/src/popover/reference.ts +1 -1
- package/src/popover/styles.ts +1 -0
- package/src/preference-setting.test.ts +12 -12
- package/src/progress.tsx +3 -2
- package/src/reactions/reaction-button.tsx +10 -8
- package/src/reactions/reaction-picker.tsx +6 -4
- package/src/reactions/reactions.tsx +6 -4
- package/src/reactions/tootltip.tsx +2 -1
- package/src/ready-to-scroll-context.tsx +2 -1
- package/src/rich-input-loader.tsx +4 -3
- package/src/rich-text-embed-error.tsx +3 -2
- package/src/root-theme-provider.test.tsx +30 -48
- package/src/scale-generator.ts +30 -17
- package/src/select/components/clear-indicator.tsx +3 -2
- package/src/select/components/drop-down-indicator.tsx +7 -6
- package/src/select/components/group-heading.tsx +7 -5
- package/src/select/components/menu-list-virtua.tsx +7 -13
- package/src/select/components/menu-list-virtualized.tsx +9 -15
- package/src/select/components/menu.tsx +4 -2
- package/src/select/components/no-option-message.tsx +8 -7
- package/src/select/components/option.tsx +7 -4
- package/src/select/index.tsx +8 -6
- package/src/select/reflection.ts +3 -2
- package/src/select/select-control-settings-context.tsx +2 -1
- package/src/select/select-in-popover.tsx +48 -72
- package/src/select/select-mock-context.tsx +1 -1
- package/src/select/select.tsx +13 -11
- package/src/select/styles.ts +1 -0
- package/src/select/util.ts +3 -2
- package/src/static-palettes.ts +1 -1
- package/src/tab-nav/tab-nav.tsx +19 -15
- package/src/table.tsx +4 -2
- package/src/thematic-color-picker.tsx +2 -1
- package/src/thematic-constants.tsx +4 -4
- package/src/thematic-controls.tsx +5 -1
- package/src/thematic-cvd.tsx +4 -3
- package/src/thematic-highlights.tsx +14 -34
- package/src/thematic-scales.tsx +1 -0
- package/src/thematic-state.ts +46 -28
- package/src/thematic-swatch-adjust.tsx +77 -0
- package/src/thematic.tsx +78 -41
- package/src/theme-provider.test.tsx +52 -64
- package/src/theme-provider.tsx +63 -63
- package/src/theme-settings.ts +4 -68
- package/src/theme-snapshots.test.ts +58 -0
- package/src/theme-styles.ts +9 -57
- package/src/theming.build.ts +33 -0
- package/src/theming.generated.css +2000 -0
- package/src/theming.generated.ts +2519 -0
- package/src/toast/primitives.tsx +9 -7
- package/src/toast/toast-action.tsx +6 -3
- package/src/toast/toast-provider.tsx +2 -1
- package/src/toast/toast-queue.ts +2 -1
- package/src/toast/toast.tsx +5 -4
- package/src/toast/toaster.tsx +1 -0
- package/src/toggle-button/round-toggle-button.tsx +5 -2
- package/src/toggle-button/toggle-button-group.tsx +7 -5
- package/src/toggle-button/toggle-button.tsx +10 -7
- package/src/toggle-on-off.tsx +4 -2
- package/src/toggle.tsx +21 -17
- package/src/tooltip-if-overflown.tsx +3 -1
- package/src/tooltip.tsx +28 -4
- package/src/tree-utils.test.ts +15 -14
- package/src/tree-utils.ts +1 -1
- package/src/type-badge-box.tsx +3 -2
- package/src/type-badge.tsx +14 -38
- package/src/type-label.tsx +24 -0
- package/src/unit/index.tsx +2 -2
- package/src/unit/loading-unit-value.tsx +3 -1
- package/src/unit/primitive.tsx +5 -4
- package/src/unit/styles.ts +7 -3
- package/src/unit/types.ts +1 -1
- package/src/unit/unit-button-group.tsx +4 -2
- package/src/unit/unit-content-layout.tsx +5 -2
- package/src/unit/unit-content.tsx +3 -2
- package/src/unit/unit-with-tooltip.tsx +3 -2
- package/src/use-is-media-query-matched.ts +1 -0
- package/src/use-is-phone.tsx +17 -25
- package/src/use-long-press.tsx +2 -1
- package/src/use-on-screen-keyboard-data.tsx +4 -2
- package/src/with-data.tsx +5 -3
- package/src/workflow-progress-icon.tsx +3 -2
- package/jest.config.cjs +0 -36
- package/src/antd/AutoComplete.d.ts +0 -2
- package/src/antd/AutoComplete.ts +0 -34
- package/src/antd/Tabs.d.ts +0 -5
- package/src/antd/Tabs.tsx +0 -61
- package/src/appIcons.json +0 -13096
- package/src/color-picker/ColorPickerOrLoader.tsx +0 -23
- package/src/color-picker/SliderPointer.tsx +0 -15
- package/src/heat.ts +0 -8
- package/src/icons/Icon.tsx +0 -75
- package/src/icons/react/Abort.tsx +0 -18
- package/src/icons/react/AccessTemplate.tsx +0 -18
- package/src/icons/react/Activity.tsx +0 -18
- package/src/icons/react/ActivityFilled.tsx +0 -18
- package/src/icons/react/ActivityLog.tsx +0 -18
- package/src/icons/react/Add.tsx +0 -18
- package/src/icons/react/AddAfter.tsx +0 -18
- package/src/icons/react/AddBefore.tsx +0 -18
- package/src/icons/react/AddCompact.tsx +0 -18
- package/src/icons/react/AddDatabase.tsx +0 -18
- package/src/icons/react/AddGroup.tsx +0 -18
- package/src/icons/react/AddIntegration.tsx +0 -18
- package/src/icons/react/AddReactions.tsx +0 -18
- package/src/icons/react/AiAssistant.tsx +0 -18
- package/src/icons/react/AiAssistantFilled.tsx +0 -18
- package/src/icons/react/AiAvatar.tsx +0 -18
- package/src/icons/react/AiFiberyBuild.tsx +0 -18
- package/src/icons/react/AiSearch.tsx +0 -18
- package/src/icons/react/AlertTriangle.tsx +0 -18
- package/src/icons/react/Anthropic.tsx +0 -18
- package/src/icons/react/App.tsx +0 -18
- package/src/icons/react/AppDetails.tsx +0 -18
- package/src/icons/react/AppStore.tsx +0 -18
- package/src/icons/react/AppStoreOneColor.tsx +0 -18
- package/src/icons/react/AppTemplates.tsx +0 -18
- package/src/icons/react/AppWebhooks.tsx +0 -18
- package/src/icons/react/AppWiki.tsx +0 -18
- package/src/icons/react/AppearanceAuto.tsx +0 -18
- package/src/icons/react/AppearanceDark.tsx +0 -18
- package/src/icons/react/AppearanceLight.tsx +0 -18
- package/src/icons/react/Apple.tsx +0 -18
- package/src/icons/react/ArrowBarDown.tsx +0 -18
- package/src/icons/react/ArrowBarLeft.tsx +0 -18
- package/src/icons/react/ArrowBarRight.tsx +0 -18
- package/src/icons/react/ArrowBarUp.tsx +0 -18
- package/src/icons/react/ArrowBottom.tsx +0 -18
- package/src/icons/react/ArrowCollapse.tsx +0 -18
- package/src/icons/react/ArrowCollapseVertical.tsx +0 -18
- package/src/icons/react/ArrowForward.tsx +0 -18
- package/src/icons/react/ArrowLeft.tsx +0 -18
- package/src/icons/react/ArrowRight.tsx +0 -18
- package/src/icons/react/ArrowTop.tsx +0 -18
- package/src/icons/react/ArrowUpCircle.tsx +0 -18
- package/src/icons/react/ArrowsRightLeft.tsx +0 -18
- package/src/icons/react/AskForInput.tsx +0 -18
- package/src/icons/react/Asterisk.tsx +0 -18
- package/src/icons/react/Atom.tsx +0 -18
- package/src/icons/react/AutomationsCancelled.tsx +0 -18
- package/src/icons/react/AutomationsDisabled.tsx +0 -18
- package/src/icons/react/AutomationsError.tsx +0 -18
- package/src/icons/react/AutomationsInProgress.tsx +0 -18
- package/src/icons/react/AutomationsNotStarted.tsx +0 -18
- package/src/icons/react/AutomationsSuccess.tsx +0 -18
- package/src/icons/react/Back.tsx +0 -18
- package/src/icons/react/BacklogIcon.tsx +0 -18
- package/src/icons/react/BatchActionsIcon.tsx +0 -18
- package/src/icons/react/BellCircle.tsx +0 -18
- package/src/icons/react/BellFilled.tsx +0 -18
- package/src/icons/react/BellOff.tsx +0 -18
- package/src/icons/react/BellRinging.tsx +0 -18
- package/src/icons/react/BellX.tsx +0 -18
- package/src/icons/react/Bolt.tsx +0 -18
- package/src/icons/react/BringForward.tsx +0 -18
- package/src/icons/react/BringToFront.tsx +0 -18
- package/src/icons/react/Cards.tsx +0 -18
- package/src/icons/react/Chat.tsx +0 -18
- package/src/icons/react/ChatAi.tsx +0 -18
- package/src/icons/react/ChatBubble.tsx +0 -18
- package/src/icons/react/ChatFloat.tsx +0 -18
- package/src/icons/react/ChatSidebar.tsx +0 -18
- package/src/icons/react/CheckCircle.tsx +0 -18
- package/src/icons/react/CheckCircleFilled.tsx +0 -18
- package/src/icons/react/Checked.tsx +0 -18
- package/src/icons/react/Clean.tsx +0 -18
- package/src/icons/react/Clear.tsx +0 -18
- package/src/icons/react/ClearInputFilled.tsx +0 -18
- package/src/icons/react/ClearValue.tsx +0 -18
- package/src/icons/react/Clock.tsx +0 -18
- package/src/icons/react/ClockAlarm.tsx +0 -18
- package/src/icons/react/ClockForward.tsx +0 -18
- package/src/icons/react/Close.tsx +0 -18
- package/src/icons/react/CollapseAll.tsx +0 -18
- package/src/icons/react/CollapseAllHorizontal.tsx +0 -18
- package/src/icons/react/ColorCoding.tsx +0 -18
- package/src/icons/react/ColorCodingFilled.tsx +0 -18
- package/src/icons/react/Columns.tsx +0 -18
- package/src/icons/react/Columns2.tsx +0 -18
- package/src/icons/react/Columns4.tsx +0 -18
- package/src/icons/react/CommentBubble.tsx +0 -18
- package/src/icons/react/Copy.tsx +0 -18
- package/src/icons/react/Create.tsx +0 -18
- package/src/icons/react/CreditsFilled.tsx +0 -18
- package/src/icons/react/CrossCircle.tsx +0 -18
- package/src/icons/react/Crosshair.tsx +0 -18
- package/src/icons/react/Csv.tsx +0 -18
- package/src/icons/react/Database.tsx +0 -18
- package/src/icons/react/DatabaseOff.tsx +0 -18
- package/src/icons/react/DatabaseStroke.tsx +0 -18
- package/src/icons/react/DateRange.tsx +0 -18
- package/src/icons/react/Delete.tsx +0 -18
- package/src/icons/react/Demo.tsx +0 -18
- package/src/icons/react/Dependency.tsx +0 -18
- package/src/icons/react/Dividers.tsx +0 -18
- package/src/icons/react/Document.tsx +0 -18
- package/src/icons/react/DoubleArrowLeft.tsx +0 -18
- package/src/icons/react/DoubleArrowRight.tsx +0 -18
- package/src/icons/react/DoubleLine.tsx +0 -18
- package/src/icons/react/DragBlockHandle.tsx +0 -18
- package/src/icons/react/DragBlockHandleSingle.tsx +0 -18
- package/src/icons/react/DragHandle.tsx +0 -18
- package/src/icons/react/Duplicate.tsx +0 -18
- package/src/icons/react/DynamicFilterValue.tsx +0 -18
- package/src/icons/react/EditValue.tsx +0 -18
- package/src/icons/react/Email.tsx +0 -18
- package/src/icons/react/EmojiDelete.tsx +0 -18
- package/src/icons/react/EntityCreate.tsx +0 -18
- package/src/icons/react/EntityCreateFilled.tsx +0 -18
- package/src/icons/react/EntityMerge.tsx +0 -18
- package/src/icons/react/Equation.tsx +0 -18
- package/src/icons/react/ExpandAll.tsx +0 -18
- package/src/icons/react/ExpandAllHorizontal.tsx +0 -18
- package/src/icons/react/Export.tsx +0 -18
- package/src/icons/react/ExtensionAssignments.tsx +0 -18
- package/src/icons/react/ExtensionAvatar.tsx +0 -18
- package/src/icons/react/ExtensionComments.tsx +0 -18
- package/src/icons/react/ExtensionFiles.tsx +0 -18
- package/src/icons/react/ExtensionReferences.tsx +0 -18
- package/src/icons/react/ExtensionWorkflow.tsx +0 -18
- package/src/icons/react/Eye.tsx +0 -18
- package/src/icons/react/Favorites.tsx +0 -18
- package/src/icons/react/FavoritesChecked.tsx +0 -18
- package/src/icons/react/FavoritesOff.tsx +0 -18
- package/src/icons/react/FiberyDesktopApp.tsx +0 -18
- package/src/icons/react/FiberyMono.tsx +0 -18
- package/src/icons/react/FieldUnit.tsx +0 -18
- package/src/icons/react/Fields.tsx +0 -18
- package/src/icons/react/Figma.tsx +0 -18
- package/src/icons/react/FileArchive.tsx +0 -18
- package/src/icons/react/FileBroken.tsx +0 -18
- package/src/icons/react/FileCounter.tsx +0 -18
- package/src/icons/react/FileDocument.tsx +0 -18
- package/src/icons/react/FileDownload.tsx +0 -18
- package/src/icons/react/FileImage.tsx +0 -18
- package/src/icons/react/FileMultiple.tsx +0 -18
- package/src/icons/react/FileOther.tsx +0 -18
- package/src/icons/react/FilePresentation.tsx +0 -18
- package/src/icons/react/FileTable.tsx +0 -18
- package/src/icons/react/FileUpload.tsx +0 -18
- package/src/icons/react/FileVideo.tsx +0 -18
- package/src/icons/react/Filter.tsx +0 -18
- package/src/icons/react/FitToScreen.tsx +0 -18
- package/src/icons/react/FocusMode.tsx +0 -18
- package/src/icons/react/FocusModeOff.tsx +0 -18
- package/src/icons/react/Folder.tsx +0 -18
- package/src/icons/react/FolderFavorite.tsx +0 -18
- package/src/icons/react/FormWithCover.tsx +0 -18
- package/src/icons/react/FormWithoutCover.tsx +0 -18
- package/src/icons/react/FullscreenModeOffIcon.tsx +0 -18
- package/src/icons/react/FullscreenModeOn.tsx +0 -18
- package/src/icons/react/FullscreenModeOnIcon.tsx +0 -18
- package/src/icons/react/Gift.tsx +0 -18
- package/src/icons/react/Github.tsx +0 -18
- package/src/icons/react/Gitlab.tsx +0 -18
- package/src/icons/react/Globe.tsx +0 -18
- package/src/icons/react/GlobeSimple.tsx +0 -18
- package/src/icons/react/GlobeUnpublish.tsx +0 -18
- package/src/icons/react/GoTo.tsx +0 -18
- package/src/icons/react/GoogleDrive.tsx +0 -18
- package/src/icons/react/GoogleMap.tsx +0 -18
- package/src/icons/react/GraduationCapFilled.tsx +0 -18
- package/src/icons/react/Headphones.tsx +0 -18
- package/src/icons/react/HeadphonesAi.tsx +0 -18
- package/src/icons/react/Hide.tsx +0 -18
- package/src/icons/react/Highlights.tsx +0 -18
- package/src/icons/react/Hint.tsx +0 -18
- package/src/icons/react/Home.tsx +0 -18
- package/src/icons/react/HomeFilled.tsx +0 -18
- package/src/icons/react/ImageXmark.tsx +0 -18
- package/src/icons/react/Import.tsx +0 -18
- package/src/icons/react/ImportFilled.tsx +0 -18
- package/src/icons/react/InfoCircle.tsx +0 -18
- package/src/icons/react/InfoCircleFilled.tsx +0 -18
- package/src/icons/react/Integration.tsx +0 -18
- package/src/icons/react/IntegrationsFilled.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationDiscourseColor.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationIntercomColor.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationSlackColor.tsx +0 -18
- package/src/icons/react/IntegrationsIntegrationZendeskColor.tsx +0 -18
- package/src/icons/react/Intercom.tsx +0 -18
- package/src/icons/react/InvitePeople.tsx +0 -18
- package/src/icons/react/Items.tsx +0 -18
- package/src/icons/react/ItemsTimeline.tsx +0 -18
- package/src/icons/react/Jira.tsx +0 -18
- package/src/icons/react/Key.tsx +0 -18
- package/src/icons/react/KeyboardHideDown.tsx +0 -18
- package/src/icons/react/Lab.tsx +0 -18
- package/src/icons/react/LayoutDouble.tsx +0 -18
- package/src/icons/react/LayoutMultiple.tsx +0 -18
- package/src/icons/react/LayoutSingle.tsx +0 -18
- package/src/icons/react/LeftPanel.tsx +0 -18
- package/src/icons/react/LevelPlus.tsx +0 -18
- package/src/icons/react/Levels.tsx +0 -18
- package/src/icons/react/LineDivider.tsx +0 -18
- package/src/icons/react/LineJump.tsx +0 -18
- package/src/icons/react/Link.tsx +0 -18
- package/src/icons/react/LocationEdit.tsx +0 -18
- package/src/icons/react/Lock.tsx +0 -18
- package/src/icons/react/LockOutline.tsx +0 -18
- package/src/icons/react/Logout.tsx +0 -18
- package/src/icons/react/Loom.tsx +0 -18
- package/src/icons/react/LoupeZoom.tsx +0 -18
- package/src/icons/react/LoupeZoomIn.tsx +0 -18
- package/src/icons/react/LoupeZoomOut.tsx +0 -18
- package/src/icons/react/ManyPeople.tsx +0 -18
- package/src/icons/react/MapMode.tsx +0 -18
- package/src/icons/react/Markdown.tsx +0 -18
- package/src/icons/react/MenuCollapser.tsx +0 -18
- package/src/icons/react/Mermaid.tsx +0 -18
- package/src/icons/react/MessagePlus.tsx +0 -18
- package/src/icons/react/MessagePlusSquare.tsx +0 -18
- package/src/icons/react/Milestones.tsx +0 -18
- package/src/icons/react/Minus.tsx +0 -18
- package/src/icons/react/Miro.tsx +0 -18
- package/src/icons/react/MirrorOff.tsx +0 -18
- package/src/icons/react/MirrorOn.tsx +0 -18
- package/src/icons/react/Mixpanel.tsx +0 -18
- package/src/icons/react/Monitor.tsx +0 -18
- package/src/icons/react/More.tsx +0 -18
- package/src/icons/react/MoreCompact.tsx +0 -18
- package/src/icons/react/MoveBottom.tsx +0 -18
- package/src/icons/react/MoveLeft.tsx +0 -18
- package/src/icons/react/MoveRight.tsx +0 -18
- package/src/icons/react/MoveSpace.tsx +0 -18
- package/src/icons/react/MoveTop.tsx +0 -18
- package/src/icons/react/Network.tsx +0 -18
- package/src/icons/react/NetworkAdd.tsx +0 -18
- package/src/icons/react/NoBorder.tsx +0 -18
- package/src/icons/react/NoFill.tsx +0 -18
- package/src/icons/react/Notifications.tsx +0 -18
- package/src/icons/react/ObjChild.tsx +0 -18
- package/src/icons/react/ObjM2M.tsx +0 -18
- package/src/icons/react/ObjO2O.tsx +0 -18
- package/src/icons/react/ObjParent.tsx +0 -18
- package/src/icons/react/ObjSelf.tsx +0 -18
- package/src/icons/react/OnSchedule.tsx +0 -18
- package/src/icons/react/OpenAi.tsx +0 -18
- package/src/icons/react/OpenAsPage.tsx +0 -18
- package/src/icons/react/PageRegularMode.tsx +0 -18
- package/src/icons/react/PageWideMode.tsx +0 -18
- package/src/icons/react/PanelAdd.tsx +0 -18
- package/src/icons/react/Pencil.tsx +0 -18
- package/src/icons/react/People.tsx +0 -18
- package/src/icons/react/PeopleCheck.tsx +0 -18
- package/src/icons/react/Photo.tsx +0 -18
- package/src/icons/react/Pin.tsx +0 -18
- package/src/icons/react/PinFilled.tsx +0 -18
- package/src/icons/react/Popup.tsx +0 -18
- package/src/icons/react/Posts.tsx +0 -18
- package/src/icons/react/PresentPlay.tsx +0 -18
- package/src/icons/react/PresentStop.tsx +0 -18
- package/src/icons/react/Print.tsx +0 -18
- package/src/icons/react/PrivateItems.tsx +0 -18
- package/src/icons/react/Question.tsx +0 -18
- package/src/icons/react/QuickFilter.tsx +0 -18
- package/src/icons/react/QuickFilterPersonal.tsx +0 -18
- package/src/icons/react/ReadOnly.tsx +0 -18
- package/src/icons/react/Refresh.tsx +0 -18
- package/src/icons/react/Remove.tsx +0 -18
- package/src/icons/react/RemovePeople.tsx +0 -18
- package/src/icons/react/Reply.tsx +0 -18
- package/src/icons/react/ResetPassword.tsx +0 -18
- package/src/icons/react/Restore.tsx +0 -18
- package/src/icons/react/RicheditorActionsMore.tsx +0 -18
- package/src/icons/react/RicheditorBlockCallout.tsx +0 -18
- package/src/icons/react/RicheditorBlockCode.tsx +0 -18
- package/src/icons/react/RicheditorBlockEmbed.tsx +0 -18
- package/src/icons/react/RicheditorBlockEntity.tsx +0 -18
- package/src/icons/react/RicheditorBlockFile.tsx +0 -18
- package/src/icons/react/RicheditorBlockH1.tsx +0 -18
- package/src/icons/react/RicheditorBlockH2.tsx +0 -18
- package/src/icons/react/RicheditorBlockH3.tsx +0 -18
- package/src/icons/react/RicheditorBlockH4.tsx +0 -18
- package/src/icons/react/RicheditorBlockMention.tsx +0 -18
- package/src/icons/react/RicheditorBlockParagraph.tsx +0 -18
- package/src/icons/react/RicheditorBlockQuote.tsx +0 -18
- package/src/icons/react/RicheditorChecklistCreate.tsx +0 -18
- package/src/icons/react/RicheditorCommentCreate.tsx +0 -18
- package/src/icons/react/RicheditorEntityLinkCreate.tsx +0 -18
- package/src/icons/react/RicheditorHistoryRedo.tsx +0 -18
- package/src/icons/react/RicheditorHistoryUndo.tsx +0 -18
- package/src/icons/react/RicheditorImageAlignCenter.tsx +0 -18
- package/src/icons/react/RicheditorImageAlignLeft.tsx +0 -18
- package/src/icons/react/RicheditorImageAlignRight.tsx +0 -18
- package/src/icons/react/RicheditorImageUpload.tsx +0 -18
- package/src/icons/react/RicheditorImageWrapCenter.tsx +0 -18
- package/src/icons/react/RicheditorImageWrapLeft.tsx +0 -18
- package/src/icons/react/RicheditorImageWrapRight.tsx +0 -18
- package/src/icons/react/RicheditorImageZoom.tsx +0 -18
- package/src/icons/react/RicheditorLinkCreate.tsx +0 -18
- package/src/icons/react/RicheditorLinkedhighlightCreate.tsx +0 -18
- package/src/icons/react/RicheditorListBullet.tsx +0 -18
- package/src/icons/react/RicheditorListIndent.tsx +0 -18
- package/src/icons/react/RicheditorListOrdered.tsx +0 -18
- package/src/icons/react/RicheditorListUnindent.tsx +0 -18
- package/src/icons/react/RicheditorMarkCode.tsx +0 -18
- package/src/icons/react/RicheditorMarkEm.tsx +0 -18
- package/src/icons/react/RicheditorMarkHighlight.tsx +0 -18
- package/src/icons/react/RicheditorMarkStrike.tsx +0 -18
- package/src/icons/react/RicheditorMarkStrong.tsx +0 -18
- package/src/icons/react/RicheditorMarkTextBackgroundColor.tsx +0 -18
- package/src/icons/react/RicheditorMarkUnderline.tsx +0 -18
- package/src/icons/react/RicheditorOpenLink.tsx +0 -18
- package/src/icons/react/RicheditorTableCreate.tsx +0 -18
- package/src/icons/react/RicheditorUnlink.tsx +0 -18
- package/src/icons/react/RicheditorVideoUpload.tsx +0 -18
- package/src/icons/react/RightPanel.tsx +0 -18
- package/src/icons/react/Rows.tsx +0 -18
- package/src/icons/react/RuleScheduled.tsx +0 -18
- package/src/icons/react/Search.tsx +0 -18
- package/src/icons/react/SearchAdd.tsx +0 -18
- package/src/icons/react/SearchFilled.tsx +0 -18
- package/src/icons/react/SearchRemove.tsx +0 -18
- package/src/icons/react/SelfReferenceOff.tsx +0 -18
- package/src/icons/react/SelfReferenceOn.tsx +0 -18
- package/src/icons/react/SendArrow.tsx +0 -18
- package/src/icons/react/SendBackward.tsx +0 -18
- package/src/icons/react/SendToBack.tsx +0 -18
- package/src/icons/react/Settings.tsx +0 -18
- package/src/icons/react/SettingsFilled.tsx +0 -18
- package/src/icons/react/SettingsOff.tsx +0 -18
- package/src/icons/react/Share.tsx +0 -18
- package/src/icons/react/Shared.tsx +0 -18
- package/src/icons/react/ShieldKeyhole.tsx +0 -18
- package/src/icons/react/ShowAuthor.tsx +0 -18
- package/src/icons/react/Sidebar.tsx +0 -18
- package/src/icons/react/SidebarFields.tsx +0 -18
- package/src/icons/react/SidebarFieldsOpened.tsx +0 -18
- package/src/icons/react/SimpleCompass.tsx +0 -18
- package/src/icons/react/Slack.tsx +0 -18
- package/src/icons/react/SlackIcon.tsx +0 -18
- package/src/icons/react/SlideMenu.tsx +0 -18
- package/src/icons/react/SlideMenuClose.tsx +0 -18
- package/src/icons/react/SlideMenuFilled.tsx +0 -18
- package/src/icons/react/SlideMenuOpen.tsx +0 -18
- package/src/icons/react/SmartFolder.tsx +0 -18
- package/src/icons/react/Sort.tsx +0 -18
- package/src/icons/react/SortOnBottom.tsx +0 -18
- package/src/icons/react/SortOnTop.tsx +0 -18
- package/src/icons/react/SpaceApp.tsx +0 -18
- package/src/icons/react/SpaceGenerate.tsx +0 -18
- package/src/icons/react/SpaceList.tsx +0 -18
- package/src/icons/react/SpaceScratch.tsx +0 -18
- package/src/icons/react/SpaceTemplate.tsx +0 -18
- package/src/icons/react/Spinner.tsx +0 -18
- package/src/icons/react/Success.tsx +0 -18
- package/src/icons/react/SuggestIntegration.tsx +0 -18
- package/src/icons/react/SwitchToMention.tsx +0 -18
- package/src/icons/react/SwitchToText.tsx +0 -18
- package/src/icons/react/SwitchToWidget.tsx +0 -18
- package/src/icons/react/TableLayout.tsx +0 -18
- package/src/icons/react/Template.tsx +0 -18
- package/src/icons/react/Templates.tsx +0 -18
- package/src/icons/react/TemplatesFilled.tsx +0 -18
- package/src/icons/react/Terminal.tsx +0 -18
- package/src/icons/react/TextNoWrap.tsx +0 -18
- package/src/icons/react/TextToolAlignBottom.tsx +0 -18
- package/src/icons/react/TextToolAlignMiddle.tsx +0 -18
- package/src/icons/react/TextToolAlignTop.tsx +0 -18
- package/src/icons/react/TextWrap.tsx +0 -18
- package/src/icons/react/ThumbsDown.tsx +0 -18
- package/src/icons/react/ThumbsUp.tsx +0 -18
- package/src/icons/react/Toc.tsx +0 -18
- package/src/icons/react/Twitter.tsx +0 -18
- package/src/icons/react/TypeBoolean.tsx +0 -18
- package/src/icons/react/TypeButton.tsx +0 -18
- package/src/icons/react/TypeCheckbox.tsx +0 -18
- package/src/icons/react/TypeDate.tsx +0 -18
- package/src/icons/react/TypeEmail.tsx +0 -18
- package/src/icons/react/TypeEmoji.tsx +0 -18
- package/src/icons/react/TypeFormula.tsx +0 -18
- package/src/icons/react/TypeFunction.tsx +0 -18
- package/src/icons/react/TypeId.tsx +0 -18
- package/src/icons/react/TypeLocation.tsx +0 -18
- package/src/icons/react/TypeLookup.tsx +0 -18
- package/src/icons/react/TypeMoney.tsx +0 -18
- package/src/icons/react/TypeMultiSelect.tsx +0 -18
- package/src/icons/react/TypeNumber.tsx +0 -18
- package/src/icons/react/TypePercent.tsx +0 -18
- package/src/icons/react/TypePhone.tsx +0 -18
- package/src/icons/react/TypeRelation.tsx +0 -18
- package/src/icons/react/TypeRichText.tsx +0 -18
- package/src/icons/react/TypeRule.tsx +0 -18
- package/src/icons/react/TypeSingleSelect.tsx +0 -18
- package/src/icons/react/TypeText.tsx +0 -18
- package/src/icons/react/TypeUrl.tsx +0 -18
- package/src/icons/react/UnitsAvatar.tsx +0 -18
- package/src/icons/react/UnitsCollection.tsx +0 -18
- package/src/icons/react/UnitsCounter.tsx +0 -18
- package/src/icons/react/UnitsDate.tsx +0 -18
- package/src/icons/react/UnitsDbBadgeAbbr.tsx +0 -18
- package/src/icons/react/UnitsDbBadgeFull.tsx +0 -18
- package/src/icons/react/UnitsDbIcon.tsx +0 -18
- package/src/icons/react/UnitsField.tsx +0 -18
- package/src/icons/react/UnitsFieldIconButton.tsx +0 -18
- package/src/icons/react/UnitsInput.tsx +0 -18
- package/src/icons/react/UnitsProgressBar.tsx +0 -18
- package/src/icons/react/UnitsRichText.tsx +0 -18
- package/src/icons/react/UnitsSnippet.tsx +0 -18
- package/src/icons/react/Unlink.tsx +0 -18
- package/src/icons/react/UnlockFilled.tsx +0 -18
- package/src/icons/react/UnlockOutline.tsx +0 -18
- package/src/icons/react/Upgrade.tsx +0 -18
- package/src/icons/react/UsbFlashDrive.tsx +0 -18
- package/src/icons/react/UserCheck.tsx +0 -18
- package/src/icons/react/UserGroup.tsx +0 -18
- package/src/icons/react/UserGroupRemove.tsx +0 -18
- package/src/icons/react/UserRole.tsx +0 -18
- package/src/icons/react/UserX.tsx +0 -18
- package/src/icons/react/ValueEdit.tsx +0 -18
- package/src/icons/react/ViewAi.tsx +0 -18
- package/src/icons/react/ViewBoard.tsx +0 -18
- package/src/icons/react/ViewCalendar.tsx +0 -18
- package/src/icons/react/ViewCanvas.tsx +0 -18
- package/src/icons/react/ViewChart.tsx +0 -18
- package/src/icons/react/ViewDashboard.tsx +0 -18
- package/src/icons/react/ViewDetails.tsx +0 -18
- package/src/icons/react/ViewDocument.tsx +0 -18
- package/src/icons/react/ViewEmbed.tsx +0 -18
- package/src/icons/react/ViewFeed.tsx +0 -18
- package/src/icons/react/ViewForm.tsx +0 -18
- package/src/icons/react/ViewGallery.tsx +0 -18
- package/src/icons/react/ViewGantt.tsx +0 -18
- package/src/icons/react/ViewList.tsx +0 -18
- package/src/icons/react/ViewMap.tsx +0 -18
- package/src/icons/react/ViewPage.tsx +0 -18
- package/src/icons/react/ViewTable.tsx +0 -18
- package/src/icons/react/ViewTimeline.tsx +0 -18
- package/src/icons/react/Views.tsx +0 -18
- package/src/icons/react/Warning.tsx +0 -18
- package/src/icons/react/WarningTriangle.tsx +0 -18
- package/src/icons/react/WarningTriangleFilled.tsx +0 -18
- package/src/icons/react/Webhooks.tsx +0 -18
- package/src/icons/react/Windows.tsx +0 -18
- package/src/icons/react/WorkspaceMap.tsx +0 -18
- package/src/icons/react/Youtube.tsx +0 -18
- package/src/icons/react/ZoomIn.tsx +0 -18
- package/src/icons/react/ZoomOut.tsx +0 -18
- package/src/link-input/components/AntTextAreaWithCustomReadState.tsx +0 -75
- package/src/palettes/_.test.ts +0 -226
- package/src/palettes/_.ts +0 -115
- package/src/themed-ink.tsx +0 -26
- /package/config/{jest/testFrameworkSetup.js → vitest/test-framework-setup.js} +0 -0
- /package/src/__mocks__/{styleMock.js → style-mock.js} +0 -0
- /package/src/icons/ast/{Abort.ts → abort.ts} +0 -0
- /package/src/icons/ast/{AccessTemplate.ts → access-template.ts} +0 -0
- /package/src/icons/ast/{ActivityFilled.ts → activity-filled.ts} +0 -0
- /package/src/icons/ast/{ActivityLog.ts → activity-log.ts} +0 -0
- /package/src/icons/ast/{Activity.ts → activity.ts} +0 -0
- /package/src/icons/ast/{AddAfter.ts → add-after.ts} +0 -0
- /package/src/icons/ast/{AddBefore.ts → add-before.ts} +0 -0
- /package/src/icons/ast/{AddCompact.ts → add-compact.ts} +0 -0
- /package/src/icons/ast/{AddDatabase.ts → add-database.ts} +0 -0
- /package/src/icons/ast/{AddGroup.ts → add-group.ts} +0 -0
- /package/src/icons/ast/{AddIntegration.ts → add-integration.ts} +0 -0
- /package/src/icons/ast/{AddReactions.ts → add-reactions.ts} +0 -0
- /package/src/icons/ast/{Add.ts → add.ts} +0 -0
- /package/src/icons/ast/{AiAssistantFilled.ts → ai-assistant-filled.ts} +0 -0
- /package/src/icons/ast/{AiAssistant.ts → ai-assistant.ts} +0 -0
- /package/src/icons/ast/{AiAvatar.ts → ai-avatar.ts} +0 -0
- /package/src/icons/ast/{AiFiberyBuild.ts → ai-fibery-build.ts} +0 -0
- /package/src/icons/ast/{AiSearch.ts → ai-search.ts} +0 -0
- /package/src/icons/ast/{AlertTriangle.ts → alert-triangle.ts} +0 -0
- /package/src/icons/ast/{Anthropic.ts → anthropic.ts} +0 -0
- /package/src/icons/ast/{AppDetails.ts → app-details.ts} +0 -0
- /package/src/icons/ast/{AppStoreOneColor.ts → app-store-one-color.ts} +0 -0
- /package/src/icons/ast/{AppStore.ts → app-store.ts} +0 -0
- /package/src/icons/ast/{AppTemplates.ts → app-templates.ts} +0 -0
- /package/src/icons/ast/{AppWebhooks.ts → app-webhooks.ts} +0 -0
- /package/src/icons/ast/{AppWiki.ts → app-wiki.ts} +0 -0
- /package/src/icons/ast/{App.ts → app.ts} +0 -0
- /package/src/icons/ast/{AppearanceAuto.ts → appearance-auto.ts} +0 -0
- /package/src/icons/ast/{AppearanceDark.ts → appearance-dark.ts} +0 -0
- /package/src/icons/ast/{AppearanceLight.ts → appearance-light.ts} +0 -0
- /package/src/icons/ast/{Apple.ts → apple.ts} +0 -0
- /package/src/icons/ast/{ArrowBarDown.ts → arrow-bar-down.ts} +0 -0
- /package/src/icons/ast/{ArrowBarLeft.ts → arrow-bar-left.ts} +0 -0
- /package/src/icons/ast/{ArrowBarRight.ts → arrow-bar-right.ts} +0 -0
- /package/src/icons/ast/{ArrowBarUp.ts → arrow-bar-up.ts} +0 -0
- /package/src/icons/ast/{ArrowBottom.ts → arrow-bottom.ts} +0 -0
- /package/src/icons/ast/{ArrowCollapseVertical.ts → arrow-collapse-vertical.ts} +0 -0
- /package/src/icons/ast/{ArrowCollapse.ts → arrow-collapse.ts} +0 -0
- /package/src/icons/ast/{ArrowForward.ts → arrow-forward.ts} +0 -0
- /package/src/icons/ast/{ArrowLeft.ts → arrow-left.ts} +0 -0
- /package/src/icons/ast/{ArrowRight.ts → arrow-right.ts} +0 -0
- /package/src/icons/ast/{ArrowTop.ts → arrow-top.ts} +0 -0
- /package/src/icons/ast/{ArrowUpCircle.ts → arrow-up-circle.ts} +0 -0
- /package/src/icons/ast/{ArrowsRightLeft.ts → arrows-right-left.ts} +0 -0
- /package/src/icons/ast/{AskForInput.ts → ask-for-input.ts} +0 -0
- /package/src/icons/ast/{Asterisk.ts → asterisk.ts} +0 -0
- /package/src/icons/ast/{Atom.ts → atom.ts} +0 -0
- /package/src/icons/ast/{AutomationsCancelled.ts → automations-cancelled.ts} +0 -0
- /package/src/icons/ast/{AutomationsDisabled.ts → automations-disabled.ts} +0 -0
- /package/src/icons/ast/{AutomationsError.ts → automations-error.ts} +0 -0
- /package/src/icons/ast/{AutomationsInProgress.ts → automations-in-progress.ts} +0 -0
- /package/src/icons/ast/{AutomationsNotStarted.ts → automations-not-started.ts} +0 -0
- /package/src/icons/ast/{AutomationsSuccess.ts → automations-success.ts} +0 -0
- /package/src/icons/ast/{Back.ts → back.ts} +0 -0
- /package/src/icons/ast/{BacklogIcon.ts → backlog-icon.ts} +0 -0
- /package/src/icons/ast/{BatchActionsIcon.ts → batch-actions-icon.ts} +0 -0
- /package/src/icons/ast/{BellCircle.ts → bell-circle.ts} +0 -0
- /package/src/icons/ast/{BellFilled.ts → bell-filled.ts} +0 -0
- /package/src/icons/ast/{BellOff.ts → bell-off.ts} +0 -0
- /package/src/icons/ast/{BellRinging.ts → bell-ringing.ts} +0 -0
- /package/src/icons/ast/{BellX.ts → bell-x.ts} +0 -0
- /package/src/icons/ast/{Bolt.ts → bolt.ts} +0 -0
- /package/src/icons/ast/{BringForward.ts → bring-forward.ts} +0 -0
- /package/src/icons/ast/{BringToFront.ts → bring-to-front.ts} +0 -0
- /package/src/icons/ast/{Cards.ts → cards.ts} +0 -0
- /package/src/icons/ast/{ChatAi.ts → chat-ai.ts} +0 -0
- /package/src/icons/ast/{ChatBubble.ts → chat-bubble.ts} +0 -0
- /package/src/icons/ast/{ChatFloat.ts → chat-float.ts} +0 -0
- /package/src/icons/ast/{ChatSidebar.ts → chat-sidebar.ts} +0 -0
- /package/src/icons/ast/{Chat.ts → chat.ts} +0 -0
- /package/src/icons/ast/{CheckCircleFilled.ts → check-circle-filled.ts} +0 -0
- /package/src/icons/ast/{CheckCircle.ts → check-circle.ts} +0 -0
- /package/src/icons/ast/{Checked.ts → checked.ts} +0 -0
- /package/src/icons/ast/{Clean.ts → clean.ts} +0 -0
- /package/src/icons/ast/{ClearInputFilled.ts → clear-input-filled.ts} +0 -0
- /package/src/icons/ast/{ClearValue.ts → clear-value.ts} +0 -0
- /package/src/icons/ast/{Clear.ts → clear.ts} +0 -0
- /package/src/icons/ast/{ClockAlarm.ts → clock-alarm.ts} +0 -0
- /package/src/icons/ast/{ClockForward.ts → clock-forward.ts} +0 -0
- /package/src/icons/ast/{Clock.ts → clock.ts} +0 -0
- /package/src/icons/ast/{Close.ts → close.ts} +0 -0
- /package/src/icons/ast/{CollapseAllHorizontal.ts → collapse-all-horizontal.ts} +0 -0
- /package/src/icons/ast/{CollapseAll.ts → collapse-all.ts} +0 -0
- /package/src/icons/ast/{ColorCodingFilled.ts → color-coding-filled.ts} +0 -0
- /package/src/icons/ast/{ColorCoding.ts → color-coding.ts} +0 -0
- /package/src/icons/ast/{Columns2.ts → columns-2.ts} +0 -0
- /package/src/icons/ast/{Columns4.ts → columns-4.ts} +0 -0
- /package/src/icons/ast/{Columns.ts → columns.ts} +0 -0
- /package/src/icons/ast/{CommentBubble.ts → comment-bubble.ts} +0 -0
- /package/src/icons/ast/{Copy.ts → copy.ts} +0 -0
- /package/src/icons/ast/{Create.ts → create.ts} +0 -0
- /package/src/icons/ast/{CreditsFilled.ts → credits-filled.ts} +0 -0
- /package/src/icons/ast/{CrossCircle.ts → cross-circle.ts} +0 -0
- /package/src/icons/ast/{Crosshair.ts → crosshair.ts} +0 -0
- /package/src/icons/ast/{Csv.ts → csv.ts} +0 -0
- /package/src/icons/ast/{DatabaseOff.ts → database-off.ts} +0 -0
- /package/src/icons/ast/{DatabaseStroke.ts → database-stroke.ts} +0 -0
- /package/src/icons/ast/{Database.ts → database.ts} +0 -0
- /package/src/icons/ast/{DateRange.ts → date-range.ts} +0 -0
- /package/src/icons/ast/{Delete.ts → delete.ts} +0 -0
- /package/src/icons/ast/{Demo.ts → demo.ts} +0 -0
- /package/src/icons/ast/{Dependency.ts → dependency.ts} +0 -0
- /package/src/icons/ast/{Dividers.ts → dividers.ts} +0 -0
- /package/src/icons/ast/{Document.ts → document.ts} +0 -0
- /package/src/icons/ast/{DoubleArrowLeft.ts → double-arrow-left.ts} +0 -0
- /package/src/icons/ast/{DoubleArrowRight.ts → double-arrow-right.ts} +0 -0
- /package/src/icons/ast/{DoubleLine.ts → double-line.ts} +0 -0
- /package/src/icons/ast/{DragBlockHandleSingle.ts → drag-block-handle-single.ts} +0 -0
- /package/src/icons/ast/{DragBlockHandle.ts → drag-block-handle.ts} +0 -0
- /package/src/icons/ast/{DragHandle.ts → drag-handle.ts} +0 -0
- /package/src/icons/ast/{Duplicate.ts → duplicate.ts} +0 -0
- /package/src/icons/ast/{DynamicFilterValue.ts → dynamic-filter-value.ts} +0 -0
- /package/src/icons/ast/{EditValue.ts → edit-value.ts} +0 -0
- /package/src/icons/ast/{Email.ts → email.ts} +0 -0
- /package/src/icons/ast/{EmojiDelete.ts → emoji-delete.ts} +0 -0
- /package/src/icons/ast/{EntityCreateFilled.ts → entity-create-filled.ts} +0 -0
- /package/src/icons/ast/{EntityCreate.ts → entity-create.ts} +0 -0
- /package/src/icons/ast/{EntityMerge.ts → entity-merge.ts} +0 -0
- /package/src/icons/ast/{Equation.ts → equation.ts} +0 -0
- /package/src/icons/ast/{ExpandAllHorizontal.ts → expand-all-horizontal.ts} +0 -0
- /package/src/icons/ast/{ExpandAll.ts → expand-all.ts} +0 -0
- /package/src/icons/ast/{Export.ts → export.ts} +0 -0
- /package/src/icons/ast/{ExtensionAssignments.ts → extension-assignments.ts} +0 -0
- /package/src/icons/ast/{ExtensionAvatar.ts → extension-avatar.ts} +0 -0
- /package/src/icons/ast/{ExtensionComments.ts → extension-comments.ts} +0 -0
- /package/src/icons/ast/{ExtensionFiles.ts → extension-files.ts} +0 -0
- /package/src/icons/ast/{ExtensionReferences.ts → extension-references.ts} +0 -0
- /package/src/icons/ast/{ExtensionWorkflow.ts → extension-workflow.ts} +0 -0
- /package/src/icons/ast/{Eye.ts → eye.ts} +0 -0
- /package/src/icons/ast/{FavoritesChecked.ts → favorites-checked.ts} +0 -0
- /package/src/icons/ast/{FavoritesOff.ts → favorites-off.ts} +0 -0
- /package/src/icons/ast/{Favorites.ts → favorites.ts} +0 -0
- /package/src/icons/ast/{FiberyDesktopApp.ts → fibery-desktop-app.ts} +0 -0
- /package/src/icons/ast/{FiberyMono.ts → fibery-mono.ts} +0 -0
- /package/src/icons/ast/{FieldUnit.ts → field-unit.ts} +0 -0
- /package/src/icons/ast/{Fields.ts → fields.ts} +0 -0
- /package/src/icons/ast/{Figma.ts → figma.ts} +0 -0
- /package/src/icons/ast/{FileArchive.ts → file-archive.ts} +0 -0
- /package/src/icons/ast/{FileBroken.ts → file-broken.ts} +0 -0
- /package/src/icons/ast/{FileCounter.ts → file-counter.ts} +0 -0
- /package/src/icons/ast/{FileDocument.ts → file-document.ts} +0 -0
- /package/src/icons/ast/{FileDownload.ts → file-download.ts} +0 -0
- /package/src/icons/ast/{FileImage.ts → file-image.ts} +0 -0
- /package/src/icons/ast/{FileMultiple.ts → file-multiple.ts} +0 -0
- /package/src/icons/ast/{FileOther.ts → file-other.ts} +0 -0
- /package/src/icons/ast/{FilePresentation.ts → file-presentation.ts} +0 -0
- /package/src/icons/ast/{FileTable.ts → file-table.ts} +0 -0
- /package/src/icons/ast/{FileUpload.ts → file-upload.ts} +0 -0
- /package/src/icons/ast/{FileVideo.ts → file-video.ts} +0 -0
- /package/src/icons/ast/{Filter.ts → filter.ts} +0 -0
- /package/src/icons/ast/{FitToScreen.ts → fit-to-screen.ts} +0 -0
- /package/src/icons/ast/{FocusModeOff.ts → focus-mode-off.ts} +0 -0
- /package/src/icons/ast/{FocusMode.ts → focus-mode.ts} +0 -0
- /package/src/icons/ast/{FolderFavorite.ts → folder-favorite.ts} +0 -0
- /package/src/icons/ast/{Folder.ts → folder.ts} +0 -0
- /package/src/icons/ast/{FormWithCover.ts → form-with-cover.ts} +0 -0
- /package/src/icons/ast/{FormWithoutCover.ts → form-without-cover.ts} +0 -0
- /package/src/icons/ast/{FullscreenModeOffIcon.ts → fullscreen-mode-off-icon.ts} +0 -0
- /package/src/icons/ast/{FullscreenModeOnIcon.ts → fullscreen-mode-on-icon.ts} +0 -0
- /package/src/icons/ast/{FullscreenModeOn.ts → fullscreen-mode-on.ts} +0 -0
- /package/src/icons/ast/{Gift.ts → gift.ts} +0 -0
- /package/src/icons/ast/{Github.ts → github.ts} +0 -0
- /package/src/icons/ast/{Gitlab.ts → gitlab.ts} +0 -0
- /package/src/icons/ast/{GlobeSimple.ts → globe-simple.ts} +0 -0
- /package/src/icons/ast/{GlobeUnpublish.ts → globe-unpublish.ts} +0 -0
- /package/src/icons/ast/{Globe.ts → globe.ts} +0 -0
- /package/src/icons/ast/{GoTo.ts → go-to.ts} +0 -0
- /package/src/icons/ast/{GoogleDrive.ts → google-drive.ts} +0 -0
- /package/src/icons/ast/{GoogleMap.ts → google-map.ts} +0 -0
- /package/src/icons/ast/{GraduationCapFilled.ts → graduation-cap-filled.ts} +0 -0
- /package/src/icons/ast/{HeadphonesAi.ts → headphones-ai.ts} +0 -0
- /package/src/icons/ast/{Headphones.ts → headphones.ts} +0 -0
- /package/src/icons/ast/{Hide.ts → hide.ts} +0 -0
- /package/src/icons/ast/{Highlights.ts → highlights.ts} +0 -0
- /package/src/icons/ast/{Hint.ts → hint.ts} +0 -0
- /package/src/icons/ast/{HomeFilled.ts → home-filled.ts} +0 -0
- /package/src/icons/ast/{Home.ts → home.ts} +0 -0
- /package/src/icons/ast/{ImageXmark.ts → image-xmark.ts} +0 -0
- /package/src/icons/ast/{ImportFilled.ts → import-filled.ts} +0 -0
- /package/src/icons/ast/{Import.ts → import.ts} +0 -0
- /package/src/icons/ast/{InfoCircleFilled.ts → info-circle-filled.ts} +0 -0
- /package/src/icons/ast/{InfoCircle.ts → info-circle.ts} +0 -0
- /package/src/icons/ast/{Integration.ts → integration.ts} +0 -0
- /package/src/icons/ast/{IntegrationsFilled.ts → integrations-filled.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationDiscourseColor.ts → integrations-integration-discourse-color.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationIntercomColor.ts → integrations-integration-intercom-color.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationSlackColor.ts → integrations-integration-slack-color.ts} +0 -0
- /package/src/icons/ast/{IntegrationsIntegrationZendeskColor.ts → integrations-integration-zendesk-color.ts} +0 -0
- /package/src/icons/ast/{Intercom.ts → intercom.ts} +0 -0
- /package/src/icons/ast/{InvitePeople.ts → invite-people.ts} +0 -0
- /package/src/icons/ast/{ItemsTimeline.ts → items-timeline.ts} +0 -0
- /package/src/icons/ast/{Items.ts → items.ts} +0 -0
- /package/src/icons/ast/{Jira.ts → jira.ts} +0 -0
- /package/src/icons/ast/{Key.ts → key.ts} +0 -0
- /package/src/icons/ast/{KeyboardHideDown.ts → keyboard-hide-down.ts} +0 -0
- /package/src/icons/ast/{Lab.ts → lab.ts} +0 -0
- /package/src/icons/ast/{LayoutDouble.ts → layout-double.ts} +0 -0
- /package/src/icons/ast/{LayoutMultiple.ts → layout-multiple.ts} +0 -0
- /package/src/icons/ast/{LayoutSingle.ts → layout-single.ts} +0 -0
- /package/src/icons/ast/{LeftPanel.ts → left-panel.ts} +0 -0
- /package/src/icons/ast/{LevelPlus.ts → level-plus.ts} +0 -0
- /package/src/icons/ast/{Levels.ts → levels.ts} +0 -0
- /package/src/icons/ast/{LineDivider.ts → line-divider.ts} +0 -0
- /package/src/icons/ast/{LineJump.ts → line-jump.ts} +0 -0
- /package/src/icons/ast/{Link.ts → link.ts} +0 -0
- /package/src/icons/ast/{LocationEdit.ts → location-edit.ts} +0 -0
- /package/src/icons/ast/{LockOutline.ts → lock-outline.ts} +0 -0
- /package/src/icons/ast/{Lock.ts → lock.ts} +0 -0
- /package/src/icons/ast/{Logout.ts → logout.ts} +0 -0
- /package/src/icons/ast/{Loom.ts → loom.ts} +0 -0
- /package/src/icons/ast/{LoupeZoomIn.ts → loupe-zoom-in.ts} +0 -0
- /package/src/icons/ast/{LoupeZoomOut.ts → loupe-zoom-out.ts} +0 -0
- /package/src/icons/ast/{LoupeZoom.ts → loupe-zoom.ts} +0 -0
- /package/src/icons/ast/{ManyPeople.ts → many-people.ts} +0 -0
- /package/src/icons/ast/{MapMode.ts → map-mode.ts} +0 -0
- /package/src/icons/ast/{Markdown.ts → markdown.ts} +0 -0
- /package/src/icons/ast/{MenuCollapser.ts → menu-collapser.ts} +0 -0
- /package/src/icons/ast/{Mermaid.ts → mermaid.ts} +0 -0
- /package/src/icons/ast/{MessagePlusSquare.ts → message-plus-square.ts} +0 -0
- /package/src/icons/ast/{MessagePlus.ts → message-plus.ts} +0 -0
- /package/src/icons/ast/{Milestones.ts → milestones.ts} +0 -0
- /package/src/icons/ast/{Minus.ts → minus.ts} +0 -0
- /package/src/icons/ast/{Miro.ts → miro.ts} +0 -0
- /package/src/icons/ast/{MirrorOff.ts → mirror-off.ts} +0 -0
- /package/src/icons/ast/{MirrorOn.ts → mirror-on.ts} +0 -0
- /package/src/icons/ast/{Mixpanel.ts → mixpanel.ts} +0 -0
- /package/src/icons/ast/{Monitor.ts → monitor.ts} +0 -0
- /package/src/icons/ast/{MoreCompact.ts → more-compact.ts} +0 -0
- /package/src/icons/ast/{More.ts → more.ts} +0 -0
- /package/src/icons/ast/{MoveBottom.ts → move-bottom.ts} +0 -0
- /package/src/icons/ast/{MoveLeft.ts → move-left.ts} +0 -0
- /package/src/icons/ast/{MoveRight.ts → move-right.ts} +0 -0
- /package/src/icons/ast/{MoveSpace.ts → move-space.ts} +0 -0
- /package/src/icons/ast/{MoveTop.ts → move-top.ts} +0 -0
- /package/src/icons/ast/{NetworkAdd.ts → network-add.ts} +0 -0
- /package/src/icons/ast/{Network.ts → network.ts} +0 -0
- /package/src/icons/ast/{NoBorder.ts → no-border.ts} +0 -0
- /package/src/icons/ast/{NoFill.ts → no-fill.ts} +0 -0
- /package/src/icons/ast/{Notifications.ts → notifications.ts} +0 -0
- /package/src/icons/ast/{ObjChild.ts → obj-child.ts} +0 -0
- /package/src/icons/ast/{ObjM2M.ts → obj-m2m.ts} +0 -0
- /package/src/icons/ast/{ObjO2O.ts → obj-o2o.ts} +0 -0
- /package/src/icons/ast/{ObjParent.ts → obj-parent.ts} +0 -0
- /package/src/icons/ast/{ObjSelf.ts → obj-self.ts} +0 -0
- /package/src/icons/ast/{OnSchedule.ts → on-schedule.ts} +0 -0
- /package/src/icons/ast/{OpenAi.ts → open-ai.ts} +0 -0
- /package/src/icons/ast/{OpenAsPage.ts → open-as-page.ts} +0 -0
- /package/src/icons/ast/{PageRegularMode.ts → page-regular-mode.ts} +0 -0
- /package/src/icons/ast/{PageWideMode.ts → page-wide-mode.ts} +0 -0
- /package/src/icons/ast/{PanelAdd.ts → panel-add.ts} +0 -0
- /package/src/icons/ast/{Pencil.ts → pencil.ts} +0 -0
- /package/src/icons/ast/{PeopleCheck.ts → people-check.ts} +0 -0
- /package/src/icons/ast/{People.ts → people.ts} +0 -0
- /package/src/icons/ast/{Photo.ts → photo.ts} +0 -0
- /package/src/icons/ast/{PinFilled.ts → pin-filled.ts} +0 -0
- /package/src/icons/ast/{Pin.ts → pin.ts} +0 -0
- /package/src/icons/ast/{Popup.ts → popup.ts} +0 -0
- /package/src/icons/ast/{Posts.ts → posts.ts} +0 -0
- /package/src/icons/ast/{PresentPlay.ts → present-play.ts} +0 -0
- /package/src/icons/ast/{PresentStop.ts → present-stop.ts} +0 -0
- /package/src/icons/ast/{Print.ts → print.ts} +0 -0
- /package/src/icons/ast/{PrivateItems.ts → private-items.ts} +0 -0
- /package/src/icons/ast/{Question.ts → question.ts} +0 -0
- /package/src/icons/ast/{QuickFilterPersonal.ts → quick-filter-personal.ts} +0 -0
- /package/src/icons/ast/{QuickFilter.ts → quick-filter.ts} +0 -0
- /package/src/icons/ast/{ReadOnly.ts → read-only.ts} +0 -0
- /package/src/icons/ast/{Refresh.ts → refresh.ts} +0 -0
- /package/src/icons/ast/{RemovePeople.ts → remove-people.ts} +0 -0
- /package/src/icons/ast/{Remove.ts → remove.ts} +0 -0
- /package/src/icons/ast/{Reply.ts → reply.ts} +0 -0
- /package/src/icons/ast/{ResetPassword.ts → reset-password.ts} +0 -0
- /package/src/icons/ast/{Restore.ts → restore.ts} +0 -0
- /package/src/icons/ast/{RicheditorActionsMore.ts → richeditor-actions-more.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockCallout.ts → richeditor-block-callout.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockCode.ts → richeditor-block-code.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockEmbed.ts → richeditor-block-embed.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockEntity.ts → richeditor-block-entity.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockFile.ts → richeditor-block-file.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH1.ts → richeditor-block-h1.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH2.ts → richeditor-block-h2.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH3.ts → richeditor-block-h3.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockH4.ts → richeditor-block-h4.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockMention.ts → richeditor-block-mention.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockParagraph.ts → richeditor-block-paragraph.ts} +0 -0
- /package/src/icons/ast/{RicheditorBlockQuote.ts → richeditor-block-quote.ts} +0 -0
- /package/src/icons/ast/{RicheditorChecklistCreate.ts → richeditor-checklist-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorCommentCreate.ts → richeditor-comment-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorEntityLinkCreate.ts → richeditor-entity-link-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorHistoryRedo.ts → richeditor-history-redo.ts} +0 -0
- /package/src/icons/ast/{RicheditorHistoryUndo.ts → richeditor-history-undo.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageAlignCenter.ts → richeditor-image-align-center.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageAlignLeft.ts → richeditor-image-align-left.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageAlignRight.ts → richeditor-image-align-right.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageUpload.ts → richeditor-image-upload.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageWrapCenter.ts → richeditor-image-wrap-center.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageWrapLeft.ts → richeditor-image-wrap-left.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageWrapRight.ts → richeditor-image-wrap-right.ts} +0 -0
- /package/src/icons/ast/{RicheditorImageZoom.ts → richeditor-image-zoom.ts} +0 -0
- /package/src/icons/ast/{RicheditorLinkCreate.ts → richeditor-link-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorLinkedhighlightCreate.ts → richeditor-linkedhighlight-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorListBullet.ts → richeditor-list-bullet.ts} +0 -0
- /package/src/icons/ast/{RicheditorListIndent.ts → richeditor-list-indent.ts} +0 -0
- /package/src/icons/ast/{RicheditorListOrdered.ts → richeditor-list-ordered.ts} +0 -0
- /package/src/icons/ast/{RicheditorListUnindent.ts → richeditor-list-unindent.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkCode.ts → richeditor-mark-code.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkEm.ts → richeditor-mark-em.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkHighlight.ts → richeditor-mark-highlight.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkStrike.ts → richeditor-mark-strike.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkStrong.ts → richeditor-mark-strong.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkTextBackgroundColor.ts → richeditor-mark-text-background-color.ts} +0 -0
- /package/src/icons/ast/{RicheditorMarkUnderline.ts → richeditor-mark-underline.ts} +0 -0
- /package/src/icons/ast/{RicheditorOpenLink.ts → richeditor-open-link.ts} +0 -0
- /package/src/icons/ast/{RicheditorTableCreate.ts → richeditor-table-create.ts} +0 -0
- /package/src/icons/ast/{RicheditorUnlink.ts → richeditor-unlink.ts} +0 -0
- /package/src/icons/ast/{RicheditorVideoUpload.ts → richeditor-video-upload.ts} +0 -0
- /package/src/icons/ast/{RightPanel.ts → right-panel.ts} +0 -0
- /package/src/icons/ast/{Rows.ts → rows.ts} +0 -0
- /package/src/icons/ast/{RuleScheduled.ts → rule-scheduled.ts} +0 -0
- /package/src/icons/ast/{SearchAdd.ts → search-add.ts} +0 -0
- /package/src/icons/ast/{SearchFilled.ts → search-filled.ts} +0 -0
- /package/src/icons/ast/{SearchRemove.ts → search-remove.ts} +0 -0
- /package/src/icons/ast/{Search.ts → search.ts} +0 -0
- /package/src/icons/ast/{SelfReferenceOff.ts → self-reference-off.ts} +0 -0
- /package/src/icons/ast/{SelfReferenceOn.ts → self-reference-on.ts} +0 -0
- /package/src/icons/ast/{SendArrow.ts → send-arrow.ts} +0 -0
- /package/src/icons/ast/{SendBackward.ts → send-backward.ts} +0 -0
- /package/src/icons/ast/{SendToBack.ts → send-to-back.ts} +0 -0
- /package/src/icons/ast/{SettingsFilled.ts → settings-filled.ts} +0 -0
- /package/src/icons/ast/{SettingsOff.ts → settings-off.ts} +0 -0
- /package/src/icons/ast/{Settings.ts → settings.ts} +0 -0
- /package/src/icons/ast/{Share.ts → share.ts} +0 -0
- /package/src/icons/ast/{Shared.ts → shared.ts} +0 -0
- /package/src/icons/ast/{ShieldKeyhole.ts → shield-keyhole.ts} +0 -0
- /package/src/icons/ast/{ShowAuthor.ts → show-author.ts} +0 -0
- /package/src/icons/ast/{SidebarFieldsOpened.ts → sidebar-fields-opened.ts} +0 -0
- /package/src/icons/ast/{SidebarFields.ts → sidebar-fields.ts} +0 -0
- /package/src/icons/ast/{Sidebar.ts → sidebar.ts} +0 -0
- /package/src/icons/ast/{SimpleCompass.ts → simple-compass.ts} +0 -0
- /package/src/icons/ast/{SlackIcon.ts → slack-icon.ts} +0 -0
- /package/src/icons/ast/{Slack.ts → slack.ts} +0 -0
- /package/src/icons/ast/{SlideMenuClose.ts → slide-menu-close.ts} +0 -0
- /package/src/icons/ast/{SlideMenuFilled.ts → slide-menu-filled.ts} +0 -0
- /package/src/icons/ast/{SlideMenuOpen.ts → slide-menu-open.ts} +0 -0
- /package/src/icons/ast/{SlideMenu.ts → slide-menu.ts} +0 -0
- /package/src/icons/ast/{SmartFolder.ts → smart-folder.ts} +0 -0
- /package/src/icons/ast/{SortOnBottom.ts → sort-on-bottom.ts} +0 -0
- /package/src/icons/ast/{SortOnTop.ts → sort-on-top.ts} +0 -0
- /package/src/icons/ast/{Sort.ts → sort.ts} +0 -0
- /package/src/icons/ast/{SpaceApp.ts → space-app.ts} +0 -0
- /package/src/icons/ast/{SpaceGenerate.ts → space-generate.ts} +0 -0
- /package/src/icons/ast/{SpaceList.ts → space-list.ts} +0 -0
- /package/src/icons/ast/{SpaceScratch.ts → space-scratch.ts} +0 -0
- /package/src/icons/ast/{SpaceTemplate.ts → space-template.ts} +0 -0
- /package/src/icons/ast/{Spinner.ts → spinner.ts} +0 -0
- /package/src/icons/ast/{Success.ts → success.ts} +0 -0
- /package/src/icons/ast/{SuggestIntegration.ts → suggest-integration.ts} +0 -0
- /package/src/icons/ast/{SwitchToMention.ts → switch-to-mention.ts} +0 -0
- /package/src/icons/ast/{SwitchToText.ts → switch-to-text.ts} +0 -0
- /package/src/icons/ast/{SwitchToWidget.ts → switch-to-widget.ts} +0 -0
- /package/src/icons/ast/{TableLayout.ts → table-layout.ts} +0 -0
- /package/src/icons/ast/{Template.ts → template.ts} +0 -0
- /package/src/icons/ast/{TemplatesFilled.ts → templates-filled.ts} +0 -0
- /package/src/icons/ast/{Templates.ts → templates.ts} +0 -0
- /package/src/icons/ast/{Terminal.ts → terminal.ts} +0 -0
- /package/src/icons/ast/{TextNoWrap.ts → text-no-wrap.ts} +0 -0
- /package/src/icons/ast/{TextToolAlignBottom.ts → text-tool-align-bottom.ts} +0 -0
- /package/src/icons/ast/{TextToolAlignMiddle.ts → text-tool-align-middle.ts} +0 -0
- /package/src/icons/ast/{TextToolAlignTop.ts → text-tool-align-top.ts} +0 -0
- /package/src/icons/ast/{TextWrap.ts → text-wrap.ts} +0 -0
- /package/src/icons/ast/{ThumbsDown.ts → thumbs-down.ts} +0 -0
- /package/src/icons/ast/{ThumbsUp.ts → thumbs-up.ts} +0 -0
- /package/src/icons/ast/{Toc.ts → toc.ts} +0 -0
- /package/src/icons/ast/{Twitter.ts → twitter.ts} +0 -0
- /package/src/icons/ast/{TypeBoolean.ts → type-boolean.ts} +0 -0
- /package/src/icons/ast/{TypeButton.ts → type-button.ts} +0 -0
- /package/src/icons/ast/{TypeCheckbox.ts → type-checkbox.ts} +0 -0
- /package/src/icons/ast/{TypeDate.ts → type-date.ts} +0 -0
- /package/src/icons/ast/{TypeEmail.ts → type-email.ts} +0 -0
- /package/src/icons/ast/{TypeEmoji.ts → type-emoji.ts} +0 -0
- /package/src/icons/ast/{TypeFormula.ts → type-formula.ts} +0 -0
- /package/src/icons/ast/{TypeFunction.ts → type-function.ts} +0 -0
- /package/src/icons/ast/{TypeId.ts → type-id.ts} +0 -0
- /package/src/icons/ast/{TypeLocation.ts → type-location.ts} +0 -0
- /package/src/icons/ast/{TypeLookup.ts → type-lookup.ts} +0 -0
- /package/src/icons/ast/{TypeMoney.ts → type-money.ts} +0 -0
- /package/src/icons/ast/{TypeMultiSelect.ts → type-multi-select.ts} +0 -0
- /package/src/icons/ast/{TypeNumber.ts → type-number.ts} +0 -0
- /package/src/icons/ast/{TypePercent.ts → type-percent.ts} +0 -0
- /package/src/icons/ast/{TypePhone.ts → type-phone.ts} +0 -0
- /package/src/icons/ast/{TypeRelation.ts → type-relation.ts} +0 -0
- /package/src/icons/ast/{TypeRichText.ts → type-rich-text.ts} +0 -0
- /package/src/icons/ast/{TypeRule.ts → type-rule.ts} +0 -0
- /package/src/icons/ast/{TypeSingleSelect.ts → type-single-select.ts} +0 -0
- /package/src/icons/ast/{TypeText.ts → type-text.ts} +0 -0
- /package/src/icons/ast/{TypeUrl.ts → type-url.ts} +0 -0
- /package/src/icons/ast/{UnitsAvatar.ts → units-avatar.ts} +0 -0
- /package/src/icons/ast/{UnitsCollection.ts → units-collection.ts} +0 -0
- /package/src/icons/ast/{UnitsCounter.ts → units-counter.ts} +0 -0
- /package/src/icons/ast/{UnitsDate.ts → units-date.ts} +0 -0
- /package/src/icons/ast/{UnitsDbBadgeAbbr.ts → units-db-badge-abbr.ts} +0 -0
- /package/src/icons/ast/{UnitsDbBadgeFull.ts → units-db-badge-full.ts} +0 -0
- /package/src/icons/ast/{UnitsDbIcon.ts → units-db-icon.ts} +0 -0
- /package/src/icons/ast/{UnitsFieldIconButton.ts → units-field-icon-button.ts} +0 -0
- /package/src/icons/ast/{UnitsField.ts → units-field.ts} +0 -0
- /package/src/icons/ast/{UnitsInput.ts → units-input.ts} +0 -0
- /package/src/icons/ast/{UnitsProgressBar.ts → units-progress-bar.ts} +0 -0
- /package/src/icons/ast/{UnitsRichText.ts → units-rich-text.ts} +0 -0
- /package/src/icons/ast/{UnitsSnippet.ts → units-snippet.ts} +0 -0
- /package/src/icons/ast/{Unlink.ts → unlink.ts} +0 -0
- /package/src/icons/ast/{UnlockFilled.ts → unlock-filled.ts} +0 -0
- /package/src/icons/ast/{UnlockOutline.ts → unlock-outline.ts} +0 -0
- /package/src/icons/ast/{Upgrade.ts → upgrade.ts} +0 -0
- /package/src/icons/ast/{UsbFlashDrive.ts → usb-flash-drive.ts} +0 -0
- /package/src/icons/ast/{UserCheck.ts → user-check.ts} +0 -0
- /package/src/icons/ast/{UserGroupRemove.ts → user-group-remove.ts} +0 -0
- /package/src/icons/ast/{UserGroup.ts → user-group.ts} +0 -0
- /package/src/icons/ast/{UserRole.ts → user-role.ts} +0 -0
- /package/src/icons/ast/{UserX.ts → user-x.ts} +0 -0
- /package/src/icons/ast/{ValueEdit.ts → value-edit.ts} +0 -0
- /package/src/icons/ast/{ViewAi.ts → view-ai.ts} +0 -0
- /package/src/icons/ast/{ViewBoard.ts → view-board.ts} +0 -0
- /package/src/icons/ast/{ViewCalendar.ts → view-calendar.ts} +0 -0
- /package/src/icons/ast/{ViewCanvas.ts → view-canvas.ts} +0 -0
- /package/src/icons/ast/{ViewChart.ts → view-chart.ts} +0 -0
- /package/src/icons/ast/{ViewDashboard.ts → view-dashboard.ts} +0 -0
- /package/src/icons/ast/{ViewDetails.ts → view-details.ts} +0 -0
- /package/src/icons/ast/{ViewDocument.ts → view-document.ts} +0 -0
- /package/src/icons/ast/{ViewEmbed.ts → view-embed.ts} +0 -0
- /package/src/icons/ast/{ViewFeed.ts → view-feed.ts} +0 -0
- /package/src/icons/ast/{ViewForm.ts → view-form.ts} +0 -0
- /package/src/icons/ast/{ViewGallery.ts → view-gallery.ts} +0 -0
- /package/src/icons/ast/{ViewGantt.ts → view-gantt.ts} +0 -0
- /package/src/icons/ast/{ViewList.ts → view-list.ts} +0 -0
- /package/src/icons/ast/{ViewMap.ts → view-map.ts} +0 -0
- /package/src/icons/ast/{ViewPage.ts → view-page.ts} +0 -0
- /package/src/icons/ast/{ViewTable.ts → view-table.ts} +0 -0
- /package/src/icons/ast/{ViewTimeline.ts → view-timeline.ts} +0 -0
- /package/src/icons/ast/{Views.ts → views.ts} +0 -0
- /package/src/icons/ast/{WarningTriangleFilled.ts → warning-triangle-filled.ts} +0 -0
- /package/src/icons/ast/{WarningTriangle.ts → warning-triangle.ts} +0 -0
- /package/src/icons/ast/{Warning.ts → warning.ts} +0 -0
- /package/src/icons/ast/{Webhooks.ts → webhooks.ts} +0 -0
- /package/src/icons/ast/{Windows.ts → windows.ts} +0 -0
- /package/src/icons/ast/{WorkspaceMap.ts → workspace-map.ts} +0 -0
- /package/src/icons/ast/{Youtube.ts → youtube.ts} +0 -0
- /package/src/icons/ast/{ZoomIn.ts → zoom-in.ts} +0 -0
- /package/src/icons/ast/{ZoomOut.ts → zoom-out.ts} +0 -0
- /package/src/{is-iOS.ts → is-ios.ts} +0 -0
|
@@ -1,1845 +1,1826 @@
|
|
|
1
1
|
/* eslint-disable max-lines */
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import {test, expect} from "vitest";
|
|
3
|
+
|
|
4
4
|
import {withColorDiff} from "./diff-colors";
|
|
5
|
+
import {colors} from "./testkit";
|
|
6
|
+
import {warmArchPalette} from "./warm-arch";
|
|
5
7
|
|
|
6
8
|
test("snapshot", () => {
|
|
7
9
|
expect(withColorDiff(colors(warmArchPalette))).toMatchInlineSnapshot(`
|
|
8
10
|
{
|
|
9
|
-
"_.canvas.backgrounds[0]": [
|
|
10
|
-
"#
|
|
11
|
-
"#
|
|
11
|
+
"_.canvas.backgrounds[ 0]": [
|
|
12
|
+
"#211C1C | hsl( 0 8% 12%) | oklch(0.23 0.01 18 )",
|
|
13
|
+
"#FDFDFD | hsl(none 0% 99%) | oklch(0.99 0 none)",
|
|
14
|
+
],
|
|
15
|
+
"_.canvas.backgrounds[ 1]": [
|
|
16
|
+
"#7A8086 | hsl( 210 5% 50%) | oklch(0.6 0.01 248 )",
|
|
17
|
+
"#AEB0B3 | hsl( 216 3% 69%) | oklch(0.76 0 258 )",
|
|
18
|
+
],
|
|
19
|
+
"_.canvas.backgrounds[ 2]": [
|
|
20
|
+
"#D65A3B | hsl( 12 65% 54%) | oklch(0.62 0.16 35 )",
|
|
21
|
+
"#AD5B42 | hsl( 14 45% 47%) | oklch(0.56 0.11 38 )",
|
|
22
|
+
],
|
|
23
|
+
"_.canvas.backgrounds[ 3]": [
|
|
24
|
+
"#EFAD42 | hsl( 37 84% 60%) | oklch(0.79 0.14 76 )",
|
|
25
|
+
"#D4A25C | hsl( 35 58% 60%) | oklch(0.74 0.11 74 )",
|
|
26
|
+
],
|
|
27
|
+
"_.canvas.backgrounds[ 4]": [
|
|
28
|
+
"#F4CE4A | hsl( 47 89% 62%) | oklch(0.86 0.15 93 )",
|
|
29
|
+
"#DCC56D | hsl( 48 61% 65%) | oklch(0.82 0.11 95 )",
|
|
30
|
+
],
|
|
31
|
+
"_.canvas.backgrounds[ 5]": [
|
|
32
|
+
"#49A75E | hsl( 133 39% 47%) | oklch(0.65 0.14 149 )",
|
|
33
|
+
"#5E885F | hsl( 121 18% 45%) | oklch(0.58 0.08 145 )",
|
|
34
|
+
],
|
|
35
|
+
"_.canvas.backgrounds[ 6]": [
|
|
36
|
+
"#5E98E7 | hsl( 215 74% 64%) | oklch(0.67 0.13 257 )",
|
|
37
|
+
"#668CCC | hsl( 218 50% 60%) | oklch(0.64 0.11 260 )",
|
|
38
|
+
],
|
|
39
|
+
"_.canvas.backgrounds[ 7]": [
|
|
40
|
+
"#9552E9 | hsl( 267 77% 62%) | oklch(0.59 0.22 300 )",
|
|
41
|
+
"#7649CE | hsl( 260 58% 55%) | oklch(0.53 0.2 294 )",
|
|
42
|
+
],
|
|
43
|
+
"_.canvas.backgrounds[ 8]": [
|
|
44
|
+
"#F491D7 | hsl( 318 82% 76%) | oklch(0.78 0.15 339 )",
|
|
45
|
+
"#C67AB1 | hsl( 317 40% 63%) | oklch(0.68 0.12 338 )",
|
|
46
|
+
],
|
|
47
|
+
"_.canvas.backgrounds[ 9]": [
|
|
48
|
+
"#FDFDFD | hsl(none 0% 99%) | oklch(0.99 0 none)",
|
|
49
|
+
"#211C1C | hsl( 0 8% 12%) | oklch(0.23 0.01 18 )",
|
|
12
50
|
],
|
|
13
51
|
"_.canvas.backgrounds[10]": [
|
|
14
|
-
"#
|
|
15
|
-
"#
|
|
52
|
+
"#CFD3D7 | hsl( 210 9% 83%) | oklch(0.86 0.01 248 )",
|
|
53
|
+
"#DFE6EC | hsl( 208 25% 90%) | oklch(0.92 0.01 244 )",
|
|
16
54
|
],
|
|
17
55
|
"_.canvas.backgrounds[11]": [
|
|
18
|
-
"#
|
|
19
|
-
"#
|
|
56
|
+
"#E6E9EB | hsl( 204 11% 91%) | oklch(0.93 0 237 )",
|
|
57
|
+
"#F2F3F5 | hsl( 220 13% 95%) | oklch(0.96 0 265 )",
|
|
20
58
|
],
|
|
21
59
|
"_.canvas.backgrounds[12]": [
|
|
22
|
-
"#
|
|
23
|
-
"#
|
|
60
|
+
"#F8C6C2 | hsl( 4 79% 87%) | oklch(0.87 0.06 24 )",
|
|
61
|
+
"#F0D7D3 | hsl( 8 49% 88%) | oklch(0.9 0.03 29 )",
|
|
24
62
|
],
|
|
25
63
|
"_.canvas.backgrounds[13]": [
|
|
26
|
-
"#
|
|
27
|
-
"#
|
|
64
|
+
"#F7D29F | hsl( 35 85% 80%) | oklch(0.88 0.08 75 )",
|
|
65
|
+
"#F4E0CD | hsl( 29 64% 88%) | oklch(0.92 0.03 66 )",
|
|
28
66
|
],
|
|
29
67
|
"_.canvas.backgrounds[14]": [
|
|
30
|
-
"#
|
|
31
|
-
"#
|
|
68
|
+
"#FDE8A5 | hsl( 46 96% 82%) | oklch(0.93 0.09 93 )",
|
|
69
|
+
"#F1E7B1 | hsl( 51 70% 82%) | oklch(0.92 0.07 99 )",
|
|
32
70
|
],
|
|
33
71
|
"_.canvas.backgrounds[15]": [
|
|
34
|
-
"#
|
|
35
|
-
"#
|
|
72
|
+
"#B3F2C5 | hsl( 137 71% 83%) | oklch(0.91 0.09 153 )",
|
|
73
|
+
"#CFEFDC | hsl( 144 50% 87%) | oklch(0.92 0.04 159 )",
|
|
36
74
|
],
|
|
37
75
|
"_.canvas.backgrounds[16]": [
|
|
38
|
-
"#
|
|
39
|
-
"#
|
|
76
|
+
"#C4E5FF | hsl( 206 100% 88%) | oklch(0.91 0.05 242 )",
|
|
77
|
+
"#D5E0F9 | hsl( 222 75% 91%) | oklch(0.91 0.04 267 )",
|
|
40
78
|
],
|
|
41
79
|
"_.canvas.backgrounds[17]": [
|
|
42
|
-
"#
|
|
43
|
-
"#
|
|
80
|
+
"#E4CEFC | hsl( 269 88% 90%) | oklch(0.88 0.07 307 )",
|
|
81
|
+
"#DCD7F4 | hsl( 250 57% 90%) | oklch(0.89 0.04 293 )",
|
|
44
82
|
],
|
|
45
83
|
"_.canvas.backgrounds[18]": [
|
|
46
|
-
"#
|
|
47
|
-
"#
|
|
84
|
+
"#FFD9F3 | hsl( 319 100% 93%) | oklch(0.92 0.05 338 )",
|
|
85
|
+
"#F0D6EA | hsl( 314 46% 89%) | oklch(0.9 0.04 334 )",
|
|
48
86
|
],
|
|
49
|
-
"_.canvas.
|
|
50
|
-
"#
|
|
51
|
-
"#
|
|
87
|
+
"_.canvas.sections[ 0]": [
|
|
88
|
+
"#DEDADA | hsl( 0 6% 86%) | oklch(0.89 0 17 )",
|
|
89
|
+
"#312C2C | hsl( 0 5% 18%) | oklch(0.3 0.01 18 )",
|
|
52
90
|
],
|
|
53
|
-
"_.canvas.
|
|
54
|
-
"#
|
|
55
|
-
"#
|
|
91
|
+
"_.canvas.sections[ 1]": [
|
|
92
|
+
"#EAE9E9 | hsl( 0 2% 92%) | oklch(0.93 0 17 )",
|
|
93
|
+
"#3E3838 | hsl( 0 5% 23%) | oklch(0.35 0.01 18 )",
|
|
56
94
|
],
|
|
57
|
-
"_.canvas.
|
|
58
|
-
"#
|
|
59
|
-
"#
|
|
95
|
+
"_.canvas.sections[ 2]": [
|
|
96
|
+
"#FEE1E0 | hsl( 2 94% 94%) | oklch(0.93 0.03 20 )",
|
|
97
|
+
"#834D4B | hsl( 2 27% 40%) | oklch(0.48 0.07 22 )",
|
|
60
98
|
],
|
|
61
|
-
"_.canvas.
|
|
62
|
-
"#
|
|
63
|
-
"#
|
|
99
|
+
"_.canvas.sections[ 3]": [
|
|
100
|
+
"#FEEAD6 | hsl( 30 95% 92%) | oklch(0.95 0.03 67 )",
|
|
101
|
+
"#886C4B | hsl( 32 29% 41%) | oklch(0.55 0.06 71 )",
|
|
64
102
|
],
|
|
65
|
-
"_.canvas.
|
|
66
|
-
"#
|
|
67
|
-
"#
|
|
103
|
+
"_.canvas.sections[ 4]": [
|
|
104
|
+
"#FFF3D6 | hsl( 42 100% 92%) | oklch(0.97 0.04 88 )",
|
|
105
|
+
"#887D4E | hsl( 49 27% 42%) | oklch(0.59 0.07 97 )",
|
|
68
106
|
],
|
|
69
|
-
"_.canvas.
|
|
70
|
-
"#
|
|
71
|
-
"#
|
|
107
|
+
"_.canvas.sections[ 5]": [
|
|
108
|
+
"#DDF8E2 | hsl( 131 66% 92%) | oklch(0.95 0.04 151 )",
|
|
109
|
+
"#538860 | hsl( 135 24% 43%) | oklch(0.58 0.08 151 )",
|
|
72
110
|
],
|
|
73
|
-
"_.canvas.
|
|
74
|
-
"#
|
|
75
|
-
"#
|
|
111
|
+
"_.canvas.sections[ 6]": [
|
|
112
|
+
"#DDF1FF | hsl( 205 100% 93%) | oklch(0.95 0.03 238 )",
|
|
113
|
+
"#516786 | hsl( 215 25% 42%) | oklch(0.51 0.06 257 )",
|
|
76
114
|
],
|
|
77
|
-
"_.canvas.
|
|
78
|
-
"#
|
|
79
|
-
"#
|
|
115
|
+
"_.canvas.sections[ 7]": [
|
|
116
|
+
"#EAE1FE | hsl( 259 94% 94%) | oklch(0.93 0.04 300 )",
|
|
117
|
+
"#594983 | hsl( 257 28% 40%) | oklch(0.45 0.09 295 )",
|
|
80
118
|
],
|
|
81
|
-
"_.canvas.
|
|
82
|
-
"#
|
|
83
|
-
"#
|
|
119
|
+
"_.canvas.sections[ 8]": [
|
|
120
|
+
"#FFD8F2 | hsl( 320 100% 92%) | oklch(0.92 0.05 338 )",
|
|
121
|
+
"#864F73 | hsl( 321 26% 42%) | oklch(0.5 0.09 341 )",
|
|
84
122
|
],
|
|
85
|
-
"_.canvas.sections[
|
|
86
|
-
"#
|
|
87
|
-
"#
|
|
123
|
+
"_.canvas.sections[ 9]": [
|
|
124
|
+
"#FFFFFF | hsl(none 0% 100%) | oklch(1 0 none)",
|
|
125
|
+
"#FFFFFF | hsl(none 0% 100%) | oklch(1 0 none)",
|
|
88
126
|
],
|
|
89
127
|
"_.canvas.sections[10]": [
|
|
90
|
-
"#
|
|
91
|
-
"#
|
|
128
|
+
"#F4F4F4 | hsl(none 0% 96%) | oklch(0.97 0 none)",
|
|
129
|
+
"#383332 | hsl( 10 6% 21%) | oklch(0.33 0.01 31 )",
|
|
92
130
|
],
|
|
93
131
|
"_.canvas.sections[11]": [
|
|
94
|
-
"#
|
|
95
|
-
"#
|
|
132
|
+
"#F9F9F9 | hsl(none 0% 98%) | oklch(0.98 0 none)",
|
|
133
|
+
"#4F4949 | hsl( 0 4% 30%) | oklch(0.41 0.01 17 )",
|
|
96
134
|
],
|
|
97
135
|
"_.canvas.sections[12]": [
|
|
98
|
-
"#
|
|
99
|
-
"#
|
|
136
|
+
"#FFF5F5 | hsl( 0 100% 98%) | oklch(0.98 0.01 17 )",
|
|
137
|
+
"#583632 | hsl( 6 28% 27%) | oklch(0.37 0.05 27 )",
|
|
100
138
|
],
|
|
101
139
|
"_.canvas.sections[13]": [
|
|
102
|
-
"#
|
|
103
|
-
"#
|
|
140
|
+
"#FFF7F0 | hsl( 28 100% 97%) | oklch(0.98 0.01 64 )",
|
|
141
|
+
"#513C2B | hsl( 27 31% 24%) | oklch(0.37 0.04 60 )",
|
|
104
142
|
],
|
|
105
143
|
"_.canvas.sections[14]": [
|
|
106
|
-
"#
|
|
107
|
-
"#
|
|
144
|
+
"#FFFBF0 | hsl( 44 100% 97%) | oklch(0.99 0.02 90 )",
|
|
145
|
+
"#534D30 | hsl( 50 27% 26%) | oklch(0.42 0.04 98 )",
|
|
108
146
|
],
|
|
109
147
|
"_.canvas.sections[15]": [
|
|
110
|
-
"#
|
|
111
|
-
"#
|
|
148
|
+
"#EBFFEE | hsl( 129 100% 96%) | oklch(0.98 0.03 150 )",
|
|
149
|
+
"#26442F | hsl( 138 28% 21%) | oklch(0.36 0.05 153 )",
|
|
112
150
|
],
|
|
113
151
|
"_.canvas.sections[16]": [
|
|
114
|
-
"#
|
|
115
|
-
"#
|
|
152
|
+
"#F5FBFF | hsl( 204 100% 98%) | oklch(0.98 0.01 237 )",
|
|
153
|
+
"#464E5B | hsl( 217 13% 32%) | oklch(0.42 0.02 260 )",
|
|
116
154
|
],
|
|
117
155
|
"_.canvas.sections[17]": [
|
|
118
|
-
"#
|
|
119
|
-
"#
|
|
156
|
+
"#F8F5FF | hsl( 258 100% 98%) | oklch(0.98 0.01 300 )",
|
|
157
|
+
"#3F3B4A | hsl( 256 11% 26%) | oklch(0.36 0.03 297 )",
|
|
120
158
|
],
|
|
121
159
|
"_.canvas.sections[18]": [
|
|
122
|
-
"#
|
|
123
|
-
"#
|
|
160
|
+
"#FFF1FA | hsl( 321 100% 97%) | oklch(0.97 0.02 339 )",
|
|
161
|
+
"#382730 | hsl( 328 18% 19%) | oklch(0.3 0.03 346 )",
|
|
124
162
|
],
|
|
125
|
-
"_.canvas.
|
|
126
|
-
"#
|
|
127
|
-
"#
|
|
163
|
+
"_.canvas.stickers[ 0]": [
|
|
164
|
+
"#B3BDCE | hsl( 218 22% 75%) | oklch(0.8 0.03 261 )",
|
|
165
|
+
"#919BA9 | hsl( 215 12% 62%) | oklch(0.69 0.02 257 )",
|
|
128
166
|
],
|
|
129
|
-
"_.canvas.
|
|
130
|
-
"#
|
|
131
|
-
"#
|
|
167
|
+
"_.canvas.stickers[ 1]": [
|
|
168
|
+
"#F1AEA4 | hsl( 8 73% 79%) | oklch(0.81 0.08 28 )",
|
|
169
|
+
"#CA8C82 | hsl( 8 40% 65%) | oklch(0.7 0.08 29 )",
|
|
132
170
|
],
|
|
133
|
-
"_.canvas.
|
|
134
|
-
"#
|
|
135
|
-
"#
|
|
171
|
+
"_.canvas.stickers[ 2]": [
|
|
172
|
+
"#F6C679 | hsl( 37 87% 72%) | oklch(0.85 0.11 78 )",
|
|
173
|
+
"#D3AA65 | hsl( 38 56% 61%) | oklch(0.76 0.1 79 )",
|
|
136
174
|
],
|
|
137
|
-
"_.canvas.
|
|
138
|
-
"#
|
|
139
|
-
"#
|
|
175
|
+
"_.canvas.stickers[ 3]": [
|
|
176
|
+
"#F9D970 | hsl( 46 92% 71%) | oklch(0.89 0.13 93 )",
|
|
177
|
+
"#CBB765 | hsl( 48 50% 60%) | oklch(0.78 0.11 96 )",
|
|
140
178
|
],
|
|
141
|
-
"_.canvas.
|
|
142
|
-
"#
|
|
143
|
-
"#
|
|
179
|
+
"_.canvas.stickers[ 4]": [
|
|
180
|
+
"#93DAA3 | hsl( 134 49% 72%) | oklch(0.83 0.1 151 )",
|
|
181
|
+
"#7AB388 | hsl( 135 27% 59%) | oklch(0.72 0.09 151 )",
|
|
144
182
|
],
|
|
145
|
-
"_.canvas.
|
|
146
|
-
"#
|
|
147
|
-
"#
|
|
183
|
+
"_.canvas.stickers[ 5]": [
|
|
184
|
+
"#96CEFE | hsl( 208 98% 79%) | oklch(0.83 0.09 245 )",
|
|
185
|
+
"#7AB2DE | hsl( 206 60% 67%) | oklch(0.74 0.09 243 )",
|
|
148
186
|
],
|
|
149
|
-
"_.canvas.
|
|
150
|
-
"#
|
|
151
|
-
"#
|
|
187
|
+
"_.canvas.stickers[ 6]": [
|
|
188
|
+
"#D9BCF9 | hsl( 269 84% 86%) | oklch(0.84 0.09 306 )",
|
|
189
|
+
"#B296CE | hsl( 270 36% 70%) | oklch(0.72 0.09 307 )",
|
|
152
190
|
],
|
|
153
|
-
"_.canvas.
|
|
154
|
-
"#
|
|
155
|
-
"#
|
|
191
|
+
"_.canvas.stickers[ 7]": [
|
|
192
|
+
"#FDC3F2 | hsl( 311 94% 88%) | oklch(0.88 0.09 333 )",
|
|
193
|
+
"#D4A5C3 | hsl( 322 35% 74%) | oklch(0.77 0.07 340 )",
|
|
156
194
|
],
|
|
157
|
-
"_.canvas.
|
|
158
|
-
"#
|
|
159
|
-
"#
|
|
195
|
+
"_.canvas.stickers[ 8]": [
|
|
196
|
+
"#F2F3F5 | hsl( 220 13% 95%) | oklch(0.96 0 265 )",
|
|
197
|
+
"#CFD0D1 | hsl( 210 2% 82%) | oklch(0.86 0 248 )",
|
|
160
198
|
],
|
|
161
|
-
"_.canvas.stickers[
|
|
162
|
-
"#
|
|
163
|
-
"#
|
|
199
|
+
"_.canvas.stickers[ 9]": [
|
|
200
|
+
"#FEE5E2 | hsl( 6 93% 94%) | oklch(0.94 0.03 26 )",
|
|
201
|
+
"#D1B3B1 | hsl( 4 26% 76%) | oklch(0.79 0.03 22 )",
|
|
164
202
|
],
|
|
165
203
|
"_.canvas.stickers[10]": [
|
|
166
|
-
"#
|
|
167
|
-
"#
|
|
204
|
+
"#FEE9CF | hsl( 33 96% 90%) | oklch(0.94 0.04 73 )",
|
|
205
|
+
"#D2C0A5 | hsl( 36 33% 74%) | oklch(0.82 0.04 78 )",
|
|
168
206
|
],
|
|
169
207
|
"_.canvas.stickers[11]": [
|
|
170
|
-
"#
|
|
171
|
-
"#
|
|
208
|
+
"#FEF2CE | hsl( 45 96% 90%) | oklch(0.96 0.05 92 )",
|
|
209
|
+
"#D0C7A8 | hsl( 47 30% 74%) | oklch(0.83 0.04 94 )",
|
|
172
210
|
],
|
|
173
211
|
"_.canvas.stickers[12]": [
|
|
174
|
-
"#
|
|
175
|
-
"#
|
|
212
|
+
"#D7FFE5 | hsl( 141 100% 92%) | oklch(0.96 0.05 157 )",
|
|
213
|
+
"#ACCEB5 | hsl( 136 26% 74%) | oklch(0.82 0.05 153 )",
|
|
176
214
|
],
|
|
177
215
|
"_.canvas.stickers[13]": [
|
|
178
|
-
"#
|
|
179
|
-
"#
|
|
216
|
+
"#DCF0FF | hsl( 206 100% 93%) | oklch(0.94 0.03 240 )",
|
|
217
|
+
"#B6CCDE | hsl( 207 38% 79%) | oklch(0.83 0.03 243 )",
|
|
180
218
|
],
|
|
181
219
|
"_.canvas.stickers[14]": [
|
|
182
|
-
"#
|
|
183
|
-
"#
|
|
220
|
+
"#F0E3FF | hsl( 268 100% 95%) | oklch(0.93 0.04 306 )",
|
|
221
|
+
"#C2B2D2 | hsl( 270 26% 76%) | oklch(0.79 0.05 308 )",
|
|
184
222
|
],
|
|
185
223
|
"_.canvas.stickers[15]": [
|
|
186
|
-
"#
|
|
187
|
-
"#
|
|
188
|
-
],
|
|
189
|
-
"_.canvas.stickers[1]": [
|
|
190
|
-
"#ffafa3 | hsl(8 100% 82%) | oklch(0.83 0.1 29) ",
|
|
191
|
-
"#d78c80 | hsl(8 52% 67%) | oklch(0.71 0.09 30) ",
|
|
192
|
-
],
|
|
193
|
-
"_.canvas.stickers[2]": [
|
|
194
|
-
"#ffc470 | hsl(35 100% 72%) | oklch(0.86 0.12 75) ",
|
|
195
|
-
"#dda75b | hsl(35 66% 61%) | oklch(0.76 0.11 74) ",
|
|
196
|
-
],
|
|
197
|
-
"_.canvas.stickers[3]": [
|
|
198
|
-
"#ffd966 | hsl(45 100% 70%) | oklch(0.9 0.14 91) ",
|
|
199
|
-
"#d4b755 | hsl(46 60% 58%) | oklch(0.79 0.12 93) ",
|
|
200
|
-
],
|
|
201
|
-
"_.canvas.stickers[4]": [
|
|
202
|
-
"#85e0a3 | hsl(140 59% 70%) | oklch(0.83 0.12 154) ",
|
|
203
|
-
"#6fb888 | hsl(141 34% 58%) | oklch(0.72 0.1 154) ",
|
|
204
|
-
],
|
|
205
|
-
"_.canvas.stickers[5]": [
|
|
206
|
-
"#80caff | hsl(205 100% 75%) | oklch(0.81 0.11 241) ",
|
|
207
|
-
"#66aedd | hsl(204 64% 63%) | oklch(0.72 0.1 239) ",
|
|
208
|
-
],
|
|
209
|
-
"_.canvas.stickers[6]": [
|
|
210
|
-
"#d9b8ff | hsl(268 100% 86%) | oklch(0.84 0.1 305) ",
|
|
211
|
-
"#b292d4 | hsl(269 43% 70%) | oklch(0.71 0.1 306) ",
|
|
212
|
-
],
|
|
213
|
-
"_.canvas.stickers[7]": [
|
|
214
|
-
"#ffbdf2 | hsl(312 100% 87%) | oklch(0.87 0.1 334) ",
|
|
215
|
-
"#d89fc3 | hsl(322 42% 74%) | oklch(0.77 0.08 341) ",
|
|
216
|
-
],
|
|
217
|
-
"_.canvas.stickers[8]": [
|
|
218
|
-
"#f1f2f4 | hsl(220 12% 95%) | oklch(0.96 0 265) ",
|
|
219
|
-
"#c9cbce | hsl(216 5% 80%) | oklch(0.84 0 258) ",
|
|
220
|
-
],
|
|
221
|
-
"_.canvas.stickers[9]": [
|
|
222
|
-
"#ffe5e2 | hsl(6 100% 94%) | oklch(0.94 0.03 26) ",
|
|
223
|
-
"#d8b5b2 | hsl(5 33% 77%) | oklch(0.8 0.04 24) ",
|
|
224
|
-
],
|
|
225
|
-
"_.cardTypeColors[0]": "#4a4a4a | hsl(none 0% 29%) | oklch(0.41 0 none) ",
|
|
226
|
-
"_.cardTypeColors[10]": "#1fbed3 | hsl(187 74% 47%) | oklch(0.74 0.12 209) ",
|
|
227
|
-
"_.cardTypeColors[11]": "#159789 | hsl(174 76% 34%) | oklch(0.61 0.1 183) ",
|
|
228
|
-
"_.cardTypeColors[12]": "#4faf54 | hsl(123 38% 50%) | oklch(0.67 0.16 145) ",
|
|
229
|
-
"_.cardTypeColors[13]": "#8ec351 | hsl(88 49% 54%) | oklch(0.76 0.16 130) ",
|
|
230
|
-
"_.cardTypeColors[14]": "#fba32f | hsl(34 96% 58%) | oklch(0.79 0.16 68) ",
|
|
231
|
-
"_.cardTypeColors[15]": "#fc551f | hsl(15 97% 55%) | oklch(0.67 0.21 37) ",
|
|
232
|
-
"_.cardTypeColors[16]": "#b04e31 | hsl(14 56% 44%) | oklch(0.54 0.14 37) ",
|
|
233
|
-
"_.cardTypeColors[1]": "#6a849b | hsl(208 20% 51%) | oklch(0.6 0.05 245) ",
|
|
234
|
-
"_.cardTypeColors[2]": "#99a2ab | hsl(210 10% 64%) | oklch(0.71 0.02 248) ",
|
|
235
|
-
"_.cardTypeColors[3]": "#d40915 | hsl(356 92% 43%) | oklch(0.55 0.22 28) ",
|
|
236
|
-
"_.cardTypeColors[4]": "#e72065 | hsl(339 81% 52%) | oklch(0.6 0.23 9) ",
|
|
237
|
-
"_.cardTypeColors[5]": "#9c2baf | hsl(291 61% 43%) | oklch(0.52 0.21 321) ",
|
|
238
|
-
"_.cardTypeColors[6]": "#673db6 | hsl(261 50% 48%) | oklch(0.48 0.18 294) ",
|
|
239
|
-
"_.cardTypeColors[7]": "#3e53b4 | hsl(229 49% 47%) | oklch(0.48 0.16 270) ",
|
|
240
|
-
"_.cardTypeColors[8]": "#2978fb | hsl(217 96% 57%) | oklch(0.6 0.21 260) ",
|
|
241
|
-
"_.cardTypeColors[9]": "#199ee3 | hsl(200 80% 49%) | oklch(0.67 0.15 239) ",
|
|
224
|
+
"#FFE5F7 | hsl( 318 100% 95%) | oklch(0.95 0.04 337 )",
|
|
225
|
+
"#D7BBD0 | hsl( 315 26% 79%) | oklch(0.82 0.04 335 )",
|
|
226
|
+
],
|
|
242
227
|
"accentTextColor": [
|
|
243
|
-
"#
|
|
244
|
-
"#
|
|
228
|
+
"#7D7770 | hsl( 32 5% 46%) | oklch(0.57 0.01 72 )",
|
|
229
|
+
"#847E7C | hsl( 15 3% 50%) | oklch(0.6 0.01 39 )",
|
|
245
230
|
],
|
|
246
231
|
"actionMenuBg": [
|
|
247
|
-
"#
|
|
248
|
-
"#272321 | hsl(20
|
|
232
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
233
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
249
234
|
],
|
|
250
235
|
"actionMenuButtonColor": [
|
|
251
|
-
"#
|
|
252
|
-
"#
|
|
236
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
237
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
253
238
|
],
|
|
254
239
|
"actionMenuButtonHoverColor": [
|
|
255
|
-
"#
|
|
256
|
-
"#272321 | hsl(20
|
|
240
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
241
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
257
242
|
],
|
|
258
243
|
"actionMenuButtonShadow": [
|
|
259
244
|
[
|
|
260
|
-
"0 0 0 1px #
|
|
261
|
-
"0 2px 4px -4px #
|
|
245
|
+
"0 0 0 1px #7D77701A | hsl( 32 5% 46% / 0.1 ) | oklch(0.57 0.01 72 / 0.1 )",
|
|
246
|
+
"0 2px 4px -4px #7D777033 | hsl( 32 5% 46% / 0.2 ) | oklch(0.57 0.01 72 / 0.2 )",
|
|
262
247
|
],
|
|
263
248
|
[
|
|
264
|
-
"0 0 0 1px #
|
|
265
|
-
"0 2px 4px -4px #
|
|
249
|
+
"0 0 0 1px #201B191A | hsl( 17 12% 11% / 0.1 ) | oklch(0.23 0.01 43 / 0.1 )",
|
|
250
|
+
"0 2px 4px -4px #201B1933 | hsl( 17 12% 11% / 0.2 ) | oklch(0.23 0.01 43 / 0.2 )",
|
|
266
251
|
],
|
|
267
252
|
],
|
|
268
253
|
"actionMenuHover": [
|
|
269
|
-
"#
|
|
270
|
-
"#
|
|
254
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
255
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
271
256
|
],
|
|
272
257
|
"actionMenuInnerBg": [
|
|
273
|
-
"#
|
|
274
|
-
"#
|
|
258
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
259
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
275
260
|
],
|
|
276
261
|
"actionMenuInnerHover": [
|
|
277
|
-
"#
|
|
278
|
-
"#37323080 | hsl(17
|
|
262
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
263
|
+
"#37323080 | hsl( 17 7% 20% / 0.5 ) | oklch(0.32 0.01 43 / 0.5 )",
|
|
279
264
|
],
|
|
280
265
|
"actionMenuSeparatorColor": [
|
|
281
|
-
"#
|
|
282
|
-
"#
|
|
266
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
267
|
+
"#FFFDFA26 | hsl( 36 100% 99% / 0.15) | oklch(0.99 0 78 / 0.15)",
|
|
283
268
|
],
|
|
284
269
|
"actionMenuShadow": [
|
|
285
270
|
[
|
|
286
|
-
"0 0 2px 0 #
|
|
287
|
-
"0 4px 6px 0 #
|
|
288
|
-
"0 10px 26px 0 #
|
|
271
|
+
"0 0 2px 0 #635E574D | hsl( 35 6% 36% / 0.3 ) | oklch(0.48 0.01 77 / 0.3 )",
|
|
272
|
+
"0 4px 6px 0 #635E570D | hsl( 35 6% 36% / 0.05) | oklch(0.48 0.01 77 / 0.05)",
|
|
273
|
+
"0 10px 26px 0 #635E5726 | hsl( 35 6% 36% / 0.15) | oklch(0.48 0.01 77 / 0.15)",
|
|
289
274
|
],
|
|
290
275
|
[
|
|
291
|
-
"0 0 0 1px #373230 | hsl(17
|
|
292
|
-
"0 4px 6px 0 #
|
|
293
|
-
"0 10px 26px 0 #
|
|
276
|
+
"0 0 0 1px #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
277
|
+
"0 4px 6px 0 #1A16140D | hsl( 20 13% 9% / 0.05) | oklch(0.2 0.01 48 / 0.05)",
|
|
278
|
+
"0 10px 26px 0 #1A161426 | hsl( 20 13% 9% / 0.15) | oklch(0.2 0.01 48 / 0.15)",
|
|
294
279
|
],
|
|
295
280
|
],
|
|
296
281
|
"active": [
|
|
297
|
-
"#
|
|
298
|
-
"#
|
|
282
|
+
"#D33E4B | hsl( 355 63% 54%) | oklch(0.59 0.18 20 )",
|
|
283
|
+
"#E14E5B | hsl( 355 71% 59%) | oklch(0.63 0.18 19 )",
|
|
299
284
|
],
|
|
300
285
|
"addedDiffTextColor": [
|
|
301
|
-
"#
|
|
302
|
-
"#
|
|
286
|
+
"#00907E | hsl( 173 100% 28%) | oklch(0.59 0.11 180 )",
|
|
287
|
+
"#80C0B4 | hsl( 169 34% 63%) | oklch(0.76 0.07 181 )",
|
|
303
288
|
],
|
|
304
289
|
"allowedDropColor": [
|
|
305
|
-
"#
|
|
306
|
-
"#
|
|
290
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
291
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
307
292
|
],
|
|
308
293
|
"appCardBgColor": [
|
|
309
|
-
"#
|
|
310
|
-
"#
|
|
294
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
295
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
311
296
|
],
|
|
312
297
|
"appCardHoverColor": [
|
|
313
|
-
"#
|
|
314
|
-
"#
|
|
298
|
+
"#FFFBF4F2 | hsl( 38 100% 98% / 0.95) | oklch(0.99 0.01 82 / 0.95)",
|
|
299
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
315
300
|
],
|
|
316
301
|
"appIconBgColor": [
|
|
317
|
-
"#
|
|
318
|
-
"#
|
|
302
|
+
"#FFFBF4E6 | hsl( 38 100% 98% / 0.9 ) | oklch(0.99 0.01 82 / 0.9 )",
|
|
303
|
+
"#FDF6EF80 | hsl( 30 78% 96% / 0.5 ) | oklch(0.98 0.01 68 / 0.5 )",
|
|
319
304
|
],
|
|
320
305
|
"appIconColor": [
|
|
321
|
-
"#
|
|
322
|
-
"#
|
|
306
|
+
"#FDF6EFE6 | hsl( 30 78% 96% / 0.9 ) | oklch(0.98 0.01 68 / 0.9 )",
|
|
307
|
+
"#FDF6EFB3 | hsl( 30 78% 96% / 0.7 ) | oklch(0.98 0.01 68 / 0.7 )",
|
|
323
308
|
],
|
|
324
309
|
"badgeBgColor": [
|
|
325
|
-
"#
|
|
326
|
-
"#
|
|
310
|
+
"#79767133 | hsl( 38 3% 46% / 0.2 ) | oklch(0.57 0.01 81 / 0.2 )",
|
|
311
|
+
"#79767133 | hsl( 38 3% 46% / 0.2 ) | oklch(0.57 0.01 81 / 0.2 )",
|
|
327
312
|
],
|
|
328
313
|
"blackColor": [
|
|
329
|
-
"#
|
|
330
|
-
"#
|
|
314
|
+
"#1F1A18 | hsl( 17 13% 11%) | oklch(0.22 0.01 43 )",
|
|
315
|
+
"#1F1A18 | hsl( 17 13% 11%) | oklch(0.22 0.01 43 )",
|
|
331
316
|
],
|
|
332
317
|
"boardAxisBgHover": [
|
|
333
|
-
"#
|
|
334
|
-
"#
|
|
318
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
319
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
335
320
|
],
|
|
336
321
|
"boardBg": [
|
|
337
|
-
"#
|
|
338
|
-
"#
|
|
322
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
323
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
339
324
|
],
|
|
340
325
|
"boardBgWithOpacity80": [
|
|
341
|
-
"#
|
|
342
|
-
"#
|
|
326
|
+
"#FFFBF4CC | hsl( 38 100% 98% / 0.8 ) | oklch(0.99 0.01 82 / 0.8 )",
|
|
327
|
+
"#1A1614CC | hsl( 20 13% 9% / 0.8 ) | oklch(0.2 0.01 48 / 0.8 )",
|
|
343
328
|
],
|
|
344
329
|
"borderBlockQuote": [
|
|
345
|
-
"3px solid #
|
|
346
|
-
"3px solid #
|
|
330
|
+
"3px solid #635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
331
|
+
"3px solid #A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
347
332
|
],
|
|
348
333
|
"borderMedia": [
|
|
349
|
-
"0.5px solid #00000024 | hsl(none
|
|
350
|
-
"0.5px solid #00000024 | hsl(none
|
|
334
|
+
"0.5px solid #00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
335
|
+
"0.5px solid #00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
351
336
|
],
|
|
352
337
|
"borderSeparator": [
|
|
353
|
-
"0.5px solid #
|
|
354
|
-
"0.5px solid #
|
|
338
|
+
"0.5px solid #1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
339
|
+
"0.5px solid #FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
355
340
|
],
|
|
356
341
|
"borderSeparatorDimmed": [
|
|
357
|
-
"0.5px solid #
|
|
358
|
-
"0.5px solid #
|
|
342
|
+
"0.5px solid #1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
343
|
+
"0.5px solid #FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
359
344
|
],
|
|
360
345
|
"borderSeparatorMedium": [
|
|
361
|
-
"0.5px solid #
|
|
362
|
-
"0.5px solid #
|
|
346
|
+
"0.5px solid #1F1A1826 | hsl( 17 13% 11% / 0.15) | oklch(0.22 0.01 43 / 0.15)",
|
|
347
|
+
"0.5px solid #FFFDFA26 | hsl( 36 100% 99% / 0.15) | oklch(0.99 0 78 / 0.15)",
|
|
363
348
|
],
|
|
364
349
|
"borderSeparatorStrong": [
|
|
365
|
-
"0.5px solid #
|
|
366
|
-
"0.5px solid #
|
|
350
|
+
"0.5px solid #1F1A1840 | hsl( 17 13% 11% / 0.25) | oklch(0.22 0.01 43 / 0.25)",
|
|
351
|
+
"0.5px solid #FFFDFA40 | hsl( 36 100% 99% / 0.25) | oklch(0.99 0 78 / 0.25)",
|
|
367
352
|
],
|
|
368
353
|
"borderSolidCommentBubble": [
|
|
369
|
-
"1px solid #
|
|
370
|
-
"1px solid #373230 | hsl(17
|
|
354
|
+
"1px solid #FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
355
|
+
"1px solid #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
371
356
|
],
|
|
372
357
|
"borderSolidFilterGroup": [
|
|
373
|
-
"1px solid #
|
|
374
|
-
"1px solid #
|
|
358
|
+
"1px solid #0000000D | hsl(none 0% 0% / 0.05) | oklch(0 0 none / 0.05)",
|
|
359
|
+
"1px solid #FFFFFE08 | hsl( 60 100% 100% / 0.03) | oklch(1 0 106 / 0.03)",
|
|
375
360
|
],
|
|
376
361
|
"borderSolidGrid": [
|
|
377
|
-
"1px solid #
|
|
378
|
-
"1px solid #373230 | hsl(17
|
|
362
|
+
"1px solid #EDE7E0 | hsl( 32 27% 90%) | oklch(0.93 0.01 72 )",
|
|
363
|
+
"1px solid #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
379
364
|
],
|
|
380
365
|
"borderSolidMedia": [
|
|
381
|
-
"1px solid #00000024 | hsl(none
|
|
382
|
-
"1px solid #00000024 | hsl(none
|
|
366
|
+
"1px solid #00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
367
|
+
"1px solid #00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
383
368
|
],
|
|
384
369
|
"borderSolidOutlineNeutral": [
|
|
385
|
-
"1px solid #
|
|
386
|
-
"1px solid #
|
|
370
|
+
"1px solid #CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
371
|
+
"1px solid #413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
387
372
|
],
|
|
388
373
|
"borderSolidSeparator": [
|
|
389
|
-
"1px solid #
|
|
390
|
-
"1px solid #
|
|
374
|
+
"1px solid #1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
375
|
+
"1px solid #FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
391
376
|
],
|
|
392
377
|
"borderSolidSeparatorDimmed": [
|
|
393
|
-
"1px solid #
|
|
394
|
-
"1px solid #
|
|
378
|
+
"1px solid #1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
379
|
+
"1px solid #FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
395
380
|
],
|
|
396
381
|
"buttonColor": [
|
|
397
|
-
"#
|
|
398
|
-
"#
|
|
382
|
+
"#7D7770 | hsl( 32 5% 46%) | oklch(0.57 0.01 72 )",
|
|
383
|
+
"#847E7C | hsl( 15 3% 50%) | oklch(0.6 0.01 39 )",
|
|
399
384
|
],
|
|
400
385
|
"buttonPrimaryColor": [
|
|
401
|
-
"#
|
|
402
|
-
"#
|
|
386
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
387
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
403
388
|
],
|
|
404
389
|
"buttonPrimaryTextColor": [
|
|
405
|
-
"#
|
|
406
|
-
"#
|
|
390
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
391
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
407
392
|
],
|
|
408
393
|
"cardBg": [
|
|
409
|
-
"#
|
|
410
|
-
"#373230 | hsl(17
|
|
394
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
395
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
411
396
|
],
|
|
412
397
|
"cellBackgroundColor": [
|
|
413
|
-
"#
|
|
414
|
-
"#
|
|
398
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
399
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
415
400
|
],
|
|
416
401
|
"cellBackgroundHoverColor": [
|
|
417
|
-
"#
|
|
418
|
-
"#
|
|
402
|
+
"#E8E2DB4D | hsl( 32 22% 88% / 0.3 ) | oklch(0.92 0.01 72 / 0.3 )",
|
|
403
|
+
"#3732304D | hsl( 17 7% 20% / 0.3 ) | oklch(0.32 0.01 43 / 0.3 )",
|
|
419
404
|
],
|
|
420
405
|
"cellBorderColor": [
|
|
421
|
-
"#
|
|
422
|
-
"#
|
|
406
|
+
"#CCC6BF80 | hsl( 32 11% 77% / 0.5 ) | oklch(0.83 0.01 72 / 0.5 )",
|
|
407
|
+
"#756F6D80 | hsl( 15 4% 44% / 0.5 ) | oklch(0.55 0.01 39 / 0.5 )",
|
|
423
408
|
],
|
|
424
409
|
"cellPinnedBorderColor": [
|
|
425
|
-
"#
|
|
426
|
-
"#
|
|
410
|
+
"#CCC6BFB3 | hsl( 32 11% 77% / 0.7 ) | oklch(0.83 0.01 72 / 0.7 )",
|
|
411
|
+
"#756F6DB3 | hsl( 15 4% 44% / 0.7 ) | oklch(0.55 0.01 39 / 0.7 )",
|
|
427
412
|
],
|
|
428
413
|
"checkboxColor": [
|
|
429
|
-
"#
|
|
430
|
-
"#
|
|
414
|
+
"#1B1611B3 | hsl( 30 23% 9% / 0.7 ) | oklch(0.2 0.01 67 / 0.7 )",
|
|
415
|
+
"#E0D4CEB3 | hsl( 20 22% 84% / 0.7 ) | oklch(0.88 0.02 49 / 0.7 )",
|
|
431
416
|
],
|
|
432
417
|
"codeBgColor": [
|
|
433
|
-
"#
|
|
434
|
-
"#
|
|
418
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
419
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
435
420
|
],
|
|
436
421
|
"codeBlockBgColor": [
|
|
437
|
-
"#
|
|
438
|
-
"#
|
|
422
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
423
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
439
424
|
],
|
|
440
425
|
"codeColor": [
|
|
441
|
-
"#
|
|
442
|
-
"#
|
|
426
|
+
"#D33E4B | hsl( 355 63% 54%) | oklch(0.59 0.18 20 )",
|
|
427
|
+
"#ED9696 | hsl( 0 71% 76%) | oklch(0.76 0.11 20 )",
|
|
443
428
|
],
|
|
444
429
|
"colorAI": [
|
|
445
|
-
"#
|
|
446
|
-
"#
|
|
430
|
+
"#9B6FC1 | hsl( 272 40% 60%) | oklch(0.62 0.13 308 )",
|
|
431
|
+
"#8056A3 | hsl( 273 31% 49%) | oklch(0.53 0.12 308 )",
|
|
447
432
|
],
|
|
448
433
|
"colorAccent": [
|
|
449
|
-
"#
|
|
450
|
-
"#
|
|
434
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
435
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
451
436
|
],
|
|
452
437
|
"colorAccentBgBold": [
|
|
453
|
-
"#
|
|
454
|
-
"#
|
|
438
|
+
"#BD5F0059 | hsl( 30 100% 37% / 0.35) | oklch(0.59 0.15 54 / 0.35)",
|
|
439
|
+
"#BD5F0059 | hsl( 30 100% 37% / 0.35) | oklch(0.59 0.15 54 / 0.35)",
|
|
455
440
|
],
|
|
456
441
|
"colorAccentBgMedium": [
|
|
457
|
-
"#
|
|
458
|
-
"#
|
|
442
|
+
"#BD5F0033 | hsl( 30 100% 37% / 0.2 ) | oklch(0.59 0.15 54 / 0.2 )",
|
|
443
|
+
"#BD5F0033 | hsl( 30 100% 37% / 0.2 ) | oklch(0.59 0.15 54 / 0.2 )",
|
|
459
444
|
],
|
|
460
445
|
"colorAccentBgMild": [
|
|
461
|
-
"#
|
|
462
|
-
"#
|
|
446
|
+
"#BD5F0026 | hsl( 30 100% 37% / 0.15) | oklch(0.59 0.15 54 / 0.15)",
|
|
447
|
+
"#BD5F0026 | hsl( 30 100% 37% / 0.15) | oklch(0.59 0.15 54 / 0.15)",
|
|
463
448
|
],
|
|
464
449
|
"colorAccentBgStrong": [
|
|
465
|
-
"#
|
|
466
|
-
"#
|
|
450
|
+
"#BD5F004D | hsl( 30 100% 37% / 0.3 ) | oklch(0.59 0.15 54 / 0.3 )",
|
|
451
|
+
"#BD5F004D | hsl( 30 100% 37% / 0.3 ) | oklch(0.59 0.15 54 / 0.3 )",
|
|
467
452
|
],
|
|
468
453
|
"colorAccentBgSubtle": [
|
|
469
|
-
"#
|
|
470
|
-
"#
|
|
454
|
+
"#BD5F001A | hsl( 30 100% 37% / 0.1 ) | oklch(0.59 0.15 54 / 0.1 )",
|
|
455
|
+
"#BD5F001A | hsl( 30 100% 37% / 0.1 ) | oklch(0.59 0.15 54 / 0.1 )",
|
|
471
456
|
],
|
|
472
457
|
"colorAccentBgVivid": [
|
|
473
|
-
"#
|
|
474
|
-
"#
|
|
458
|
+
"#BD5F0099 | hsl( 30 100% 37% / 0.6 ) | oklch(0.59 0.15 54 / 0.6 )",
|
|
459
|
+
"#BD5F0099 | hsl( 30 100% 37% / 0.6 ) | oklch(0.59 0.15 54 / 0.6 )",
|
|
475
460
|
],
|
|
476
461
|
"colorAccentSolid": [
|
|
477
|
-
"#
|
|
478
|
-
"#
|
|
462
|
+
"#BD5F00CC | hsl( 30 100% 37% / 0.8 ) | oklch(0.59 0.15 54 / 0.8 )",
|
|
463
|
+
"#BD5F00CC | hsl( 30 100% 37% / 0.8 ) | oklch(0.59 0.15 54 / 0.8 )",
|
|
479
464
|
],
|
|
480
465
|
"colorAccentStroke": [
|
|
481
|
-
"#
|
|
482
|
-
"#
|
|
466
|
+
"#BD5F0040 | hsl( 30 100% 37% / 0.25) | oklch(0.59 0.15 54 / 0.25)",
|
|
467
|
+
"#BD5F0040 | hsl( 30 100% 37% / 0.25) | oklch(0.59 0.15 54 / 0.25)",
|
|
483
468
|
],
|
|
484
469
|
"colorAccentStrokeFocus": [
|
|
485
|
-
"#
|
|
486
|
-
"#
|
|
470
|
+
"#BD5F0080 | hsl( 30 100% 37% / 0.5 ) | oklch(0.59 0.15 54 / 0.5 )",
|
|
471
|
+
"#BD5F0080 | hsl( 30 100% 37% / 0.5 ) | oklch(0.59 0.15 54 / 0.5 )",
|
|
487
472
|
],
|
|
488
473
|
"colorAccentStrokeHover": [
|
|
489
|
-
"#
|
|
490
|
-
"#
|
|
474
|
+
"#BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )",
|
|
475
|
+
"#BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )",
|
|
491
476
|
],
|
|
492
477
|
"colorBgAI": [
|
|
493
|
-
"#
|
|
494
|
-
"#
|
|
478
|
+
"#9B6FC11A | hsl( 272 40% 60% / 0.1 ) | oklch(0.62 0.13 308 / 0.1 )",
|
|
479
|
+
"#8056A31A | hsl( 273 31% 49% / 0.1 ) | oklch(0.53 0.12 308 / 0.1 )",
|
|
495
480
|
],
|
|
496
481
|
"colorBgAIFloatingLauncher": [
|
|
497
|
-
"#
|
|
498
|
-
"#
|
|
482
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
483
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
499
484
|
],
|
|
500
485
|
"colorBgAIFloatingPanelContent": [
|
|
501
|
-
"#
|
|
502
|
-
"#272321 | hsl(20
|
|
486
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
487
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
503
488
|
],
|
|
504
489
|
"colorBgAISidebarContent": [
|
|
505
|
-
"#
|
|
506
|
-
"#
|
|
490
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
491
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
507
492
|
],
|
|
508
493
|
"colorBgActionsMenu": [
|
|
509
|
-
"#
|
|
510
|
-
"#272321 | hsl(20
|
|
494
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
495
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
511
496
|
],
|
|
512
497
|
"colorBgActionsMenuItemDangerActive": [
|
|
513
|
-
"#
|
|
514
|
-
"#
|
|
498
|
+
"#D33E4BCC | hsl( 355 63% 54% / 0.8 ) | oklch(0.59 0.18 20 / 0.8 )",
|
|
499
|
+
"#E14E5BCC | hsl( 355 71% 59% / 0.8 ) | oklch(0.63 0.18 19 / 0.8 )",
|
|
515
500
|
],
|
|
516
501
|
"colorBgActionsMenuItemDangerHover": [
|
|
517
|
-
"#
|
|
518
|
-
"#
|
|
502
|
+
"#D33E4B1A | hsl( 355 63% 54% / 0.1 ) | oklch(0.59 0.18 20 / 0.1 )",
|
|
503
|
+
"#E14E5B1A | hsl( 355 71% 59% / 0.1 ) | oklch(0.63 0.18 19 / 0.1 )",
|
|
519
504
|
],
|
|
520
505
|
"colorBgActionsMenuItemHover": [
|
|
521
|
-
"#
|
|
522
|
-
"#
|
|
506
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
507
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
523
508
|
],
|
|
524
509
|
"colorBgActionsMenuItemSelected": [
|
|
525
|
-
"#
|
|
526
|
-
"#
|
|
510
|
+
"#FDEBDCCC | hsl( 27 89% 93% / 0.8 ) | oklch(0.95 0.03 62 / 0.8 )",
|
|
511
|
+
"#482106CC | hsl( 25 85% 15% / 0.8 ) | oklch(0.3 0.07 51 / 0.8 )",
|
|
527
512
|
],
|
|
528
513
|
"colorBgActionsMenuItemSelectedHover": [
|
|
529
|
-
"#
|
|
530
|
-
"#
|
|
514
|
+
"#FBDFCACC | hsl( 26 86% 89% / 0.8 ) | oklch(0.92 0.04 59 / 0.8 )",
|
|
515
|
+
"#5E2E0ECC | hsl( 24 74% 21% / 0.8 ) | oklch(0.36 0.08 50 / 0.8 )",
|
|
531
516
|
],
|
|
532
517
|
"colorBgBadgeAccent": [
|
|
533
|
-
"#
|
|
534
|
-
"#
|
|
518
|
+
"#FBDFCAB3 | hsl( 26 86% 89% / 0.7 ) | oklch(0.92 0.04 59 / 0.7 )",
|
|
519
|
+
"#482106CC | hsl( 25 85% 15% / 0.8 ) | oklch(0.3 0.07 51 / 0.8 )",
|
|
535
520
|
],
|
|
536
521
|
"colorBgBadgeError": [
|
|
537
|
-
"#
|
|
538
|
-
"#
|
|
522
|
+
"#FDDCDB | hsl( 2 89% 93%) | oklch(0.92 0.04 20 )",
|
|
523
|
+
"#5B1A20 | hsl( 354 56% 23%) | oklch(0.32 0.09 19 )",
|
|
539
524
|
],
|
|
540
525
|
"colorBgBadgeNeutral": [
|
|
541
|
-
"#
|
|
542
|
-
"#
|
|
526
|
+
"#EDE7E0B3 | hsl( 32 27% 90% / 0.7 ) | oklch(0.93 0.01 72 / 0.7 )",
|
|
527
|
+
"#2D2826CC | hsl( 17 8% 16% / 0.8 ) | oklch(0.28 0.01 43 / 0.8 )",
|
|
543
528
|
],
|
|
544
529
|
"colorBgBadgeSuccess": [
|
|
545
|
-
"#
|
|
546
|
-
"#
|
|
530
|
+
"#D6EAE6 | hsl( 168 32% 88%) | oklch(0.92 0.02 183 )",
|
|
531
|
+
"#083D35 | hsl( 171 77% 14%) | oklch(0.32 0.05 180 )",
|
|
547
532
|
],
|
|
548
533
|
"colorBgBadgeWarning": [
|
|
549
|
-
"#
|
|
550
|
-
"#
|
|
534
|
+
"#FFF2A0 | hsl( 52 100% 81%) | oklch(0.95 0.1 100 )",
|
|
535
|
+
"#3A3200 | hsl( 52 100% 11%) | oklch(0.32 0.07 100 )",
|
|
551
536
|
],
|
|
552
537
|
"colorBgBannerError": [
|
|
553
|
-
"#
|
|
554
|
-
"#431619 | hsl(356
|
|
538
|
+
"#FFF1F0 | hsl( 4 100% 97%) | oklch(0.97 0.02 22 )",
|
|
539
|
+
"#431619 | hsl( 356 51% 17%) | oklch(0.27 0.07 19 )",
|
|
555
540
|
],
|
|
556
541
|
"colorBgBannerNeutral": [
|
|
557
|
-
"#
|
|
558
|
-
"#272321 | hsl(20
|
|
542
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
543
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
559
544
|
],
|
|
560
545
|
"colorBgBannerPrimary": [
|
|
561
|
-
"#
|
|
562
|
-
"#
|
|
546
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
547
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
563
548
|
],
|
|
564
549
|
"colorBgBannerSuccess": [
|
|
565
|
-
"#
|
|
566
|
-
"#
|
|
550
|
+
"#EFF7F5 | hsl( 165 33% 95%) | oklch(0.97 0.01 180 )",
|
|
551
|
+
"#0B2E28 | hsl( 170 61% 11%) | oklch(0.27 0.04 180 )",
|
|
567
552
|
],
|
|
568
553
|
"colorBgBannerWarning": [
|
|
569
|
-
"#
|
|
570
|
-
"#
|
|
554
|
+
"#FFFACF | hsl( 54 100% 91%) | oklch(0.98 0.06 102 )",
|
|
555
|
+
"#2B2400 | hsl( 50 100% 8%) | oklch(0.26 0.05 98 )",
|
|
571
556
|
],
|
|
572
557
|
"colorBgButtonGhostAccentDefault": [
|
|
573
|
-
"#
|
|
574
|
-
"#
|
|
558
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
559
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
575
560
|
],
|
|
576
561
|
"colorBgButtonGhostAccentHover": [
|
|
577
|
-
"#
|
|
578
|
-
"#
|
|
562
|
+
"#FDEBDCCC | hsl( 27 89% 93% / 0.8 ) | oklch(0.95 0.03 62 / 0.8 )",
|
|
563
|
+
"#482106CC | hsl( 25 85% 15% / 0.8 ) | oklch(0.3 0.07 51 / 0.8 )",
|
|
579
564
|
],
|
|
580
565
|
"colorBgButtonGhostDestructiveDefault": [
|
|
581
|
-
"#
|
|
582
|
-
"#
|
|
566
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
567
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
583
568
|
],
|
|
584
569
|
"colorBgButtonGhostDestructiveHover": [
|
|
585
|
-
"#
|
|
586
|
-
"#
|
|
570
|
+
"#FFE8E7 | hsl( 2 100% 95%) | oklch(0.95 0.03 21 )",
|
|
571
|
+
"#50151B | hsl( 354 58% 20%) | oklch(0.3 0.09 19 )",
|
|
587
572
|
],
|
|
588
573
|
"colorBgButtonGhostNeutralDefault": [
|
|
589
|
-
"#
|
|
590
|
-
"#
|
|
574
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
575
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
591
576
|
],
|
|
592
577
|
"colorBgButtonGhostNeutralHover": [
|
|
593
|
-
"#
|
|
594
|
-
"#
|
|
578
|
+
"#E1DAD380 | hsl( 30 19% 85% / 0.5 ) | oklch(0.89 0.01 68 / 0.5 )",
|
|
579
|
+
"#373230CC | hsl( 17 7% 20% / 0.8 ) | oklch(0.32 0.01 43 / 0.8 )",
|
|
595
580
|
],
|
|
596
581
|
"colorBgButtonOutlineAccentDefault": [
|
|
597
|
-
"#
|
|
598
|
-
"#
|
|
582
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
583
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
599
584
|
],
|
|
600
585
|
"colorBgButtonOutlineAccentHover": [
|
|
601
|
-
"#
|
|
602
|
-
"#
|
|
586
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
587
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
603
588
|
],
|
|
604
589
|
"colorBgButtonOutlineDestructiveDefault": [
|
|
605
|
-
"#
|
|
606
|
-
"#
|
|
590
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
591
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
607
592
|
],
|
|
608
593
|
"colorBgButtonOutlineDestructiveHover": [
|
|
609
|
-
"#
|
|
610
|
-
"#
|
|
594
|
+
"#FFE8E7 | hsl( 2 100% 95%) | oklch(0.95 0.03 21 )",
|
|
595
|
+
"#50151B | hsl( 354 58% 20%) | oklch(0.3 0.09 19 )",
|
|
611
596
|
],
|
|
612
597
|
"colorBgButtonOutlineNeutralDefault": [
|
|
613
|
-
"#
|
|
614
|
-
"#
|
|
598
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
599
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
615
600
|
],
|
|
616
601
|
"colorBgButtonOutlineNeutralHover": [
|
|
617
|
-
"#
|
|
618
|
-
"#
|
|
602
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
603
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
619
604
|
],
|
|
620
605
|
"colorBgButtonSoftAccentDefault": [
|
|
621
|
-
"#
|
|
622
|
-
"#482106 | hsl(25
|
|
606
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
607
|
+
"#482106 | hsl( 25 85% 15%) | oklch(0.3 0.07 51 )",
|
|
623
608
|
],
|
|
624
609
|
"colorBgButtonSoftAccentHover": [
|
|
625
|
-
"#
|
|
626
|
-
"#
|
|
610
|
+
"#FBDFCA | hsl( 26 86% 89%) | oklch(0.92 0.04 59 )",
|
|
611
|
+
"#5E2E0E | hsl( 24 74% 21%) | oklch(0.36 0.08 50 )",
|
|
627
612
|
],
|
|
628
613
|
"colorBgButtonSoftDestructiveDefault": [
|
|
629
|
-
"#
|
|
630
|
-
"#
|
|
614
|
+
"#FFE8E7 | hsl( 2 100% 95%) | oklch(0.95 0.03 21 )",
|
|
615
|
+
"#50151B | hsl( 354 58% 20%) | oklch(0.3 0.09 19 )",
|
|
631
616
|
],
|
|
632
617
|
"colorBgButtonSoftDestructiveHover": [
|
|
633
|
-
"#
|
|
634
|
-
"#682127 | hsl(355
|
|
618
|
+
"#FACBCA | hsl( 1 83% 89%) | oklch(0.88 0.05 20 )",
|
|
619
|
+
"#682127 | hsl( 355 52% 27%) | oklch(0.36 0.1 19 )",
|
|
635
620
|
],
|
|
636
621
|
"colorBgButtonSoftNeutralDefault": [
|
|
637
|
-
"#
|
|
638
|
-
"#272321 | hsl(20
|
|
622
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
623
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
639
624
|
],
|
|
640
625
|
"colorBgButtonSoftNeutralHover": [
|
|
641
|
-
"#
|
|
642
|
-
"#
|
|
626
|
+
"#E1DAD3 | hsl( 30 19% 85%) | oklch(0.89 0.01 68 )",
|
|
627
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
643
628
|
],
|
|
644
629
|
"colorBgButtonSolidAccentDefault": [
|
|
645
|
-
"#
|
|
646
|
-
"#
|
|
630
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
631
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
647
632
|
],
|
|
648
633
|
"colorBgButtonSolidAccentHover": [
|
|
649
|
-
"#
|
|
650
|
-
"#
|
|
634
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
635
|
+
"#CD6A27 | hsl( 24 68% 48%) | oklch(0.63 0.15 50 )",
|
|
651
636
|
],
|
|
652
637
|
"colorBgButtonSolidDestructiveDefault": [
|
|
653
|
-
"#
|
|
654
|
-
"#
|
|
638
|
+
"#D33E4B | hsl( 355 63% 54%) | oklch(0.59 0.18 20 )",
|
|
639
|
+
"#D53247 | hsl( 352 66% 52%) | oklch(0.58 0.2 19 )",
|
|
655
640
|
],
|
|
656
641
|
"colorBgButtonSolidDestructiveHover": [
|
|
657
|
-
"#
|
|
658
|
-
"#
|
|
642
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
643
|
+
"#E14E5B | hsl( 355 71% 59%) | oklch(0.63 0.18 19 )",
|
|
659
644
|
],
|
|
660
645
|
"colorBgButtonSolidNeutralDefault": [
|
|
661
|
-
"#
|
|
662
|
-
"#
|
|
646
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
647
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
663
648
|
],
|
|
664
649
|
"colorBgButtonSolidNeutralHover": [
|
|
665
|
-
"#
|
|
666
|
-
"#
|
|
650
|
+
"#1B1611D9 | hsl( 30 23% 9% / 0.85) | oklch(0.2 0.01 67 / 0.85)",
|
|
651
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
667
652
|
],
|
|
668
653
|
"colorBgChargebeeInfoBox": [
|
|
669
|
-
"#
|
|
670
|
-
"#
|
|
654
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
655
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
671
656
|
],
|
|
672
657
|
"colorBgDbTabFocus": [
|
|
673
|
-
"#
|
|
674
|
-
"#373230 | hsl(17
|
|
658
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
659
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
675
660
|
],
|
|
676
661
|
"colorBgDbTabHover": [
|
|
677
|
-
"#
|
|
678
|
-
"#
|
|
662
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
663
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
679
664
|
],
|
|
680
665
|
"colorBgDropLine": [
|
|
681
|
-
"#
|
|
682
|
-
"#
|
|
666
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
667
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
683
668
|
],
|
|
684
669
|
"colorBgEditorImageZoomed": [
|
|
685
|
-
"#
|
|
686
|
-
"#373230 | hsl(17
|
|
670
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
671
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
687
672
|
],
|
|
688
673
|
"colorBgEntityAvatarDefault": [
|
|
689
|
-
"#
|
|
690
|
-
"#
|
|
674
|
+
"#FEFBF9 | hsl( 24 71% 99%) | oklch(0.99 0 56 )",
|
|
675
|
+
"#1E150F | hsl( 24 33% 9%) | oklch(0.21 0.02 55 )",
|
|
691
676
|
],
|
|
692
677
|
"colorBgEntityAvatarHover": [
|
|
693
|
-
"#
|
|
694
|
-
"#
|
|
678
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
679
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
695
680
|
],
|
|
696
681
|
"colorBgEntityBoxDefault": [
|
|
697
|
-
"#
|
|
698
|
-
"#272321 | hsl(20
|
|
682
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
683
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
699
684
|
],
|
|
700
685
|
"colorBgEntityBoxDefaultFocus": [
|
|
701
|
-
"#
|
|
702
|
-
"#272321 | hsl(20
|
|
686
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
687
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
703
688
|
],
|
|
704
689
|
"colorBgEntityBoxDefaultFocusHover": [
|
|
705
|
-
"#
|
|
706
|
-
"#
|
|
690
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
691
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
707
692
|
],
|
|
708
693
|
"colorBgEntityBoxDefaultHover": [
|
|
709
|
-
"#
|
|
710
|
-
"#
|
|
694
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
695
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
711
696
|
],
|
|
712
697
|
"colorBgEntityBoxSelected": [
|
|
713
|
-
"#
|
|
714
|
-
"#
|
|
698
|
+
"#FFFBF8 | hsl( 26 100% 99%) | oklch(0.99 0.01 60 )",
|
|
699
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
715
700
|
],
|
|
716
701
|
"colorBgEntityBoxSelectedDrag": [
|
|
717
|
-
"#
|
|
718
|
-
"#
|
|
702
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
703
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
719
704
|
],
|
|
720
705
|
"colorBgEntityBoxSelectedHover": [
|
|
721
|
-
"#
|
|
722
|
-
"#
|
|
706
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
707
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
723
708
|
],
|
|
724
709
|
"colorBgErrorMessage": [
|
|
725
|
-
"#
|
|
726
|
-
"#
|
|
710
|
+
"#ED9696 | hsl( 0 71% 76%) | oklch(0.76 0.11 20 )",
|
|
711
|
+
"#ED9696 | hsl( 0 71% 76%) | oklch(0.76 0.11 20 )",
|
|
727
712
|
],
|
|
728
713
|
"colorBgFieldEditorContainer": [
|
|
729
|
-
"#
|
|
730
|
-
"#272321 | hsl(20
|
|
714
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
715
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
731
716
|
],
|
|
732
717
|
"colorBgFieldEditorLinkEqualSign": [
|
|
733
|
-
"#
|
|
734
|
-
"#
|
|
718
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
719
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
735
720
|
],
|
|
736
721
|
"colorBgFileOverlay": [
|
|
737
|
-
"#
|
|
738
|
-
"#
|
|
722
|
+
"#1F1A1899 | hsl( 17 13% 11% / 0.6 ) | oklch(0.22 0.01 43 / 0.6 )",
|
|
723
|
+
"#1F1A1899 | hsl( 17 13% 11% / 0.6 ) | oklch(0.22 0.01 43 / 0.6 )",
|
|
739
724
|
],
|
|
740
725
|
"colorBgLaneSubtle": [
|
|
741
|
-
"#
|
|
742
|
-
"#
|
|
726
|
+
"#1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
727
|
+
"#FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
743
728
|
],
|
|
744
729
|
"colorBgListItemGeneral": [
|
|
745
|
-
"#
|
|
746
|
-
"#
|
|
730
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
731
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
747
732
|
],
|
|
748
733
|
"colorBgListItemGeneralDisabled": [
|
|
749
|
-
"#
|
|
750
|
-
"#
|
|
734
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
735
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
751
736
|
],
|
|
752
737
|
"colorBgListItemGeneralFocus": [
|
|
753
|
-
"#
|
|
754
|
-
"#373230 | hsl(17
|
|
738
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
739
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
755
740
|
],
|
|
756
741
|
"colorBgListItemGeneralHover": [
|
|
757
|
-
"#
|
|
758
|
-
"#
|
|
742
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
743
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
759
744
|
],
|
|
760
745
|
"colorBgListItemGeneralSelected": [
|
|
761
|
-
"#
|
|
762
|
-
"#482106 | hsl(25
|
|
746
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
747
|
+
"#482106 | hsl( 25 85% 15%) | oklch(0.3 0.07 51 )",
|
|
763
748
|
],
|
|
764
749
|
"colorBgListItemGeneralSelectedDisabled": [
|
|
765
|
-
"#
|
|
766
|
-
"#522609 | hsl(24
|
|
750
|
+
"#FBDFCA | hsl( 26 86% 89%) | oklch(0.92 0.04 59 )",
|
|
751
|
+
"#522609 | hsl( 24 80% 18%) | oklch(0.32 0.08 50 )",
|
|
767
752
|
],
|
|
768
753
|
"colorBgListItemGeneralSelectedFocus": [
|
|
769
|
-
"#
|
|
770
|
-
"#
|
|
754
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
755
|
+
"#5E2E0E | hsl( 24 74% 21%) | oklch(0.36 0.08 50 )",
|
|
771
756
|
],
|
|
772
757
|
"colorBgListItemGeneralSelectedHover": [
|
|
773
|
-
"#
|
|
774
|
-
"#
|
|
758
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
759
|
+
"#5E2E0E | hsl( 24 74% 21%) | oklch(0.36 0.08 50 )",
|
|
775
760
|
],
|
|
776
761
|
"colorBgLogoCardDark": [
|
|
777
|
-
"#
|
|
778
|
-
"#
|
|
762
|
+
"#CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
763
|
+
"#56504E | hsl( 15 5% 32%) | oklch(0.44 0.01 39 )",
|
|
779
764
|
],
|
|
780
765
|
"colorBgLogoCardMedium": [
|
|
781
|
-
"#
|
|
782
|
-
"#
|
|
766
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
767
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
783
768
|
],
|
|
784
769
|
"colorBgLogoCardTransparent": [
|
|
785
|
-
"#
|
|
786
|
-
"#
|
|
770
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
771
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
787
772
|
],
|
|
788
773
|
"colorBgMenuHeaderAvatar": [
|
|
789
|
-
"#
|
|
790
|
-
"#
|
|
774
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
775
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
791
776
|
],
|
|
792
777
|
"colorBgMenuItem": [
|
|
793
|
-
"#
|
|
794
|
-
"#
|
|
778
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
779
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
795
780
|
],
|
|
796
781
|
"colorBgMenuItemFocus": [
|
|
797
|
-
"#
|
|
798
|
-
"#
|
|
782
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
783
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
799
784
|
],
|
|
800
785
|
"colorBgMenuItemHover": [
|
|
801
|
-
"#
|
|
802
|
-
"#
|
|
786
|
+
"#EDE7E0 | hsl( 32 27% 90%) | oklch(0.93 0.01 72 )",
|
|
787
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
803
788
|
],
|
|
804
789
|
"colorBgMenuItemSelected": [
|
|
805
|
-
"#
|
|
806
|
-
"#
|
|
790
|
+
"#FBDFCACC | hsl( 26 86% 89% / 0.8 ) | oklch(0.92 0.04 59 / 0.8 )",
|
|
791
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
807
792
|
],
|
|
808
793
|
"colorBgMenuItemSelectedDragged": [
|
|
809
|
-
"#
|
|
810
|
-
"#
|
|
794
|
+
"#F7D0B2 | hsl( 26 81% 83%) | oklch(0.88 0.06 59 )",
|
|
795
|
+
"#5E2E0E | hsl( 24 74% 21%) | oklch(0.36 0.08 50 )",
|
|
811
796
|
],
|
|
812
797
|
"colorBgMenuItemSelectedFocused": [
|
|
813
|
-
"#
|
|
814
|
-
"#522609 | hsl(24
|
|
798
|
+
"#F7D0B2 | hsl( 26 81% 83%) | oklch(0.88 0.06 59 )",
|
|
799
|
+
"#522609 | hsl( 24 80% 18%) | oklch(0.32 0.08 50 )",
|
|
815
800
|
],
|
|
816
801
|
"colorBgMenuItemSelectedHover": [
|
|
817
|
-
"#
|
|
818
|
-
"#522609 | hsl(24
|
|
802
|
+
"#F7D0B2B3 | hsl( 26 81% 83% / 0.7 ) | oklch(0.88 0.06 59 / 0.7 )",
|
|
803
|
+
"#522609 | hsl( 24 80% 18%) | oklch(0.32 0.08 50 )",
|
|
819
804
|
],
|
|
820
805
|
"colorBgMessageContainer": [
|
|
821
|
-
"#
|
|
822
|
-
"#272321 | hsl(20
|
|
806
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
807
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
823
808
|
],
|
|
824
809
|
"colorBgMessageContainerHover": [
|
|
825
|
-
"#
|
|
826
|
-
"#
|
|
810
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
811
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
827
812
|
],
|
|
828
813
|
"colorBgMessageHighlighted": [
|
|
829
|
-
"#
|
|
830
|
-
"#
|
|
814
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
815
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
831
816
|
],
|
|
832
817
|
"colorBgNotificationHover": [
|
|
833
|
-
"#
|
|
834
|
-
"#
|
|
818
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
819
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
835
820
|
],
|
|
836
821
|
"colorBgNotificationSelected": [
|
|
837
|
-
"#
|
|
838
|
-
"#482106 | hsl(25
|
|
822
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
823
|
+
"#482106 | hsl( 25 85% 15%) | oklch(0.3 0.07 51 )",
|
|
839
824
|
],
|
|
840
825
|
"colorBgNotificationSelectedHover": [
|
|
841
|
-
"#
|
|
842
|
-
"#
|
|
826
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
827
|
+
"#5E2E0E | hsl( 24 74% 21%) | oklch(0.36 0.08 50 )",
|
|
843
828
|
],
|
|
844
829
|
"colorBgObjectEditorSeparator": [
|
|
845
|
-
"#
|
|
846
|
-
"#
|
|
830
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
831
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
847
832
|
],
|
|
848
833
|
"colorBgPinnedFieldsLabel": [
|
|
849
|
-
"#
|
|
850
|
-
"#
|
|
834
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
835
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
851
836
|
],
|
|
852
837
|
"colorBgPopup": [
|
|
853
|
-
"#
|
|
854
|
-
"#
|
|
838
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
839
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
855
840
|
],
|
|
856
841
|
"colorBgReactionsDefault": [
|
|
857
|
-
"#
|
|
858
|
-
"#
|
|
842
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
843
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
859
844
|
],
|
|
860
845
|
"colorBgReactionsHover": [
|
|
861
|
-
"#
|
|
862
|
-
"#373230 | hsl(17
|
|
846
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
847
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
863
848
|
],
|
|
864
849
|
"colorBgReactionsSelectedDefault": [
|
|
865
|
-
"#
|
|
866
|
-
"#
|
|
850
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
851
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
867
852
|
],
|
|
868
853
|
"colorBgReactionsSelectedHover": [
|
|
869
|
-
"#
|
|
870
|
-
"#
|
|
854
|
+
"#FFFBF8 | hsl( 26 100% 99%) | oklch(0.99 0.01 60 )",
|
|
855
|
+
"#AB5400 | hsl( 29 100% 34%) | oklch(0.54 0.14 53 )",
|
|
871
856
|
],
|
|
872
857
|
"colorBgRelationContainer": [
|
|
873
|
-
"#
|
|
874
|
-
"#
|
|
858
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
859
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
875
860
|
],
|
|
876
861
|
"colorBgScrollFade": [
|
|
877
|
-
"#
|
|
878
|
-
"#
|
|
862
|
+
"#FFFDFA26 | hsl( 36 100% 99% / 0.15) | oklch(0.99 0 78 / 0.15)",
|
|
863
|
+
"#1F1A1826 | hsl( 17 13% 11% / 0.15) | oklch(0.22 0.01 43 / 0.15)",
|
|
879
864
|
],
|
|
880
865
|
"colorBgSearchRowCreateHover": [
|
|
881
|
-
"#
|
|
882
|
-
"#482106 | hsl(25
|
|
866
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
867
|
+
"#482106 | hsl( 25 85% 15%) | oklch(0.3 0.07 51 )",
|
|
883
868
|
],
|
|
884
869
|
"colorBgSearchRowHover": [
|
|
885
|
-
"#
|
|
886
|
-
"#
|
|
870
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
871
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
887
872
|
],
|
|
888
873
|
"colorBgSegmentedControl": [
|
|
889
|
-
"#
|
|
890
|
-
"#
|
|
874
|
+
"#EDE7E0CC | hsl( 32 27% 90% / 0.8 ) | oklch(0.93 0.01 72 / 0.8 )",
|
|
875
|
+
"#272321CC | hsl( 20 8% 14% / 0.8 ) | oklch(0.26 0.01 48 / 0.8 )",
|
|
891
876
|
],
|
|
892
877
|
"colorBgSegmentedControlActive": [
|
|
893
|
-
"#
|
|
894
|
-
"#373230 | hsl(17
|
|
878
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
879
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
895
880
|
],
|
|
896
881
|
"colorBgSegmentedControlDefault": [
|
|
897
|
-
"#
|
|
898
|
-
"#
|
|
882
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
883
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
899
884
|
],
|
|
900
885
|
"colorBgSegmentedControlHover": [
|
|
901
|
-
"#
|
|
902
|
-
"#
|
|
886
|
+
"#EDE7E0 | hsl( 32 27% 90%) | oklch(0.93 0.01 72 )",
|
|
887
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
903
888
|
],
|
|
904
889
|
"colorBgSelectMenu": [
|
|
905
|
-
"#
|
|
906
|
-
"#272321 | hsl(20
|
|
890
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
891
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
907
892
|
],
|
|
908
893
|
"colorBgSkeletonFrom": [
|
|
909
|
-
"#
|
|
910
|
-
"#
|
|
894
|
+
"#FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
895
|
+
"#1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
911
896
|
],
|
|
912
897
|
"colorBgSkeletonTo": [
|
|
913
|
-
"#
|
|
914
|
-
"#
|
|
898
|
+
"#FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
899
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
915
900
|
],
|
|
916
901
|
"colorBgSubtleLight": [
|
|
917
|
-
"#
|
|
918
|
-
"#
|
|
902
|
+
"#FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
903
|
+
"#1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
919
904
|
],
|
|
920
905
|
"colorBgTabHover": [
|
|
921
|
-
"#
|
|
922
|
-
"#
|
|
906
|
+
"#635E571A | hsl( 35 6% 36% / 0.1 ) | oklch(0.48 0.01 77 / 0.1 )",
|
|
907
|
+
"#A69F9D1A | hsl( 13 5% 63% / 0.1 ) | oklch(0.71 0.01 37 / 0.1 )",
|
|
923
908
|
],
|
|
924
909
|
"colorBgToastDefault": [
|
|
925
|
-
"#
|
|
926
|
-
"#
|
|
910
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
911
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
927
912
|
],
|
|
928
913
|
"colorBgWhiteboard": [
|
|
929
|
-
"#
|
|
930
|
-
"#
|
|
914
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
915
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
931
916
|
],
|
|
932
917
|
"colorBorderAccentFocusRing": [
|
|
933
|
-
"#
|
|
934
|
-
"#
|
|
918
|
+
"#BD5F004D | hsl( 30 100% 37% / 0.3 ) | oklch(0.59 0.15 54 / 0.3 )",
|
|
919
|
+
"#BD5F004D | hsl( 30 100% 37% / 0.3 ) | oklch(0.59 0.15 54 / 0.3 )",
|
|
935
920
|
],
|
|
936
921
|
"colorBorderBlockQuote": [
|
|
937
|
-
"#
|
|
938
|
-
"#
|
|
922
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
923
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
939
924
|
],
|
|
940
925
|
"colorBorderButtonOutlineAccentDefault": [
|
|
941
|
-
"#
|
|
942
|
-
"#
|
|
926
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
927
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
943
928
|
],
|
|
944
929
|
"colorBorderButtonOutlineDestructiveDefault": [
|
|
945
|
-
"#
|
|
946
|
-
"#
|
|
930
|
+
"#F4B3B2 | hsl( 1 75% 83%) | oklch(0.83 0.08 20 )",
|
|
931
|
+
"#881B2A | hsl( 352 67% 32%) | oklch(0.41 0.14 19 )",
|
|
947
932
|
],
|
|
948
933
|
"colorBorderButtonOutlineNeutralDefault": [
|
|
949
|
-
"#
|
|
950
|
-
"#
|
|
934
|
+
"#CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
935
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
951
936
|
],
|
|
952
937
|
"colorBorderDestructiveFocusRing": [
|
|
953
|
-
"#
|
|
954
|
-
"#
|
|
938
|
+
"#D33E4B4D | hsl( 355 63% 54% / 0.3 ) | oklch(0.59 0.18 20 / 0.3 )",
|
|
939
|
+
"#D33E4B4D | hsl( 355 63% 54% / 0.3 ) | oklch(0.59 0.18 20 / 0.3 )",
|
|
955
940
|
],
|
|
956
941
|
"colorBorderLogoGrid": [
|
|
957
|
-
"#
|
|
958
|
-
"#
|
|
942
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
943
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
959
944
|
],
|
|
960
945
|
"colorBorderLogoGridMedium": [
|
|
961
|
-
"#
|
|
962
|
-
"#
|
|
946
|
+
"#F3ECE566 | hsl( 30 37% 93% / 0.4 ) | oklch(0.95 0.01 68 / 0.4 )",
|
|
947
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
963
948
|
],
|
|
964
949
|
"colorBorderLogoGridSubtle": [
|
|
965
|
-
"#
|
|
966
|
-
"#
|
|
950
|
+
"#F3ECE533 | hsl( 30 37% 93% / 0.2 ) | oklch(0.95 0.01 68 / 0.2 )",
|
|
951
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
967
952
|
],
|
|
968
953
|
"colorBorderNeutralFocusRing": [
|
|
969
|
-
"#
|
|
970
|
-
"#
|
|
954
|
+
"#A39D964D | hsl( 32 7% 61% / 0.3 ) | oklch(0.7 0.01 72 / 0.3 )",
|
|
955
|
+
"#A39D964D | hsl( 32 7% 61% / 0.3 ) | oklch(0.7 0.01 72 / 0.3 )",
|
|
971
956
|
],
|
|
972
957
|
"colorBorderReactionsHover": [
|
|
973
|
-
"#
|
|
974
|
-
"#
|
|
958
|
+
"#CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
959
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
975
960
|
],
|
|
976
961
|
"colorBorderReactionsSelectedDefault": [
|
|
977
|
-
"#
|
|
978
|
-
"#
|
|
962
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
963
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
979
964
|
],
|
|
980
965
|
"colorBorderReactionsSelectedHover": [
|
|
981
|
-
"#
|
|
982
|
-
"#
|
|
966
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
967
|
+
"#AB5400 | hsl( 29 100% 34%) | oklch(0.54 0.14 53 )",
|
|
983
968
|
],
|
|
984
969
|
"colorBorderRichTextMedia": [
|
|
985
|
-
"#00000024 | hsl(none
|
|
986
|
-
"#00000024 | hsl(none
|
|
970
|
+
"#00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
971
|
+
"#00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
987
972
|
],
|
|
988
973
|
"colorBorderSegmentedControlDefault": [
|
|
989
|
-
"#
|
|
990
|
-
"#
|
|
974
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
975
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
991
976
|
],
|
|
992
977
|
"colorCardWhiteboardBgDefault": [
|
|
993
|
-
"#
|
|
994
|
-
"#
|
|
978
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
979
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
995
980
|
],
|
|
996
981
|
"colorCardWhiteboardBorderDefault": [
|
|
997
|
-
"#
|
|
998
|
-
"#
|
|
982
|
+
"#1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
983
|
+
"#E0D4CE33 | hsl( 20 22% 84% / 0.2 ) | oklch(0.88 0.02 49 / 0.2 )",
|
|
999
984
|
],
|
|
1000
985
|
"colorCardWhiteboardShadowDefault": [
|
|
1001
|
-
"#
|
|
1002
|
-
"#
|
|
986
|
+
"#635E570D | hsl( 35 6% 36% / 0.05) | oklch(0.48 0.01 77 / 0.05)",
|
|
987
|
+
"#A69F9D0D | hsl( 13 5% 63% / 0.05) | oklch(0.71 0.01 37 / 0.05)",
|
|
1003
988
|
],
|
|
1004
989
|
"colorEmbedWhiteboardEditBorder": [
|
|
1005
|
-
"#
|
|
1006
|
-
"#
|
|
990
|
+
"#87BFB3E6 | hsl( 167 30% 64% / 0.9 ) | oklch(0.76 0.06 180 / 0.9 )",
|
|
991
|
+
"#007061E6 | hsl( 172 100% 22% / 0.9 ) | oklch(0.49 0.09 179 / 0.9 )",
|
|
1007
992
|
],
|
|
1008
993
|
"colorGridDotWhiteboard": [
|
|
1009
|
-
"#
|
|
1010
|
-
"#373230 | hsl(17
|
|
994
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
995
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1011
996
|
],
|
|
1012
997
|
"colorHighlightWhiteboardSelection": [
|
|
1013
|
-
"#
|
|
1014
|
-
"#
|
|
998
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
999
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
1015
1000
|
],
|
|
1016
1001
|
"colorHighlightWhiteboardSelectionLocked": [
|
|
1017
|
-
"#
|
|
1018
|
-
"#
|
|
1002
|
+
"#A39D9680 | hsl( 32 7% 61% / 0.5 ) | oklch(0.7 0.01 72 / 0.5 )",
|
|
1003
|
+
"#756F6D80 | hsl( 15 4% 44% / 0.5 ) | oklch(0.55 0.01 39 / 0.5 )",
|
|
1019
1004
|
],
|
|
1020
1005
|
"colorIconBannerAccent": [
|
|
1021
|
-
"#
|
|
1022
|
-
"#
|
|
1006
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1007
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1023
1008
|
],
|
|
1024
1009
|
"colorIconBannerError": [
|
|
1025
|
-
"#
|
|
1026
|
-
"#
|
|
1010
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1011
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1027
1012
|
],
|
|
1028
1013
|
"colorIconBannerNeutral": [
|
|
1029
|
-
"#
|
|
1030
|
-
"#
|
|
1014
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
1015
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
1031
1016
|
],
|
|
1032
1017
|
"colorIconBannerSuccess": [
|
|
1033
|
-
"#007465 | hsl(172 100%
|
|
1034
|
-
"#
|
|
1018
|
+
"#007465 | hsl( 172 100% 23%) | oklch(0.5 0.09 180 )",
|
|
1019
|
+
"#80C0B4 | hsl( 169 34% 63%) | oklch(0.76 0.07 181 )",
|
|
1035
1020
|
],
|
|
1036
1021
|
"colorIconBannerWarning": [
|
|
1037
|
-
"#827100 | hsl(52 100%
|
|
1038
|
-
"#
|
|
1022
|
+
"#827100 | hsl( 52 100% 25%) | oklch(0.55 0.11 99 )",
|
|
1023
|
+
"#E3C600 | hsl( 52 100% 45%) | oklch(0.83 0.17 99 )",
|
|
1039
1024
|
],
|
|
1040
1025
|
"colorIconButtonGhostAccent": [
|
|
1041
|
-
"#
|
|
1042
|
-
"#
|
|
1026
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1027
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1043
1028
|
],
|
|
1044
1029
|
"colorIconButtonGhostDestructive": [
|
|
1045
|
-
"#
|
|
1046
|
-
"#
|
|
1030
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1031
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1047
1032
|
],
|
|
1048
1033
|
"colorIconButtonGhostNeutral": [
|
|
1049
|
-
"#
|
|
1050
|
-
"#
|
|
1034
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1035
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1051
1036
|
],
|
|
1052
1037
|
"colorIconButtonOutlineAccent": [
|
|
1053
|
-
"#
|
|
1054
|
-
"#
|
|
1038
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1039
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1055
1040
|
],
|
|
1056
1041
|
"colorIconButtonOutlineDestructive": [
|
|
1057
|
-
"#
|
|
1058
|
-
"#
|
|
1042
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1043
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1059
1044
|
],
|
|
1060
1045
|
"colorIconButtonOutlineNeutral": [
|
|
1061
|
-
"#
|
|
1062
|
-
"#
|
|
1046
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1047
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1063
1048
|
],
|
|
1064
1049
|
"colorIconButtonSoftAccent": [
|
|
1065
|
-
"#
|
|
1066
|
-
"#
|
|
1050
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1051
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1067
1052
|
],
|
|
1068
1053
|
"colorIconButtonSoftDestructive": [
|
|
1069
|
-
"#
|
|
1070
|
-
"#
|
|
1054
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1055
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1071
1056
|
],
|
|
1072
1057
|
"colorIconButtonSoftNeutral": [
|
|
1073
|
-
"#
|
|
1074
|
-
"#
|
|
1058
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1059
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1075
1060
|
],
|
|
1076
1061
|
"colorIconButtonSolidAccent": [
|
|
1077
|
-
"#
|
|
1078
|
-
"#
|
|
1062
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1063
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1079
1064
|
],
|
|
1080
1065
|
"colorIconButtonSolidDestructive": [
|
|
1081
|
-
"#
|
|
1082
|
-
"#
|
|
1066
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1067
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1083
1068
|
],
|
|
1084
1069
|
"colorIconButtonSolidNeutral": [
|
|
1085
|
-
"#
|
|
1086
|
-
"#
|
|
1070
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1071
|
+
"#56504E | hsl( 15 5% 32%) | oklch(0.44 0.01 39 )",
|
|
1087
1072
|
],
|
|
1088
1073
|
"colorLinkPointWhiteboardDefault": [
|
|
1089
|
-
"#
|
|
1090
|
-
"#
|
|
1074
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
1075
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
1091
1076
|
],
|
|
1092
1077
|
"colorLinkPointWhiteboardFillDefault": [
|
|
1093
|
-
"#
|
|
1094
|
-
"#
|
|
1078
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1079
|
+
"#2D2623 | hsl( 18 13% 16%) | oklch(0.28 0.01 45 )",
|
|
1095
1080
|
],
|
|
1096
1081
|
"colorMapWhiteboardPreviewDefault": [
|
|
1097
|
-
"#
|
|
1098
|
-
"#
|
|
1082
|
+
"#E89F6266 | hsl( 27 74% 65% / 0.4 ) | oklch(0.76 0.12 60 / 0.4 )",
|
|
1083
|
+
"#9C3A0066 | hsl( 22 100% 31% / 0.4 ) | oklch(0.48 0.14 43 / 0.4 )",
|
|
1099
1084
|
],
|
|
1100
1085
|
"colorMermaidLineColor": [
|
|
1101
|
-
"#
|
|
1102
|
-
"#
|
|
1086
|
+
"#7D7770 | hsl( 32 5% 46%) | oklch(0.57 0.01 72 )",
|
|
1087
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1103
1088
|
],
|
|
1104
1089
|
"colorMermaidPrimaryBorderColor": [
|
|
1105
|
-
"#
|
|
1106
|
-
"#
|
|
1090
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
1091
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1107
1092
|
],
|
|
1108
1093
|
"colorMermaidPrimaryColor": [
|
|
1109
|
-
"#
|
|
1110
|
-
"#
|
|
1094
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1095
|
+
"#56504E | hsl( 15 5% 32%) | oklch(0.44 0.01 39 )",
|
|
1111
1096
|
],
|
|
1112
1097
|
"colorOverlayEntityBoxDefaultFocus": [
|
|
1113
|
-
"#
|
|
1114
|
-
"#
|
|
1098
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
1099
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
1115
1100
|
],
|
|
1116
1101
|
"colorOverlayEntityBoxDefaultFocusHover": [
|
|
1117
|
-
"#
|
|
1118
|
-
"#
|
|
1102
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
1103
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
1119
1104
|
],
|
|
1120
1105
|
"colorPickerCssFilter": [
|
|
1121
1106
|
"none",
|
|
1122
1107
|
"none",
|
|
1123
1108
|
],
|
|
1124
1109
|
"colorPickerSwatchBorder": [
|
|
1125
|
-
"#00000024 | hsl(none
|
|
1126
|
-
"#00000024 | hsl(none
|
|
1110
|
+
"#00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
1111
|
+
"#00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
1127
1112
|
],
|
|
1128
1113
|
"colorPlaceholder": [
|
|
1129
|
-
"#
|
|
1130
|
-
"#
|
|
1114
|
+
"#FFFDFA66 | hsl( 36 100% 99% / 0.4 ) | oklch(0.99 0 78 / 0.4 )",
|
|
1115
|
+
"#1F1A1866 | hsl( 17 13% 11% / 0.4 ) | oklch(0.22 0.01 43 / 0.4 )",
|
|
1131
1116
|
],
|
|
1132
1117
|
"colorPlaceholderSubtle": [
|
|
1133
|
-
"#
|
|
1134
|
-
"#
|
|
1118
|
+
"#FFFDFA40 | hsl( 36 100% 99% / 0.25) | oklch(0.99 0 78 / 0.25)",
|
|
1119
|
+
"#1F1A1840 | hsl( 17 13% 11% / 0.25) | oklch(0.22 0.01 43 / 0.25)",
|
|
1135
1120
|
],
|
|
1136
1121
|
"colorPlaceholderWhiteboardDefault": [
|
|
1137
|
-
"#
|
|
1138
|
-
"#
|
|
1122
|
+
"#E89F6233 | hsl( 27 74% 65% / 0.2 ) | oklch(0.76 0.12 60 / 0.2 )",
|
|
1123
|
+
"#9C3A0033 | hsl( 22 100% 31% / 0.2 ) | oklch(0.48 0.14 43 / 0.2 )",
|
|
1124
|
+
],
|
|
1125
|
+
"colorSearchSubtitle": [
|
|
1126
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
1127
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1139
1128
|
],
|
|
1140
1129
|
"colorSectionWhiteboardBgInactive": [
|
|
1141
|
-
"#
|
|
1142
|
-
"#
|
|
1130
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1131
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
1143
1132
|
],
|
|
1144
1133
|
"colorSectionWhiteboardBorderInactive": [
|
|
1145
|
-
"#
|
|
1146
|
-
"#373230 | hsl(17
|
|
1134
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
1135
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1147
1136
|
],
|
|
1148
1137
|
"colorSelectionWhiteboardBorderDisabled": [
|
|
1149
|
-
"#
|
|
1150
|
-
"#
|
|
1138
|
+
"#A39D9680 | hsl( 32 7% 61% / 0.5 ) | oklch(0.7 0.01 72 / 0.5 )",
|
|
1139
|
+
"#756F6D80 | hsl( 15 4% 44% / 0.5 ) | oklch(0.55 0.01 39 / 0.5 )",
|
|
1151
1140
|
],
|
|
1152
1141
|
"colorSelectionWhiteboardBorderEnabled": [
|
|
1153
|
-
"#
|
|
1154
|
-
"#
|
|
1142
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
1143
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
1155
1144
|
],
|
|
1156
1145
|
"colorShadowBorder": [
|
|
1157
|
-
"#
|
|
1158
|
-
"#
|
|
1146
|
+
"#FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
1147
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
1159
1148
|
],
|
|
1160
1149
|
"colorShadowElevation": [
|
|
1161
|
-
"#
|
|
1162
|
-
"#
|
|
1150
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
1151
|
+
"#FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
1163
1152
|
],
|
|
1164
1153
|
"colorShadowInsetEdge": [
|
|
1165
|
-
"#
|
|
1166
|
-
"#
|
|
1154
|
+
"#FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
1155
|
+
"#1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
1167
1156
|
],
|
|
1168
1157
|
"colorShadowOutline": [
|
|
1169
|
-
"#
|
|
1170
|
-
"#
|
|
1158
|
+
"#1F1A1833 | hsl( 17 13% 11% / 0.2 ) | oklch(0.22 0.01 43 / 0.2 )",
|
|
1159
|
+
"#FFFDFA33 | hsl( 36 100% 99% / 0.2 ) | oklch(0.99 0 78 / 0.2 )",
|
|
1171
1160
|
],
|
|
1172
1161
|
"colorSpinnerBg": [
|
|
1173
|
-
"#
|
|
1174
|
-
"#
|
|
1162
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
1163
|
+
"#FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
1175
1164
|
],
|
|
1176
1165
|
"colorSpinnerIcon": [
|
|
1177
|
-
"#
|
|
1178
|
-
"#
|
|
1166
|
+
"#1F1A18E6 | hsl( 17 13% 11% / 0.9 ) | oklch(0.22 0.01 43 / 0.9 )",
|
|
1167
|
+
"#FFFDFAE6 | hsl( 36 100% 99% / 0.9 ) | oklch(0.99 0 78 / 0.9 )",
|
|
1179
1168
|
],
|
|
1180
1169
|
"colorStrokeLogoDashed": [
|
|
1181
|
-
"#
|
|
1182
|
-
"#
|
|
1170
|
+
"#E8E2DB | hsl( 32 22% 88%) | oklch(0.92 0.01 72 )",
|
|
1171
|
+
"#56504E | hsl( 15 5% 32%) | oklch(0.44 0.01 39 )",
|
|
1183
1172
|
],
|
|
1184
1173
|
"colorStrokeSelectedOutline": [
|
|
1185
|
-
"#
|
|
1186
|
-
"#
|
|
1174
|
+
"#1F1A18BF | hsl( 17 13% 11% / 0.75) | oklch(0.22 0.01 43 / 0.75)",
|
|
1175
|
+
"#FFFDFABF | hsl( 36 100% 99% / 0.75) | oklch(0.99 0 78 / 0.75)",
|
|
1187
1176
|
],
|
|
1188
1177
|
"colorStrokeSurface": [
|
|
1189
|
-
"#
|
|
1190
|
-
"#
|
|
1191
|
-
],
|
|
1192
|
-
"colorSubtleBgAI": [
|
|
1193
|
-
"#9d63d40d | hsl(271 57% 61% / 0.05) | oklch(0.61 0.17 306 / 0.05) ",
|
|
1194
|
-
"#8349b61a | hsl(272 43% 50% / 0.1) | oklch(0.53 0.17 306 / 0.1) ",
|
|
1178
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1179
|
+
"#1F1A18 | hsl( 17 13% 11%) | oklch(0.22 0.01 43 )",
|
|
1195
1180
|
],
|
|
1196
1181
|
"colorTextBadgeAccent": [
|
|
1197
|
-
"#
|
|
1198
|
-
"#
|
|
1182
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1183
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1199
1184
|
],
|
|
1200
1185
|
"colorTextBadgeError": [
|
|
1201
|
-
"#
|
|
1202
|
-
"#
|
|
1186
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1187
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1203
1188
|
],
|
|
1204
1189
|
"colorTextBadgeNeutral": [
|
|
1205
|
-
"#
|
|
1206
|
-
"#
|
|
1190
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1191
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1207
1192
|
],
|
|
1208
1193
|
"colorTextBadgeSuccess": [
|
|
1209
|
-
"#007465 | hsl(172 100%
|
|
1210
|
-
"#
|
|
1194
|
+
"#007465 | hsl( 172 100% 23%) | oklch(0.5 0.09 180 )",
|
|
1195
|
+
"#80C0B4 | hsl( 169 34% 63%) | oklch(0.76 0.07 181 )",
|
|
1211
1196
|
],
|
|
1212
1197
|
"colorTextBadgeWarning": [
|
|
1213
|
-
"#827100 | hsl(52 100%
|
|
1214
|
-
"#
|
|
1198
|
+
"#827100 | hsl( 52 100% 25%) | oklch(0.55 0.11 99 )",
|
|
1199
|
+
"#E3C600 | hsl( 52 100% 45%) | oklch(0.83 0.17 99 )",
|
|
1215
1200
|
],
|
|
1216
1201
|
"colorTextBannerAccent": [
|
|
1217
|
-
"#
|
|
1218
|
-
"#
|
|
1202
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1203
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1219
1204
|
],
|
|
1220
1205
|
"colorTextBannerError": [
|
|
1221
|
-
"#
|
|
1222
|
-
"#
|
|
1206
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1207
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1223
1208
|
],
|
|
1224
1209
|
"colorTextBannerNeutral": [
|
|
1225
|
-
"#
|
|
1226
|
-
"#
|
|
1210
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
1211
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
1227
1212
|
],
|
|
1228
1213
|
"colorTextBannerSuccess": [
|
|
1229
|
-
"#007465 | hsl(172 100%
|
|
1230
|
-
"#
|
|
1214
|
+
"#007465 | hsl( 172 100% 23%) | oklch(0.5 0.09 180 )",
|
|
1215
|
+
"#80C0B4 | hsl( 169 34% 63%) | oklch(0.76 0.07 181 )",
|
|
1231
1216
|
],
|
|
1232
1217
|
"colorTextBannerWarning": [
|
|
1233
|
-
"#827100 | hsl(52 100%
|
|
1234
|
-
"#
|
|
1218
|
+
"#827100 | hsl( 52 100% 25%) | oklch(0.55 0.11 99 )",
|
|
1219
|
+
"#E3C600 | hsl( 52 100% 45%) | oklch(0.83 0.17 99 )",
|
|
1235
1220
|
],
|
|
1236
1221
|
"colorTextButtonGhostAccent": [
|
|
1237
|
-
"#
|
|
1238
|
-
"#
|
|
1222
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1223
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1239
1224
|
],
|
|
1240
1225
|
"colorTextButtonGhostAccentActive": [
|
|
1241
|
-
"#
|
|
1242
|
-
"#
|
|
1226
|
+
"#984A00CC | hsl( 29 100% 30% / 0.8 ) | oklch(0.5 0.13 53 / 0.8 )",
|
|
1227
|
+
"#E4A07ACC | hsl( 22 66% 69% / 0.8 ) | oklch(0.76 0.1 50 / 0.8 )",
|
|
1243
1228
|
],
|
|
1244
1229
|
"colorTextButtonGhostDestructive": [
|
|
1245
|
-
"#
|
|
1246
|
-
"#
|
|
1230
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1231
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1247
1232
|
],
|
|
1248
1233
|
"colorTextButtonGhostDestructiveActive": [
|
|
1249
|
-
"#
|
|
1250
|
-
"#
|
|
1234
|
+
"#AF2436CC | hsl( 352 66% 41% / 0.8 ) | oklch(0.5 0.17 20 / 0.8 )",
|
|
1235
|
+
"#F49293CC | hsl( 359 82% 76% / 0.8 ) | oklch(0.76 0.12 20 / 0.8 )",
|
|
1251
1236
|
],
|
|
1252
1237
|
"colorTextButtonGhostNeutral": [
|
|
1253
|
-
"#
|
|
1254
|
-
"#
|
|
1238
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1239
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1255
1240
|
],
|
|
1256
1241
|
"colorTextButtonGhostNeutralActive": [
|
|
1257
|
-
"#
|
|
1258
|
-
"#
|
|
1242
|
+
"#635E57CC | hsl( 35 6% 36% / 0.8 ) | oklch(0.48 0.01 77 / 0.8 )",
|
|
1243
|
+
"#A69F9DCC | hsl( 13 5% 63% / 0.8 ) | oklch(0.71 0.01 37 / 0.8 )",
|
|
1259
1244
|
],
|
|
1260
1245
|
"colorTextButtonOutlineAccent": [
|
|
1261
|
-
"#
|
|
1262
|
-
"#
|
|
1246
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1247
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1263
1248
|
],
|
|
1264
1249
|
"colorTextButtonOutlineAccentActive": [
|
|
1265
|
-
"#
|
|
1266
|
-
"#
|
|
1250
|
+
"#984A00CC | hsl( 29 100% 30% / 0.8 ) | oklch(0.5 0.13 53 / 0.8 )",
|
|
1251
|
+
"#E4A07ACC | hsl( 22 66% 69% / 0.8 ) | oklch(0.76 0.1 50 / 0.8 )",
|
|
1267
1252
|
],
|
|
1268
1253
|
"colorTextButtonOutlineDestructive": [
|
|
1269
|
-
"#
|
|
1270
|
-
"#
|
|
1254
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1255
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1271
1256
|
],
|
|
1272
1257
|
"colorTextButtonOutlineDestructiveActive": [
|
|
1273
|
-
"#
|
|
1274
|
-
"#
|
|
1258
|
+
"#AF2436CC | hsl( 352 66% 41% / 0.8 ) | oklch(0.5 0.17 20 / 0.8 )",
|
|
1259
|
+
"#F49293CC | hsl( 359 82% 76% / 0.8 ) | oklch(0.76 0.12 20 / 0.8 )",
|
|
1275
1260
|
],
|
|
1276
1261
|
"colorTextButtonOutlineNeutral": [
|
|
1277
|
-
"#
|
|
1278
|
-
"#
|
|
1262
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1263
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1279
1264
|
],
|
|
1280
1265
|
"colorTextButtonOutlineNeutralActive": [
|
|
1281
|
-
"#
|
|
1282
|
-
"#
|
|
1266
|
+
"#1B1611CC | hsl( 30 23% 9% / 0.8 ) | oklch(0.2 0.01 67 / 0.8 )",
|
|
1267
|
+
"#E0D4CECC | hsl( 20 22% 84% / 0.8 ) | oklch(0.88 0.02 49 / 0.8 )",
|
|
1283
1268
|
],
|
|
1284
1269
|
"colorTextButtonSoftAccent": [
|
|
1285
|
-
"#
|
|
1286
|
-
"#
|
|
1270
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1271
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1287
1272
|
],
|
|
1288
1273
|
"colorTextButtonSoftAccentActive": [
|
|
1289
|
-
"#
|
|
1290
|
-
"#
|
|
1274
|
+
"#984A00CC | hsl( 29 100% 30% / 0.8 ) | oklch(0.5 0.13 53 / 0.8 )",
|
|
1275
|
+
"#E4A07ACC | hsl( 22 66% 69% / 0.8 ) | oklch(0.76 0.1 50 / 0.8 )",
|
|
1291
1276
|
],
|
|
1292
1277
|
"colorTextButtonSoftDestructive": [
|
|
1293
|
-
"#
|
|
1294
|
-
"#
|
|
1278
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1279
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1295
1280
|
],
|
|
1296
1281
|
"colorTextButtonSoftDestructiveActive": [
|
|
1297
|
-
"#
|
|
1298
|
-
"#
|
|
1282
|
+
"#AF2436CC | hsl( 352 66% 41% / 0.8 ) | oklch(0.5 0.17 20 / 0.8 )",
|
|
1283
|
+
"#F49293CC | hsl( 359 82% 76% / 0.8 ) | oklch(0.76 0.12 20 / 0.8 )",
|
|
1299
1284
|
],
|
|
1300
1285
|
"colorTextButtonSoftNeutral": [
|
|
1301
|
-
"#
|
|
1302
|
-
"#
|
|
1286
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1287
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1303
1288
|
],
|
|
1304
1289
|
"colorTextButtonSoftNeutralActive": [
|
|
1305
|
-
"#
|
|
1306
|
-
"#
|
|
1290
|
+
"#635E57CC | hsl( 35 6% 36% / 0.8 ) | oklch(0.48 0.01 77 / 0.8 )",
|
|
1291
|
+
"#A69F9DCC | hsl( 13 5% 63% / 0.8 ) | oklch(0.71 0.01 37 / 0.8 )",
|
|
1307
1292
|
],
|
|
1308
1293
|
"colorTextButtonSolidAccent": [
|
|
1309
|
-
"#
|
|
1310
|
-
"#
|
|
1294
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1295
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1311
1296
|
],
|
|
1312
1297
|
"colorTextButtonSolidAccentActive": [
|
|
1313
|
-
"#
|
|
1314
|
-
"#
|
|
1298
|
+
"#FFFDFACC | hsl( 36 100% 99% / 0.8 ) | oklch(0.99 0 78 / 0.8 )",
|
|
1299
|
+
"#FFFDFACC | hsl( 36 100% 99% / 0.8 ) | oklch(0.99 0 78 / 0.8 )",
|
|
1315
1300
|
],
|
|
1316
1301
|
"colorTextButtonSolidDestructive": [
|
|
1317
|
-
"#
|
|
1318
|
-
"#
|
|
1302
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1303
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1319
1304
|
],
|
|
1320
1305
|
"colorTextButtonSolidDestructiveActive": [
|
|
1321
|
-
"#
|
|
1322
|
-
"#
|
|
1306
|
+
"#FFFDFACC | hsl( 36 100% 99% / 0.8 ) | oklch(0.99 0 78 / 0.8 )",
|
|
1307
|
+
"#FFFDFACC | hsl( 36 100% 99% / 0.8 ) | oklch(0.99 0 78 / 0.8 )",
|
|
1323
1308
|
],
|
|
1324
1309
|
"colorTextButtonSolidNeutral": [
|
|
1325
|
-
"#
|
|
1326
|
-
"#
|
|
1310
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1311
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
1327
1312
|
],
|
|
1328
1313
|
"colorTextButtonSolidNeutralActive": [
|
|
1329
|
-
"#
|
|
1330
|
-
"#
|
|
1314
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1315
|
+
"#201B19CC | hsl( 17 12% 11% / 0.8 ) | oklch(0.23 0.01 43 / 0.8 )",
|
|
1331
1316
|
],
|
|
1332
1317
|
"colorTextEntityAvatarDefault": [
|
|
1333
|
-
"#
|
|
1334
|
-
"#
|
|
1318
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
1319
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
1335
1320
|
],
|
|
1336
1321
|
"colorTextEntityAvatarHover": [
|
|
1337
|
-
"#
|
|
1338
|
-
"#
|
|
1322
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
1323
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
1339
1324
|
],
|
|
1340
1325
|
"colorTextListItemGeneralDisabled": [
|
|
1341
|
-
"#
|
|
1342
|
-
"#
|
|
1326
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
1327
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1343
1328
|
],
|
|
1344
1329
|
"colorTextMenuItem": [
|
|
1345
|
-
"#
|
|
1346
|
-
"#
|
|
1330
|
+
"#1B1611E6 | hsl( 30 23% 9% / 0.9 ) | oklch(0.2 0.01 67 / 0.9 )",
|
|
1331
|
+
"#E0D4CEE6 | hsl( 20 22% 84% / 0.9 ) | oklch(0.88 0.02 49 / 0.9 )",
|
|
1347
1332
|
],
|
|
1348
1333
|
"colorTextMilestone": [
|
|
1349
|
-
"#
|
|
1350
|
-
"#
|
|
1334
|
+
"#1F1A1880 | hsl( 17 13% 11% / 0.5 ) | oklch(0.22 0.01 43 / 0.5 )",
|
|
1335
|
+
"#FFFDFA80 | hsl( 36 100% 99% / 0.5 ) | oklch(0.99 0 78 / 0.5 )",
|
|
1351
1336
|
],
|
|
1352
1337
|
"colorTextReactionsSelected": [
|
|
1353
|
-
"#
|
|
1354
|
-
"#
|
|
1338
|
+
"#AB5400 | hsl( 29 100% 34%) | oklch(0.54 0.14 53 )",
|
|
1339
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
1355
1340
|
],
|
|
1356
1341
|
"colorTextSecondary": [
|
|
1357
|
-
"#
|
|
1358
|
-
"#
|
|
1342
|
+
"#1B1611B3 | hsl( 30 23% 9% / 0.7 ) | oklch(0.2 0.01 67 / 0.7 )",
|
|
1343
|
+
"#E0D4CEA6 | hsl( 20 22% 84% / 0.65) | oklch(0.88 0.02 49 / 0.65)",
|
|
1359
1344
|
],
|
|
1360
1345
|
"colorTextWhiteboardAccent": [
|
|
1361
|
-
"#
|
|
1362
|
-
"#
|
|
1346
|
+
"#1B161199 | hsl( 30 23% 9% / 0.6 ) | oklch(0.2 0.01 67 / 0.6 )",
|
|
1347
|
+
"#1A161499 | hsl( 20 13% 9% / 0.6 ) | oklch(0.2 0.01 48 / 0.6 )",
|
|
1363
1348
|
],
|
|
1364
1349
|
"colorTextWhiteboardDefault": [
|
|
1365
|
-
"#
|
|
1366
|
-
"#
|
|
1350
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
1351
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
1367
1352
|
],
|
|
1368
1353
|
"colorTextWhiteboardDisabled": [
|
|
1369
|
-
"#
|
|
1370
|
-
"#
|
|
1354
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
1355
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1371
1356
|
],
|
|
1372
1357
|
"colorTextWhiteboardInversedDefault": [
|
|
1373
|
-
"#
|
|
1374
|
-
"#
|
|
1358
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1359
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1375
1360
|
],
|
|
1376
1361
|
"colorUnitHeaderWhiteboardDefault": [
|
|
1377
|
-
"#
|
|
1378
|
-
"#
|
|
1362
|
+
"#1B161199 | hsl( 30 23% 9% / 0.6 ) | oklch(0.2 0.01 67 / 0.6 )",
|
|
1363
|
+
"#E0D4CE99 | hsl( 20 22% 84% / 0.6 ) | oklch(0.88 0.02 49 / 0.6 )",
|
|
1379
1364
|
],
|
|
1380
1365
|
"colorUnitWhiteboardBgDefault": [
|
|
1381
|
-
"#
|
|
1382
|
-
"#373230 | hsl(17
|
|
1366
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1367
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1383
1368
|
],
|
|
1384
1369
|
"colorUnitWhiteboardBorderDefault": [
|
|
1385
|
-
"#
|
|
1386
|
-
"#
|
|
1370
|
+
"#1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
1371
|
+
"#E0D4CE40 | hsl( 20 22% 84% / 0.25) | oklch(0.88 0.02 49 / 0.25)",
|
|
1387
1372
|
],
|
|
1388
1373
|
"commentBubbleBg": [
|
|
1389
|
-
"#
|
|
1390
|
-
"#373230 | hsl(17
|
|
1374
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1375
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1391
1376
|
],
|
|
1392
1377
|
"commentColor": [
|
|
1393
|
-
"#
|
|
1394
|
-
"#
|
|
1378
|
+
"#F8E78799 | hsl( 51 89% 75% / 0.6 ) | oklch(0.92 0.12 99 / 0.6 )",
|
|
1379
|
+
"#F8D80066 | hsl( 52 100% 49% / 0.4 ) | oklch(0.88 0.18 98 / 0.4 )",
|
|
1395
1380
|
],
|
|
1396
1381
|
"commentsPanelShadow": [
|
|
1397
1382
|
[
|
|
1398
|
-
"0 0 1px 0 #
|
|
1399
|
-
"0 4px 6px 0 #
|
|
1400
|
-
"0 3px 12px 0 #
|
|
1383
|
+
"0 0 1px 0 #635E5733 | hsl( 35 6% 36% / 0.2 ) | oklch(0.48 0.01 77 / 0.2 )",
|
|
1384
|
+
"0 4px 6px 0 #635E570D | hsl( 35 6% 36% / 0.05) | oklch(0.48 0.01 77 / 0.05)",
|
|
1385
|
+
"0 3px 12px 0 #635E571A | hsl( 35 6% 36% / 0.1 ) | oklch(0.48 0.01 77 / 0.1 )",
|
|
1401
1386
|
],
|
|
1402
1387
|
[
|
|
1403
|
-
"0 0 1px 0 #373230 | hsl(17
|
|
1404
|
-
"0 4px 6px 0 #
|
|
1405
|
-
"0 3px 12px 0 #
|
|
1388
|
+
"0 0 1px 0 #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1389
|
+
"0 4px 6px 0 #1A16140D | hsl( 20 13% 9% / 0.05) | oklch(0.2 0.01 48 / 0.05)",
|
|
1390
|
+
"0 3px 12px 0 #1A161426 | hsl( 20 13% 9% / 0.15) | oklch(0.2 0.01 48 / 0.15)",
|
|
1406
1391
|
],
|
|
1407
1392
|
],
|
|
1408
1393
|
"danger": [
|
|
1409
|
-
"#
|
|
1410
|
-
"#
|
|
1394
|
+
"#D33E4B | hsl( 355 63% 54%) | oklch(0.59 0.18 20 )",
|
|
1395
|
+
"#E14E5B | hsl( 355 71% 59%) | oklch(0.63 0.18 19 )",
|
|
1411
1396
|
],
|
|
1412
1397
|
"darkenPrimary": [
|
|
1413
|
-
"#
|
|
1414
|
-
"#
|
|
1415
|
-
],
|
|
1416
|
-
"defaultCardTypeColorUppercaseHex": [
|
|
1417
|
-
"#fba32f | hsl(34 96% 58%) | oklch(0.79 0.16 68) ",
|
|
1418
|
-
"#fba32f | hsl(34 96% 58%) | oklch(0.79 0.16 68) ",
|
|
1398
|
+
"#914F1C | hsl( 26 68% 34%) | oklch(0.5 0.11 54 )",
|
|
1399
|
+
"#914F1C | hsl( 26 68% 34%) | oklch(0.5 0.11 54 )",
|
|
1419
1400
|
],
|
|
1420
1401
|
"disabledInversedTextColor": [
|
|
1421
|
-
"#
|
|
1422
|
-
"#
|
|
1402
|
+
"#1F1A1840 | hsl( 17 13% 11% / 0.25) | oklch(0.22 0.01 43 / 0.25)",
|
|
1403
|
+
"#FFFDFA40 | hsl( 36 100% 99% / 0.25) | oklch(0.99 0 78 / 0.25)",
|
|
1423
1404
|
],
|
|
1424
1405
|
"disabledTextColor": [
|
|
1425
|
-
"#
|
|
1426
|
-
"#
|
|
1406
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
1407
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1427
1408
|
],
|
|
1428
1409
|
"entityCardBgColor": [
|
|
1429
|
-
"#
|
|
1430
|
-
"#
|
|
1410
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1411
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
1431
1412
|
],
|
|
1432
1413
|
"entityCardDoneColor": [
|
|
1433
|
-
"#
|
|
1434
|
-
"#
|
|
1414
|
+
"#F3ECE54D | hsl( 30 37% 93% / 0.3 ) | oklch(0.95 0.01 68 / 0.3 )",
|
|
1415
|
+
"#322D2B4D | hsl( 17 8% 18% / 0.3 ) | oklch(0.3 0.01 43 / 0.3 )",
|
|
1435
1416
|
],
|
|
1436
1417
|
"entityCardHoverColor": [
|
|
1437
|
-
"#
|
|
1438
|
-
"#37323080 | hsl(17
|
|
1418
|
+
"#FDF6EFCC | hsl( 30 78% 96% / 0.8 ) | oklch(0.98 0.01 68 / 0.8 )",
|
|
1419
|
+
"#37323080 | hsl( 17 7% 20% / 0.5 ) | oklch(0.32 0.01 43 / 0.5 )",
|
|
1439
1420
|
],
|
|
1440
1421
|
"entityCardSelectedColor": [
|
|
1441
|
-
"#
|
|
1442
|
-
"#37323080 | hsl(17
|
|
1422
|
+
"#FDF6EFCC | hsl( 30 78% 96% / 0.8 ) | oklch(0.98 0.01 68 / 0.8 )",
|
|
1423
|
+
"#37323080 | hsl( 17 7% 20% / 0.5 ) | oklch(0.32 0.01 43 / 0.5 )",
|
|
1443
1424
|
],
|
|
1444
1425
|
"entityCardShadow": [
|
|
1445
1426
|
[
|
|
1446
|
-
"0 0 0 1px #
|
|
1447
|
-
"0 2px 4px -4px #
|
|
1427
|
+
"0 0 0 1px #7D77701A | hsl( 32 5% 46% / 0.1 ) | oklch(0.57 0.01 72 / 0.1 )",
|
|
1428
|
+
"0 2px 4px -4px #7D777033 | hsl( 32 5% 46% / 0.2 ) | oklch(0.57 0.01 72 / 0.2 )",
|
|
1448
1429
|
],
|
|
1449
1430
|
[
|
|
1450
|
-
"0 0 0 1px #
|
|
1451
|
-
"0 2px 4px -4px #
|
|
1431
|
+
"0 0 0 1px #201B191A | hsl( 17 12% 11% / 0.1 ) | oklch(0.23 0.01 43 / 0.1 )",
|
|
1432
|
+
"0 2px 4px -4px #201B1933 | hsl( 17 12% 11% / 0.2 ) | oklch(0.23 0.01 43 / 0.2 )",
|
|
1452
1433
|
],
|
|
1453
1434
|
],
|
|
1454
1435
|
"entityCardShadowHover": [
|
|
1455
1436
|
[
|
|
1456
|
-
"0 0 0 1px #
|
|
1457
|
-
"0 2px 4px -4px #
|
|
1437
|
+
"0 0 0 1px #7D77701A | hsl( 32 5% 46% / 0.1 ) | oklch(0.57 0.01 72 / 0.1 )",
|
|
1438
|
+
"0 2px 4px -4px #7D777033 | hsl( 32 5% 46% / 0.2 ) | oklch(0.57 0.01 72 / 0.2 )",
|
|
1458
1439
|
],
|
|
1459
1440
|
[
|
|
1460
|
-
"0 0 0 1px #
|
|
1461
|
-
"0 2px 4px -4px #
|
|
1441
|
+
"0 0 0 1px #201B191A | hsl( 17 12% 11% / 0.1 ) | oklch(0.23 0.01 43 / 0.1 )",
|
|
1442
|
+
"0 2px 4px -4px #201B1933 | hsl( 17 12% 11% / 0.2 ) | oklch(0.23 0.01 43 / 0.2 )",
|
|
1462
1443
|
],
|
|
1463
1444
|
],
|
|
1464
1445
|
"entityNodeBgColor": [
|
|
1465
|
-
"#
|
|
1466
|
-
"#272321 | hsl(20
|
|
1446
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1447
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
1467
1448
|
],
|
|
1468
1449
|
"entityNodeBorder": [
|
|
1469
|
-
"0.5px solid #
|
|
1470
|
-
"0.5px solid #
|
|
1450
|
+
"0.5px solid #2723214D | hsl( 20 8% 14% / 0.3 ) | oklch(0.26 0.01 48 / 0.3 )",
|
|
1451
|
+
"0.5px solid #CCC6BF66 | hsl( 32 11% 77% / 0.4 ) | oklch(0.83 0.01 72 / 0.4 )",
|
|
1471
1452
|
],
|
|
1472
1453
|
"entityNodeBorderHover": [
|
|
1473
|
-
"0.5px solid #
|
|
1474
|
-
"0.5px solid #
|
|
1454
|
+
"0.5px solid #635E57CC | hsl( 35 6% 36% / 0.8 ) | oklch(0.48 0.01 77 / 0.8 )",
|
|
1455
|
+
"0.5px solid #E1DAD3CC | hsl( 30 19% 85% / 0.8 ) | oklch(0.89 0.01 68 / 0.8 )",
|
|
1475
1456
|
],
|
|
1476
1457
|
"entityNodeColor": [
|
|
1477
|
-
"#272321 | hsl(20
|
|
1478
|
-
"#
|
|
1458
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
1459
|
+
"#CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
1479
1460
|
],
|
|
1480
1461
|
"entityNodeHoverColor": [
|
|
1481
|
-
"#
|
|
1482
|
-
"#
|
|
1462
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
1463
|
+
"#E1DAD3 | hsl( 30 19% 85%) | oklch(0.89 0.01 68 )",
|
|
1483
1464
|
],
|
|
1484
1465
|
"errorBgColor": [
|
|
1485
|
-
"#
|
|
1486
|
-
"#
|
|
1466
|
+
"#D33E4B33 | hsl( 355 63% 54% / 0.2 ) | oklch(0.59 0.18 20 / 0.2 )",
|
|
1467
|
+
"#D5324799 | hsl( 352 66% 52% / 0.6 ) | oklch(0.58 0.2 19 / 0.6 )",
|
|
1487
1468
|
],
|
|
1488
1469
|
"errorButtonColor": [
|
|
1489
|
-
"#
|
|
1490
|
-
"#
|
|
1470
|
+
"#D33E4B | hsl( 355 63% 54%) | oklch(0.59 0.18 20 )",
|
|
1471
|
+
"#E14E5B | hsl( 355 71% 59%) | oklch(0.63 0.18 19 )",
|
|
1491
1472
|
],
|
|
1492
1473
|
"errorTextColor": [
|
|
1493
|
-
"#
|
|
1494
|
-
"#
|
|
1474
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1475
|
+
"#F4B3B2 | hsl( 1 75% 83%) | oklch(0.83 0.08 20 )",
|
|
1495
1476
|
],
|
|
1496
1477
|
"favoritesIconBg": [
|
|
1497
|
-
"#
|
|
1498
|
-
"#
|
|
1478
|
+
"#EBA94433 | hsl( 36 81% 59% / 0.2 ) | oklch(0.78 0.14 74 / 0.2 )",
|
|
1479
|
+
"#EBA94433 | hsl( 36 81% 59% / 0.2 ) | oklch(0.78 0.14 74 / 0.2 )",
|
|
1499
1480
|
],
|
|
1500
1481
|
"favoritesIconColor": [
|
|
1501
|
-
"#
|
|
1502
|
-
"#
|
|
1482
|
+
"#EBA944 | hsl( 36 81% 59%) | oklch(0.78 0.14 74 )",
|
|
1483
|
+
"#EBA944 | hsl( 36 81% 59%) | oklch(0.78 0.14 74 )",
|
|
1503
1484
|
],
|
|
1504
1485
|
"filterGroup1Bg": [
|
|
1505
|
-
"#
|
|
1506
|
-
"#373230 | hsl(17
|
|
1486
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1487
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1507
1488
|
],
|
|
1508
1489
|
"filterGroup2Bg": [
|
|
1509
|
-
"#
|
|
1510
|
-
"#
|
|
1490
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1491
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
1511
1492
|
],
|
|
1512
1493
|
"filterGroupBorder": [
|
|
1513
|
-
"#
|
|
1514
|
-
"#
|
|
1494
|
+
"#0000000D | hsl(none 0% 0% / 0.05) | oklch(0 0 none / 0.05)",
|
|
1495
|
+
"#FFFFFE08 | hsl( 60 100% 100% / 0.03) | oklch(1 0 106 / 0.03)",
|
|
1515
1496
|
],
|
|
1516
1497
|
"floatEditorActiveColor": [
|
|
1517
|
-
"#
|
|
1518
|
-
"#
|
|
1498
|
+
"#984A00 | hsl( 29 100% 30%) | oklch(0.5 0.13 53 )",
|
|
1499
|
+
"#E4A07A | hsl( 22 66% 69%) | oklch(0.76 0.1 50 )",
|
|
1519
1500
|
],
|
|
1520
1501
|
"floatEditorMenuBg": [
|
|
1521
|
-
"#
|
|
1522
|
-
"#373230 | hsl(17
|
|
1502
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
1503
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1523
1504
|
],
|
|
1524
1505
|
"formBg": [
|
|
1525
|
-
"#
|
|
1526
|
-
"#
|
|
1506
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1507
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
1527
1508
|
],
|
|
1528
1509
|
"formEditorFieldBg": [
|
|
1529
|
-
"#
|
|
1530
|
-
"#
|
|
1510
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1511
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
1531
1512
|
],
|
|
1532
1513
|
"formHeaderShadow": [
|
|
1533
|
-
"0 0 6px 0 #
|
|
1534
|
-
"0 0 6px 0 #
|
|
1514
|
+
"0 0 6px 0 #7D77701A | hsl( 32 5% 46% / 0.1 ) | oklch(0.57 0.01 72 / 0.1 )",
|
|
1515
|
+
"0 0 6px 0 #1A161466 | hsl( 20 13% 9% / 0.4 ) | oklch(0.2 0.01 48 / 0.4 )",
|
|
1535
1516
|
],
|
|
1536
1517
|
"gridActiveCellBorderColor": [
|
|
1537
|
-
"#
|
|
1538
|
-
"#
|
|
1518
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
1519
|
+
"#C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
1539
1520
|
],
|
|
1540
1521
|
"gridCellBgColor": [
|
|
1541
|
-
"#
|
|
1542
|
-
"#
|
|
1522
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1523
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
1543
1524
|
],
|
|
1544
1525
|
"gridCellBorderColor": [
|
|
1545
|
-
"#
|
|
1546
|
-
"#373230 | hsl(17
|
|
1526
|
+
"#EDE7E0 | hsl( 32 27% 90%) | oklch(0.93 0.01 72 )",
|
|
1527
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1547
1528
|
],
|
|
1548
1529
|
"gridDisabledCellBgColor": [
|
|
1549
|
-
"#
|
|
1550
|
-
"#272321 | hsl(20
|
|
1530
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1531
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
1551
1532
|
],
|
|
1552
1533
|
"gridDisabledSelectedCellBgColor": [
|
|
1553
|
-
"#
|
|
1554
|
-
"#522609 | hsl(24
|
|
1534
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
1535
|
+
"#522609 | hsl( 24 80% 18%) | oklch(0.32 0.08 50 )",
|
|
1555
1536
|
],
|
|
1556
1537
|
"gridHeaderBgColor": [
|
|
1557
|
-
"#
|
|
1558
|
-
"#272321 | hsl(20
|
|
1538
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1539
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
1559
1540
|
],
|
|
1560
1541
|
"gridHeaderHoverBgColor": [
|
|
1561
|
-
"#
|
|
1562
|
-
"#
|
|
1542
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1543
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
1563
1544
|
],
|
|
1564
1545
|
"gridHeaderTextColor": [
|
|
1565
|
-
"#
|
|
1566
|
-
"#
|
|
1546
|
+
"#7D7770 | hsl( 32 5% 46%) | oklch(0.57 0.01 72 )",
|
|
1547
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
1567
1548
|
],
|
|
1568
1549
|
"gridHighlightedCellBgColor": [
|
|
1569
|
-
"#
|
|
1570
|
-
"#522609 | hsl(24
|
|
1550
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
1551
|
+
"#522609 | hsl( 24 80% 18%) | oklch(0.32 0.08 50 )",
|
|
1571
1552
|
],
|
|
1572
1553
|
"gridSelectedCellBgColor": [
|
|
1573
|
-
"#
|
|
1574
|
-
"#
|
|
1554
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
1555
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
1575
1556
|
],
|
|
1576
1557
|
"gridSelectedCellBorderColor": [
|
|
1577
|
-
"#
|
|
1578
|
-
"#
|
|
1558
|
+
"#F7D0B2 | hsl( 26 81% 83%) | oklch(0.88 0.06 59 )",
|
|
1559
|
+
"#7A3300 | hsl( 25 100% 24%) | oklch(0.41 0.11 48 )",
|
|
1579
1560
|
],
|
|
1580
1561
|
"gridSelectedPinnedCellBorderColor": [
|
|
1581
|
-
"#
|
|
1582
|
-
"#
|
|
1562
|
+
"#F0BA8F | hsl( 27 76% 75%) | oklch(0.83 0.08 60 )",
|
|
1563
|
+
"#7A3300 | hsl( 25 100% 24%) | oklch(0.41 0.11 48 )",
|
|
1583
1564
|
],
|
|
1584
1565
|
"highlightBgAqua": [
|
|
1585
|
-
"#
|
|
1586
|
-
"#
|
|
1566
|
+
"#BAF8EE | hsl( 170 82% 85%) | oklch(0.93 0.06 184 )",
|
|
1567
|
+
"#124940 | hsl( 170 60% 18%) | oklch(0.37 0.06 180 )",
|
|
1587
1568
|
],
|
|
1588
1569
|
"highlightBgAquamarine": [
|
|
1589
|
-
"#
|
|
1590
|
-
"#
|
|
1570
|
+
"#C4F7DD | hsl( 149 76% 87%) | oklch(0.93 0.06 163 )",
|
|
1571
|
+
"#29503C | hsl( 149 32% 24%) | oklch(0.4 0.06 160 )",
|
|
1591
1572
|
],
|
|
1592
1573
|
"highlightBgBlue": [
|
|
1593
|
-
"#
|
|
1594
|
-
"#
|
|
1574
|
+
"#DFEDFF | hsl( 214 100% 94%) | oklch(0.94 0.03 255 )",
|
|
1575
|
+
"#2F425E | hsl( 216 33% 28%) | oklch(0.38 0.05 258 )",
|
|
1595
1576
|
],
|
|
1596
1577
|
"highlightBgGreen": [
|
|
1597
|
-
"#
|
|
1598
|
-
"#
|
|
1578
|
+
"#DAF5CA | hsl( 98 68% 88%) | oklch(0.94 0.06 134 )",
|
|
1579
|
+
"#354727 | hsl( 94 29% 22%) | oklch(0.37 0.06 132 )",
|
|
1599
1580
|
],
|
|
1600
1581
|
"highlightBgGrey": [
|
|
1601
|
-
"#
|
|
1602
|
-
"#
|
|
1582
|
+
"#ECEBEB | hsl( 0 3% 92%) | oklch(0.94 0 17 )",
|
|
1583
|
+
"#464040 | hsl( 0 4% 26%) | oklch(0.38 0.01 18 )",
|
|
1603
1584
|
],
|
|
1604
1585
|
"highlightBgPink": [
|
|
1605
|
-
"#
|
|
1606
|
-
"#
|
|
1586
|
+
"#FFE5F2 | hsl( 330 100% 95%) | oklch(0.95 0.03 346 )",
|
|
1587
|
+
"#58374B | hsl( 324 23% 28%) | oklch(0.38 0.06 343 )",
|
|
1607
1588
|
],
|
|
1608
1589
|
"highlightBgPurple": [
|
|
1609
|
-
"#
|
|
1610
|
-
"#
|
|
1590
|
+
"#F4E7FF | hsl( 273 100% 95%) | oklch(0.95 0.03 310 )",
|
|
1591
|
+
"#4D3A59 | hsl( 277 21% 29%) | oklch(0.38 0.06 312 )",
|
|
1611
1592
|
],
|
|
1612
1593
|
"highlightBgRed": [
|
|
1613
|
-
"#
|
|
1614
|
-
"#
|
|
1594
|
+
"#FEE6E3 | hsl( 7 93% 94%) | oklch(0.94 0.03 26 )",
|
|
1595
|
+
"#5D3735 | hsl( 3 27% 29%) | oklch(0.38 0.05 23 )",
|
|
1615
1596
|
],
|
|
1616
1597
|
"highlightBgYellow": [
|
|
1617
|
-
"#
|
|
1618
|
-
"#
|
|
1598
|
+
"#FEEABF | hsl( 41 97% 87%) | oklch(0.94 0.06 86 )",
|
|
1599
|
+
"#4E401A | hsl( 44 50% 20%) | oklch(0.38 0.06 89 )",
|
|
1619
1600
|
],
|
|
1620
1601
|
"highlightFgAqua": [
|
|
1621
|
-
"#
|
|
1622
|
-
"#
|
|
1602
|
+
"#2E907F | hsl( 170 52% 37%) | oklch(0.59 0.09 179 )",
|
|
1603
|
+
"#62CDB7 | hsl( 168 52% 59%) | oklch(0.78 0.1 178 )",
|
|
1623
1604
|
],
|
|
1624
1605
|
"highlightFgAquamarine": [
|
|
1625
|
-
"#
|
|
1626
|
-
"#
|
|
1606
|
+
"#379164 | hsl( 150 45% 39%) | oklch(0.59 0.11 158 )",
|
|
1607
|
+
"#7CCDA0 | hsl( 147 45% 65%) | oklch(0.78 0.1 159 )",
|
|
1627
1608
|
],
|
|
1628
1609
|
"highlightFgBlue": [
|
|
1629
|
-
"#
|
|
1630
|
-
"#
|
|
1610
|
+
"#4C81D5 | hsl( 217 62% 57%) | oklch(0.61 0.14 259 )",
|
|
1611
|
+
"#98BDF3 | hsl( 216 79% 77%) | oklch(0.79 0.09 258 )",
|
|
1631
1612
|
],
|
|
1632
1613
|
"highlightFgGreen": [
|
|
1633
|
-
"#
|
|
1634
|
-
"#
|
|
1614
|
+
"#5D8F27 | hsl( 89 57% 36%) | oklch(0.59 0.14 132 )",
|
|
1615
|
+
"#A0C782 | hsl( 94 38% 65%) | oklch(0.78 0.1 132 )",
|
|
1635
1616
|
],
|
|
1636
1617
|
"highlightFgGrey": [
|
|
1637
|
-
"#
|
|
1638
|
-
"#
|
|
1618
|
+
"#878080 | hsl( 0 3% 52%) | oklch(0.61 0.01 17 )",
|
|
1619
|
+
"#C1BABA | hsl( 0 5% 74%) | oklch(0.79 0.01 17 )",
|
|
1639
1620
|
],
|
|
1640
1621
|
"highlightFgOnBgAqua": [
|
|
1641
|
-
"#
|
|
1642
|
-
"#
|
|
1622
|
+
"#247769 | hsl( 170 54% 30%) | oklch(0.52 0.08 179 )",
|
|
1623
|
+
"#70DEC8 | hsl( 168 63% 65%) | oklch(0.83 0.11 179 )",
|
|
1643
1624
|
],
|
|
1644
1625
|
"highlightFgOnBgAquamarine": [
|
|
1645
|
-
"#
|
|
1646
|
-
"#
|
|
1626
|
+
"#2B7852 | hsl( 150 47% 32%) | oklch(0.51 0.1 158 )",
|
|
1627
|
+
"#8CE1B4 | hsl( 148 59% 72%) | oklch(0.84 0.1 160 )",
|
|
1647
1628
|
],
|
|
1648
1629
|
"highlightFgOnBgBlue": [
|
|
1649
|
-
"#
|
|
1650
|
-
"#
|
|
1630
|
+
"#3C6BB1 | hsl( 216 49% 46%) | oklch(0.53 0.12 258 )",
|
|
1631
|
+
"#AFCEF8 | hsl( 215 84% 83%) | oklch(0.84 0.07 256 )",
|
|
1651
1632
|
],
|
|
1652
1633
|
"highlightFgOnBgGreen": [
|
|
1653
|
-
"#
|
|
1654
|
-
"#
|
|
1634
|
+
"#4C771F | hsl( 89 59% 29%) | oklch(0.52 0.13 132 )",
|
|
1635
|
+
"#AFD892 | hsl( 95 47% 71%) | oklch(0.84 0.1 133 )",
|
|
1655
1636
|
],
|
|
1656
1637
|
"highlightFgOnBgGrey": [
|
|
1657
|
-
"#
|
|
1658
|
-
"#
|
|
1638
|
+
"#6F6968 | hsl( 9 3% 42%) | oklch(0.53 0.01 29 )",
|
|
1639
|
+
"#D0CACA | hsl( 0 6% 80%) | oklch(0.84 0.01 17 )",
|
|
1659
1640
|
],
|
|
1660
1641
|
"highlightFgOnBgPink": [
|
|
1661
|
-
"#
|
|
1662
|
-
"#
|
|
1642
|
+
"#B2388B | hsl( 319 52% 46%) | oklch(0.54 0.18 343 )",
|
|
1643
|
+
"#F9B8DD | hsl( 326 84% 85%) | oklch(0.85 0.09 344 )",
|
|
1663
1644
|
],
|
|
1664
1645
|
"highlightFgOnBgPurple": [
|
|
1665
|
-
"#
|
|
1666
|
-
"#
|
|
1646
|
+
"#973FC7 | hsl( 279 55% 51%) | oklch(0.55 0.21 311 )",
|
|
1647
|
+
"#E0BEFA | hsl( 274 86% 86%) | oklch(0.85 0.09 310 )",
|
|
1667
1648
|
],
|
|
1668
1649
|
"highlightFgOnBgRed": [
|
|
1669
|
-
"#
|
|
1670
|
-
"#
|
|
1650
|
+
"#BF3237 | hsl( 358 59% 47%) | oklch(0.54 0.18 24 )",
|
|
1651
|
+
"#F6BEB9 | hsl( 5 77% 85%) | oklch(0.85 0.07 24 )",
|
|
1671
1652
|
],
|
|
1672
1653
|
"highlightFgOnBgYellow": [
|
|
1673
|
-
"#
|
|
1674
|
-
"#
|
|
1654
|
+
"#82681E | hsl( 44 62% 31%) | oklch(0.53 0.1 89 )",
|
|
1655
|
+
"#E8C877 | hsl( 43 71% 69%) | oklch(0.84 0.11 89 )",
|
|
1675
1656
|
],
|
|
1676
1657
|
"highlightFgPink": [
|
|
1677
|
-
"#
|
|
1678
|
-
"#
|
|
1658
|
+
"#D449A6 | hsl( 320 62% 56%) | oklch(0.63 0.2 343 )",
|
|
1659
|
+
"#EDA7CF | hsl( 326 66% 79%) | oklch(0.81 0.1 344 )",
|
|
1679
1660
|
],
|
|
1680
1661
|
"highlightFgPurple": [
|
|
1681
|
-
"#
|
|
1682
|
-
"#
|
|
1662
|
+
"#B059E2 | hsl( 278 70% 62%) | oklch(0.63 0.21 311 )",
|
|
1663
|
+
"#D3ACEF | hsl( 275 68% 81%) | oklch(0.8 0.1 311 )",
|
|
1683
1664
|
],
|
|
1684
1665
|
"highlightFgRed": [
|
|
1685
|
-
"#
|
|
1686
|
-
"#
|
|
1666
|
+
"#E3464A | hsl( 358 74% 58%) | oklch(0.62 0.19 23 )",
|
|
1667
|
+
"#F0AAA4 | hsl( 5 72% 79%) | oklch(0.8 0.08 25 )",
|
|
1687
1668
|
],
|
|
1688
1669
|
"highlightFgYellow": [
|
|
1689
|
-
"#
|
|
1690
|
-
"#
|
|
1670
|
+
"#9C7D26 | hsl( 44 61% 38%) | oklch(0.6 0.11 88 )",
|
|
1671
|
+
"#D7B86A | hsl( 43 58% 63%) | oklch(0.79 0.1 88 )",
|
|
1691
1672
|
],
|
|
1692
1673
|
"iconColor": [
|
|
1693
|
-
"#
|
|
1694
|
-
"#
|
|
1674
|
+
"#1B1611B3 | hsl( 30 23% 9% / 0.7 ) | oklch(0.2 0.01 67 / 0.7 )",
|
|
1675
|
+
"#E0D4CEB3 | hsl( 20 22% 84% / 0.7 ) | oklch(0.88 0.02 49 / 0.7 )",
|
|
1695
1676
|
],
|
|
1696
1677
|
"infoBox": [
|
|
1697
|
-
"#
|
|
1698
|
-
"#
|
|
1678
|
+
"#FFF7B980 | hsl( 53 100% 86% / 0.5 ) | oklch(0.97 0.08 102 / 0.5 )",
|
|
1679
|
+
"#F8D80033 | hsl( 52 100% 49% / 0.2 ) | oklch(0.88 0.18 98 / 0.2 )",
|
|
1699
1680
|
],
|
|
1700
1681
|
"inputBgColor": [
|
|
1701
|
-
"#
|
|
1702
|
-
"#
|
|
1682
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1683
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
1703
1684
|
],
|
|
1704
1685
|
"inputBorderBlendMode": [
|
|
1705
1686
|
"multiply",
|
|
1706
1687
|
"lighten",
|
|
1707
1688
|
],
|
|
1708
1689
|
"inputBorderColor": [
|
|
1709
|
-
"0 0 0 1px #
|
|
1710
|
-
"0 0 0 1px #
|
|
1690
|
+
"0 0 0 1px #E8E2DBB3 | hsl( 32 22% 88% / 0.7 ) | oklch(0.92 0.01 72 / 0.7 )",
|
|
1691
|
+
"0 0 0 1px #56504EB3 | hsl( 15 5% 32% / 0.7 ) | oklch(0.44 0.01 39 / 0.7 )",
|
|
1711
1692
|
],
|
|
1712
1693
|
"inputBorderFocusColor": [
|
|
1713
|
-
"0 0 0 1px #
|
|
1714
|
-
"0 0 0 1px #
|
|
1694
|
+
"0 0 0 1px #CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
1695
|
+
"0 0 0 1px #756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1715
1696
|
],
|
|
1716
1697
|
"inputBorderHoverColor": [
|
|
1717
|
-
"0 0 0 1px #
|
|
1718
|
-
"0 0 0 1px #
|
|
1698
|
+
"0 0 0 1px #E1DAD3 | hsl( 30 19% 85%) | oklch(0.89 0.01 68 )",
|
|
1699
|
+
"0 0 0 1px #56504E | hsl( 15 5% 32%) | oklch(0.44 0.01 39 )",
|
|
1719
1700
|
],
|
|
1720
1701
|
"inputBorderWarningColor": [
|
|
1721
|
-
"0 0 0 1px #
|
|
1722
|
-
"0 0 0 1px #
|
|
1702
|
+
"0 0 0 1px #F7D900 | hsl( 53 100% 48%) | oklch(0.88 0.18 99 )",
|
|
1703
|
+
"0 0 0 1px #6E5F00 | hsl( 52 100% 22%) | oklch(0.49 0.1 98 )",
|
|
1723
1704
|
],
|
|
1724
1705
|
"inputCopyBgColor": [
|
|
1725
|
-
"#
|
|
1726
|
-
"#
|
|
1706
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1707
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
1727
1708
|
],
|
|
1728
1709
|
"inputDisabledBgColor": [
|
|
1729
|
-
"#
|
|
1730
|
-
"#
|
|
1710
|
+
"#E8E2DB4D | hsl( 32 22% 88% / 0.3 ) | oklch(0.92 0.01 72 / 0.3 )",
|
|
1711
|
+
"#3732304D | hsl( 17 7% 20% / 0.3 ) | oklch(0.32 0.01 43 / 0.3 )",
|
|
1731
1712
|
],
|
|
1732
1713
|
"inputDisabledBorderColor": [
|
|
1733
|
-
"0 0 0 1px #
|
|
1734
|
-
"0 0 0 1px #
|
|
1714
|
+
"0 0 0 1px #E8E2DB33 | hsl( 32 22% 88% / 0.2 ) | oklch(0.92 0.01 72 / 0.2 )",
|
|
1715
|
+
"0 0 0 1px #56504E33 | hsl( 15 5% 32% / 0.2 ) | oklch(0.44 0.01 39 / 0.2 )",
|
|
1735
1716
|
],
|
|
1736
1717
|
"inputErrorBorderColor": [
|
|
1737
|
-
"0 0 0 1px #
|
|
1738
|
-
"0 0 0 1px #
|
|
1718
|
+
"0 0 0 1px #AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1719
|
+
"0 0 0 1px #F4B3B2 | hsl( 1 75% 83%) | oklch(0.83 0.08 20 )",
|
|
1739
1720
|
],
|
|
1740
1721
|
"inputErrorBorderFocusColor": [
|
|
1741
|
-
"0 0 0 1px #
|
|
1742
|
-
"0 0 0 1px #
|
|
1722
|
+
"0 0 0 1px #AF243640 | hsl( 352 66% 41% / 0.25) | oklch(0.5 0.17 20 / 0.25)",
|
|
1723
|
+
"0 0 0 1px #F4B3B240 | hsl( 1 75% 83% / 0.25) | oklch(0.83 0.08 20 / 0.25)",
|
|
1743
1724
|
],
|
|
1744
1725
|
"inputErrorBorderFocusShadow": [
|
|
1745
|
-
"0 0 0 3px #
|
|
1746
|
-
"0 0 0 3px #
|
|
1726
|
+
"0 0 0 3px #AF243640 | hsl( 352 66% 41% / 0.25) | oklch(0.5 0.17 20 / 0.25)",
|
|
1727
|
+
"0 0 0 3px #F4B3B240 | hsl( 1 75% 83% / 0.25) | oklch(0.83 0.08 20 / 0.25)",
|
|
1747
1728
|
],
|
|
1748
1729
|
"inputErrorBorderHoverColor": [
|
|
1749
|
-
"0 0 0 1px #
|
|
1750
|
-
"0 0 0 1px #
|
|
1730
|
+
"0 0 0 1px #AF243666 | hsl( 352 66% 41% / 0.4 ) | oklch(0.5 0.17 20 / 0.4 )",
|
|
1731
|
+
"0 0 0 1px #F4B3B266 | hsl( 1 75% 83% / 0.4 ) | oklch(0.83 0.08 20 / 0.4 )",
|
|
1751
1732
|
],
|
|
1752
1733
|
"inputPlaceholderTextColor": [
|
|
1753
|
-
"#
|
|
1754
|
-
"#
|
|
1734
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
1735
|
+
"#756F6D | hsl( 15 4% 44%) | oklch(0.55 0.01 39 )",
|
|
1755
1736
|
],
|
|
1756
1737
|
"instrumentsMenuBg": [
|
|
1757
|
-
"#
|
|
1758
|
-
"#
|
|
1738
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1739
|
+
"#2D2826 | hsl( 17 8% 16%) | oklch(0.28 0.01 43 )",
|
|
1759
1740
|
],
|
|
1760
1741
|
"instrumentsMenuShadow": [
|
|
1761
1742
|
[
|
|
1762
|
-
"0 0 1px 0 #
|
|
1763
|
-
"0 4px 6px 0 #
|
|
1764
|
-
"0 3px 12px 0 #
|
|
1743
|
+
"0 0 1px 0 #635E5733 | hsl( 35 6% 36% / 0.2 ) | oklch(0.48 0.01 77 / 0.2 )",
|
|
1744
|
+
"0 4px 6px 0 #635E570D | hsl( 35 6% 36% / 0.05) | oklch(0.48 0.01 77 / 0.05)",
|
|
1745
|
+
"0 3px 12px 0 #635E571A | hsl( 35 6% 36% / 0.1 ) | oklch(0.48 0.01 77 / 0.1 )",
|
|
1765
1746
|
],
|
|
1766
1747
|
[
|
|
1767
|
-
"0 0 1px 0 #373230 | hsl(17
|
|
1768
|
-
"0 4px 6px 0 #
|
|
1769
|
-
"0 3px 12px 0 #
|
|
1748
|
+
"0 0 1px 0 #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1749
|
+
"0 4px 6px 0 #1A16140D | hsl( 20 13% 9% / 0.05) | oklch(0.2 0.01 48 / 0.05)",
|
|
1750
|
+
"0 3px 12px 0 #1A161426 | hsl( 20 13% 9% / 0.15) | oklch(0.2 0.01 48 / 0.15)",
|
|
1770
1751
|
],
|
|
1771
1752
|
],
|
|
1772
1753
|
"inversedTextColor": [
|
|
1773
|
-
"#
|
|
1774
|
-
"#373230 | hsl(17
|
|
1754
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1755
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1775
1756
|
],
|
|
1776
1757
|
"linkBorder": [
|
|
1777
|
-
"0.5px solid #
|
|
1778
|
-
"0.5px solid #
|
|
1758
|
+
"0.5px solid #5371B466 | hsl( 221 39% 52% / 0.4 ) | oklch(0.56 0.11 265 / 0.4 )",
|
|
1759
|
+
"0.5px solid #A6B7E366 | hsl( 223 52% 77% / 0.4 ) | oklch(0.78 0.07 268 / 0.4 )",
|
|
1779
1760
|
],
|
|
1780
1761
|
"linkBorderHover": [
|
|
1781
|
-
"0.5px solid #
|
|
1782
|
-
"0.5px solid #
|
|
1762
|
+
"0.5px solid #5371B4BF | hsl( 221 39% 52% / 0.75) | oklch(0.56 0.11 265 / 0.75)",
|
|
1763
|
+
"0.5px solid #A6B7E3BF | hsl( 223 52% 77% / 0.75) | oklch(0.78 0.07 268 / 0.75)",
|
|
1783
1764
|
],
|
|
1784
1765
|
"linkColor": [
|
|
1785
|
-
"#
|
|
1786
|
-
"#
|
|
1766
|
+
"#5371B4 | hsl( 221 39% 52%) | oklch(0.56 0.11 265 )",
|
|
1767
|
+
"#A6B7E3 | hsl( 223 52% 77%) | oklch(0.78 0.07 268 )",
|
|
1787
1768
|
],
|
|
1788
1769
|
"linkHoverColor": [
|
|
1789
|
-
"#
|
|
1790
|
-
"#
|
|
1770
|
+
"#5371B4 | hsl( 221 39% 52%) | oklch(0.56 0.11 265 )",
|
|
1771
|
+
"#A6B7E3 | hsl( 223 52% 77%) | oklch(0.78 0.07 268 )",
|
|
1791
1772
|
],
|
|
1792
1773
|
"mainBg": [
|
|
1793
|
-
"#
|
|
1794
|
-
"#
|
|
1774
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1775
|
+
"#2D2623 | hsl( 18 13% 16%) | oklch(0.28 0.01 45 )",
|
|
1795
1776
|
],
|
|
1796
1777
|
"mentionBgColor": [
|
|
1797
|
-
"#
|
|
1798
|
-
"#
|
|
1778
|
+
"#E1DAD34D | hsl( 30 19% 85% / 0.3 ) | oklch(0.89 0.01 68 / 0.3 )",
|
|
1779
|
+
"#413C3A66 | hsl( 17 6% 24% / 0.4 ) | oklch(0.36 0.01 43 / 0.4 )",
|
|
1799
1780
|
],
|
|
1800
1781
|
"menuBg": [
|
|
1801
|
-
"#
|
|
1802
|
-
"#
|
|
1782
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
1783
|
+
"#2D2623 | hsl( 18 13% 16%) | oklch(0.28 0.01 45 )",
|
|
1803
1784
|
],
|
|
1804
1785
|
"menuIconColor": [
|
|
1805
|
-
"#
|
|
1806
|
-
"#
|
|
1786
|
+
"#1B1611B3 | hsl( 30 23% 9% / 0.7 ) | oklch(0.2 0.01 67 / 0.7 )",
|
|
1787
|
+
"#E0D4CEB3 | hsl( 20 22% 84% / 0.7 ) | oklch(0.88 0.02 49 / 0.7 )",
|
|
1807
1788
|
],
|
|
1808
1789
|
"menuItemHoverColor": [
|
|
1809
|
-
"#
|
|
1810
|
-
"#373230 | hsl(17
|
|
1790
|
+
"#EDE7E0 | hsl( 32 27% 90%) | oklch(0.93 0.01 72 )",
|
|
1791
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
1811
1792
|
],
|
|
1812
1793
|
"menuSelectedTextColor": [
|
|
1813
|
-
"#
|
|
1814
|
-
"#
|
|
1794
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1795
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1815
1796
|
],
|
|
1816
1797
|
"menuTextColor": [
|
|
1817
|
-
"#
|
|
1818
|
-
"#
|
|
1798
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
1799
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
1819
1800
|
],
|
|
1820
1801
|
"modalBg": [
|
|
1821
|
-
"#
|
|
1822
|
-
"#
|
|
1802
|
+
"#635E5733 | hsl( 35 6% 36% / 0.2 ) | oklch(0.48 0.01 77 / 0.2 )",
|
|
1803
|
+
"#201B1980 | hsl( 17 12% 11% / 0.5 ) | oklch(0.23 0.01 43 / 0.5 )",
|
|
1823
1804
|
],
|
|
1824
1805
|
"modalContentBg": [
|
|
1825
|
-
"#
|
|
1826
|
-
"#272321 | hsl(20
|
|
1806
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1807
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
1827
1808
|
],
|
|
1828
1809
|
"mode": [
|
|
1829
1810
|
"light",
|
|
1830
1811
|
"dark",
|
|
1831
1812
|
],
|
|
1832
1813
|
"mySpaceIconBg": [
|
|
1833
|
-
"#
|
|
1834
|
-
"#
|
|
1814
|
+
"#70849933 | hsl( 211 17% 52% / 0.2 ) | oklch(0.6 0.04 250 / 0.2 )",
|
|
1815
|
+
"#70849933 | hsl( 211 17% 52% / 0.2 ) | oklch(0.6 0.04 250 / 0.2 )",
|
|
1835
1816
|
],
|
|
1836
1817
|
"mySpaceIconColor": [
|
|
1837
|
-
"#
|
|
1838
|
-
"#
|
|
1818
|
+
"#818589 | hsl( 210 3% 52%) | oklch(0.61 0.01 248 )",
|
|
1819
|
+
"#818589 | hsl( 210 3% 52%) | oklch(0.61 0.01 248 )",
|
|
1839
1820
|
],
|
|
1840
1821
|
"newCommentHorizontalRulerColor": [
|
|
1841
|
-
"#
|
|
1842
|
-
"#
|
|
1822
|
+
"#ED9696 | hsl( 0 71% 76%) | oklch(0.76 0.11 20 )",
|
|
1823
|
+
"#ED9696 | hsl( 0 71% 76%) | oklch(0.76 0.11 20 )",
|
|
1843
1824
|
],
|
|
1844
1825
|
"opacity15": [
|
|
1845
1826
|
"0.15",
|
|
@@ -1926,401 +1907,422 @@ test("snapshot", () => {
|
|
|
1926
1907
|
"0.4",
|
|
1927
1908
|
],
|
|
1928
1909
|
"pageContentBg": [
|
|
1929
|
-
"#
|
|
1930
|
-
"#
|
|
1910
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1911
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
1931
1912
|
],
|
|
1932
1913
|
"panelBg": [
|
|
1933
|
-
"#
|
|
1934
|
-
"#
|
|
1914
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1915
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
1935
1916
|
],
|
|
1936
1917
|
"panelContentBg": [
|
|
1937
|
-
"#
|
|
1938
|
-
"#
|
|
1918
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1919
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
1939
1920
|
],
|
|
1940
1921
|
"privateIconBg": [
|
|
1941
|
-
"#
|
|
1942
|
-
"#
|
|
1922
|
+
"#74A86533 | hsl( 107 28% 53% / 0.2 ) | oklch(0.68 0.11 139 / 0.2 )",
|
|
1923
|
+
"#74A86533 | hsl( 107 28% 53% / 0.2 ) | oklch(0.68 0.11 139 / 0.2 )",
|
|
1943
1924
|
],
|
|
1944
1925
|
"privateIconColor": [
|
|
1945
|
-
"#
|
|
1946
|
-
"#
|
|
1926
|
+
"#74A865 | hsl( 107 28% 53%) | oklch(0.68 0.11 139 )",
|
|
1927
|
+
"#74A865 | hsl( 107 28% 53%) | oklch(0.68 0.11 139 )",
|
|
1947
1928
|
],
|
|
1948
1929
|
"progressBarBg": [
|
|
1949
|
-
"#
|
|
1950
|
-
"#
|
|
1930
|
+
"#BD5F0040 | hsl( 30 100% 37% / 0.25) | oklch(0.59 0.15 54 / 0.25)",
|
|
1931
|
+
"#CD6A2740 | hsl( 24 68% 48% / 0.25) | oklch(0.63 0.15 50 / 0.25)",
|
|
1951
1932
|
],
|
|
1952
1933
|
"progressBarFill": [
|
|
1953
|
-
"#
|
|
1954
|
-
"#
|
|
1934
|
+
"#BD5F00 | hsl( 30 100% 37%) | oklch(0.59 0.15 54 )",
|
|
1935
|
+
"#CD6A27 | hsl( 24 68% 48%) | oklch(0.63 0.15 50 )",
|
|
1955
1936
|
],
|
|
1956
1937
|
"progressBarFillNeutral": [
|
|
1957
|
-
"#
|
|
1958
|
-
"#
|
|
1938
|
+
"#A39D9633 | hsl( 32 7% 61% / 0.2 ) | oklch(0.7 0.01 72 / 0.2 )",
|
|
1939
|
+
"#756F6D33 | hsl( 15 4% 44% / 0.2 ) | oklch(0.55 0.01 39 / 0.2 )",
|
|
1959
1940
|
],
|
|
1960
1941
|
"progressBg": [
|
|
1961
|
-
"#
|
|
1962
|
-
"#
|
|
1942
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
1943
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
1963
1944
|
],
|
|
1964
1945
|
"progressFillBg": [
|
|
1965
|
-
"#
|
|
1966
|
-
"#
|
|
1946
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1947
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1967
1948
|
],
|
|
1968
1949
|
"progressFillText": [
|
|
1969
|
-
"#
|
|
1970
|
-
"#
|
|
1950
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1951
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
1971
1952
|
],
|
|
1972
1953
|
"progressIconBg": [
|
|
1973
|
-
"#00000024 | hsl(none
|
|
1974
|
-
"#
|
|
1954
|
+
"#00000024 | hsl(none 0% 0% / 0.14) | oklch(0 0 none / 0.14)",
|
|
1955
|
+
"#FFFFFE2E | hsl( 60 100% 100% / 0.18) | oklch(1 0 106 / 0.18)",
|
|
1975
1956
|
],
|
|
1976
1957
|
"progressIconFill": [
|
|
1977
|
-
"#00000091 | hsl(none
|
|
1978
|
-
"#
|
|
1958
|
+
"#00000091 | hsl(none 0% 0% / 0.57) | oklch(0 0 none / 0.57)",
|
|
1959
|
+
"#FFFFFE96 | hsl( 60 100% 100% / 0.59) | oklch(1 0 106 / 0.59)",
|
|
1979
1960
|
],
|
|
1980
1961
|
"progressText": [
|
|
1981
|
-
"#
|
|
1982
|
-
"#
|
|
1962
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1963
|
+
"#635E57 | hsl( 35 6% 36%) | oklch(0.48 0.01 77 )",
|
|
1983
1964
|
],
|
|
1984
1965
|
"relationViewBgColor": [
|
|
1985
|
-
"#
|
|
1986
|
-
"#272321 | hsl(20
|
|
1966
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
1967
|
+
"#272321 | hsl( 20 8% 14%) | oklch(0.26 0.01 48 )",
|
|
1987
1968
|
],
|
|
1988
1969
|
"removedDiffTextColor": [
|
|
1989
|
-
"#
|
|
1990
|
-
"#
|
|
1970
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
1971
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
1991
1972
|
],
|
|
1992
1973
|
"richTextTableBorder": [
|
|
1993
|
-
"#00000017 | hsl(none
|
|
1994
|
-
"#
|
|
1974
|
+
"#00000017 | hsl(none 0% 0% / 0.09) | oklch(0 0 none / 0.09)",
|
|
1975
|
+
"#FFFFFE2E | hsl( 60 100% 100% / 0.18) | oklch(1 0 106 / 0.18)",
|
|
1995
1976
|
],
|
|
1996
1977
|
"scrollbar": [
|
|
1997
|
-
"#
|
|
1998
|
-
"#
|
|
1978
|
+
"#A39D9680 | hsl( 32 7% 61% / 0.5 ) | oklch(0.7 0.01 72 / 0.5 )",
|
|
1979
|
+
"#413C3A80 | hsl( 17 6% 24% / 0.5 ) | oklch(0.36 0.01 43 / 0.5 )",
|
|
1999
1980
|
],
|
|
2000
1981
|
"searchFiltersBg": [
|
|
2001
|
-
"#
|
|
2002
|
-
"#
|
|
1982
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
1983
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
2003
1984
|
],
|
|
2004
1985
|
"selectedColorBorder": [
|
|
2005
|
-
"#
|
|
2006
|
-
"#
|
|
1986
|
+
"#E8E2DB40 | hsl( 32 22% 88% / 0.25) | oklch(0.92 0.01 72 / 0.25)",
|
|
1987
|
+
"#E8E2DB40 | hsl( 32 22% 88% / 0.25) | oklch(0.92 0.01 72 / 0.25)",
|
|
2007
1988
|
],
|
|
2008
1989
|
"selectedImageBorder": [
|
|
2009
|
-
"#00000038 | hsl(none
|
|
2010
|
-
"#
|
|
1990
|
+
"#00000038 | hsl(none 0% 0% / 0.22) | oklch(0 0 none / 0.22)",
|
|
1991
|
+
"#FFFFFE96 | hsl( 60 100% 100% / 0.59) | oklch(1 0 106 / 0.59)",
|
|
2011
1992
|
],
|
|
2012
1993
|
"separatorBreadcrumbsColor": [
|
|
2013
|
-
"#
|
|
2014
|
-
"#
|
|
1994
|
+
"#CCC6BF | hsl( 32 11% 77%) | oklch(0.83 0.01 72 )",
|
|
1995
|
+
"#56504E | hsl( 15 5% 32%) | oklch(0.44 0.01 39 )",
|
|
2015
1996
|
],
|
|
2016
1997
|
"separatorColor": [
|
|
2017
|
-
"#
|
|
2018
|
-
"#
|
|
1998
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
1999
|
+
"#FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
2019
2000
|
],
|
|
2020
2001
|
"separatorColorDimmed": [
|
|
2021
|
-
"#
|
|
2022
|
-
"#
|
|
2002
|
+
"#1F1A180D | hsl( 17 13% 11% / 0.05) | oklch(0.22 0.01 43 / 0.05)",
|
|
2003
|
+
"#FFFDFA0D | hsl( 36 100% 99% / 0.05) | oklch(0.99 0 78 / 0.05)",
|
|
2023
2004
|
],
|
|
2024
2005
|
"shadow100": [
|
|
2025
|
-
"0 1px 4px 0 #
|
|
2026
|
-
"0 1px 4px 0 #
|
|
2006
|
+
"0 1px 4px 0 #1B16110D | hsl( 30 23% 9% / 0.05) | oklch(0.2 0.01 67 / 0.05)",
|
|
2007
|
+
"0 1px 4px 0 #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2027
2008
|
],
|
|
2028
2009
|
"shadow200": [
|
|
2029
|
-
"0 2px 6px 0 #
|
|
2030
|
-
"0 2px 6px 0 #
|
|
2010
|
+
"0 2px 6px 0 #1B16110D | hsl( 30 23% 9% / 0.05) | oklch(0.2 0.01 67 / 0.05)",
|
|
2011
|
+
"0 2px 6px 0 #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2031
2012
|
],
|
|
2032
2013
|
"shadow300": [
|
|
2033
2014
|
[
|
|
2034
|
-
"0 3px 6px -3px #
|
|
2035
|
-
"0 8px 20px -4px #
|
|
2015
|
+
"0 3px 6px -3px #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2016
|
+
"0 8px 20px -4px #1B161126 | hsl( 30 23% 9% / 0.15) | oklch(0.2 0.01 67 / 0.15)",
|
|
2036
2017
|
],
|
|
2037
2018
|
[
|
|
2038
|
-
"0 3px 6px -3px #
|
|
2039
|
-
"0 8px 20px -4px #
|
|
2019
|
+
"0 3px 6px -3px #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2020
|
+
"0 8px 20px -4px #1B161126 | hsl( 30 23% 9% / 0.15) | oklch(0.2 0.01 67 / 0.15)",
|
|
2040
2021
|
],
|
|
2041
2022
|
],
|
|
2042
2023
|
"shadow400": [
|
|
2043
2024
|
[
|
|
2044
|
-
"0 0 1px 0 #
|
|
2045
|
-
"0 16px 40px 0 #
|
|
2025
|
+
"0 0 1px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
2026
|
+
"0 16px 40px 0 #1B161126 | hsl( 30 23% 9% / 0.15) | oklch(0.2 0.01 67 / 0.15)",
|
|
2046
2027
|
],
|
|
2047
2028
|
[
|
|
2048
|
-
"0 0 1px 0 #
|
|
2049
|
-
"0 16px 40px 0 #
|
|
2029
|
+
"0 0 1px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
2030
|
+
"0 16px 40px 0 #1B161126 | hsl( 30 23% 9% / 0.15) | oklch(0.2 0.01 67 / 0.15)",
|
|
2050
2031
|
],
|
|
2051
2032
|
],
|
|
2052
2033
|
"shadow50": [
|
|
2053
|
-
"0 0 0 1px #
|
|
2054
|
-
"0 0 0 1px #
|
|
2034
|
+
"0 0 0 1px #1B16110D | hsl( 30 23% 9% / 0.05) | oklch(0.2 0.01 67 / 0.05)",
|
|
2035
|
+
"0 0 0 1px #E0D4CE1A | hsl( 20 22% 84% / 0.1 ) | oklch(0.88 0.02 49 / 0.1 )",
|
|
2055
2036
|
],
|
|
2056
2037
|
"shadow500": [
|
|
2057
2038
|
[
|
|
2058
|
-
"0 0 1px 0 #
|
|
2059
|
-
"0 20px 50px 0 #
|
|
2039
|
+
"0 0 1px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
2040
|
+
"0 20px 50px 0 #1B161126 | hsl( 30 23% 9% / 0.15) | oklch(0.2 0.01 67 / 0.15)",
|
|
2060
2041
|
],
|
|
2061
2042
|
[
|
|
2062
|
-
"0 0 1px 0 #
|
|
2063
|
-
"0 20px 50px 0 #
|
|
2043
|
+
"0 0 1px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
2044
|
+
"0 20px 50px 0 #1B161126 | hsl( 30 23% 9% / 0.15) | oklch(0.2 0.01 67 / 0.15)",
|
|
2064
2045
|
],
|
|
2065
2046
|
],
|
|
2066
2047
|
"shadow600": [
|
|
2067
2048
|
[
|
|
2068
|
-
"0 0 1px 0 #
|
|
2069
|
-
"0 26px 80px 0 #
|
|
2049
|
+
"0 0 1px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
2050
|
+
"0 26px 80px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )(SAME!)",
|
|
2070
2051
|
],
|
|
2071
2052
|
[
|
|
2072
|
-
"0 0 1px 0 #
|
|
2073
|
-
"0 26px 80px 0 #
|
|
2053
|
+
"0 0 1px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )",
|
|
2054
|
+
"0 26px 80px 0 #1B161133 | hsl( 30 23% 9% / 0.2 ) | oklch(0.2 0.01 67 / 0.2 )(SAME!)",
|
|
2074
2055
|
],
|
|
2075
2056
|
],
|
|
2076
2057
|
"shadowCardDefault": [
|
|
2077
2058
|
[
|
|
2078
|
-
"0 0 0 1px #
|
|
2079
|
-
"0 1px 4px 0 #
|
|
2059
|
+
"0 0 0 1px #E8E2DBB3 | hsl( 32 22% 88% / 0.7 ) | oklch(0.92 0.01 72 / 0.7 )",
|
|
2060
|
+
"0 1px 4px 0 #1B16110D | hsl( 30 23% 9% / 0.05) | oklch(0.2 0.01 67 / 0.05)",
|
|
2080
2061
|
],
|
|
2081
2062
|
[
|
|
2082
|
-
"0 0 0 1px #
|
|
2083
|
-
"0 1px 4px 0 #
|
|
2063
|
+
"0 0 0 1px #56504EB3 | hsl( 15 5% 32% / 0.7 ) | oklch(0.44 0.01 39 / 0.7 )",
|
|
2064
|
+
"0 1px 4px 0 #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2084
2065
|
],
|
|
2085
2066
|
],
|
|
2086
2067
|
"shadowCardHover": [
|
|
2087
2068
|
[
|
|
2088
|
-
"0 0 0 1px #
|
|
2089
|
-
"0 2px 6px 0 #
|
|
2069
|
+
"0 0 0 1px #E8E2DBB3 | hsl( 32 22% 88% / 0.7 ) | oklch(0.92 0.01 72 / 0.7 )",
|
|
2070
|
+
"0 2px 6px 0 #1B16110D | hsl( 30 23% 9% / 0.05) | oklch(0.2 0.01 67 / 0.05)",
|
|
2090
2071
|
],
|
|
2091
2072
|
[
|
|
2092
|
-
"0 0 0 1px #
|
|
2093
|
-
"0 2px 6px 0 #
|
|
2073
|
+
"0 0 0 1px #56504EB3 | hsl( 15 5% 32% / 0.7 ) | oklch(0.44 0.01 39 / 0.7 )",
|
|
2074
|
+
"0 2px 6px 0 #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2094
2075
|
],
|
|
2095
2076
|
],
|
|
2096
2077
|
"shadowCardInset": [
|
|
2097
|
-
"inset 0 0 0 1px #
|
|
2098
|
-
"inset 0 0 0 1px #
|
|
2078
|
+
"inset 0 0 0 1px #E8E2DBB3 | hsl( 32 22% 88% / 0.7 ) | oklch(0.92 0.01 72 / 0.7 )",
|
|
2079
|
+
"inset 0 0 0 1px #56504EB3 | hsl( 15 5% 32% / 0.7 ) | oklch(0.44 0.01 39 / 0.7 )",
|
|
2099
2080
|
],
|
|
2100
2081
|
"shadowEntityBoxDefault": [
|
|
2101
|
-
"0 2px 4px 0 #
|
|
2102
|
-
"0 2px 4px 0 #
|
|
2082
|
+
"0 2px 4px 0 #1B16110D | hsl( 30 23% 9% / 0.05) | oklch(0.2 0.01 67 / 0.05)",
|
|
2083
|
+
"0 2px 4px 0 #1A16140D | hsl( 20 13% 9% / 0.05) | oklch(0.2 0.01 48 / 0.05)",
|
|
2103
2084
|
],
|
|
2104
2085
|
"shadowEntityBoxDefaultDrag": [
|
|
2105
|
-
"0 8px 12px 0 #
|
|
2106
|
-
"0 8px 12px 0 #
|
|
2086
|
+
"0 8px 12px 0 #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2087
|
+
"0 8px 12px 0 #1A16141A | hsl( 20 13% 9% / 0.1 ) | oklch(0.2 0.01 48 / 0.1 )",
|
|
2107
2088
|
],
|
|
2108
2089
|
"shadowEntityBoxDefaultHover": [
|
|
2109
|
-
"0 4px 8px 0 #
|
|
2110
|
-
"0 4px 8px 0 #
|
|
2090
|
+
"0 4px 8px 0 #1B16111A | hsl( 30 23% 9% / 0.1 ) | oklch(0.2 0.01 67 / 0.1 )",
|
|
2091
|
+
"0 4px 8px 0 #1A16141A | hsl( 20 13% 9% / 0.1 ) | oklch(0.2 0.01 48 / 0.1 )",
|
|
2111
2092
|
],
|
|
2112
2093
|
"shadowMenuHeaderAvatar": [
|
|
2113
2094
|
[
|
|
2114
|
-
"0 1px 4px 0 #
|
|
2115
|
-
"0 0 0 0.5px #
|
|
2095
|
+
"0 1px 4px 0 #635E571A | hsl( 35 6% 36% / 0.1 ) | oklch(0.48 0.01 77 / 0.1 )",
|
|
2096
|
+
"0 0 0 0.5px #EDE7E080 | hsl( 32 27% 90% / 0.5 ) | oklch(0.93 0.01 72 / 0.5 )",
|
|
2116
2097
|
],
|
|
2117
|
-
"0 0 0 1px #
|
|
2098
|
+
"0 0 0 1px #756F6D33 | hsl( 15 4% 44% / 0.2 ) | oklch(0.55 0.01 39 / 0.2 )",
|
|
2118
2099
|
],
|
|
2119
2100
|
"shadowPopup": [
|
|
2120
2101
|
[
|
|
2121
|
-
"0 0 2px 0 #
|
|
2122
|
-
"0 4px 6px 0 #
|
|
2123
|
-
"0 10px 26px 0 #
|
|
2102
|
+
"0 0 2px 0 #635E574D | hsl( 35 6% 36% / 0.3 ) | oklch(0.48 0.01 77 / 0.3 )",
|
|
2103
|
+
"0 4px 6px 0 #635E570D | hsl( 35 6% 36% / 0.05) | oklch(0.48 0.01 77 / 0.05)",
|
|
2104
|
+
"0 10px 26px 0 #635E5726 | hsl( 35 6% 36% / 0.15) | oklch(0.48 0.01 77 / 0.15)",
|
|
2124
2105
|
],
|
|
2125
2106
|
[
|
|
2126
|
-
"0 0 0 1px #373230 | hsl(17
|
|
2127
|
-
"0 4px 6px 0 #
|
|
2128
|
-
"0 10px 26px 0 #
|
|
2107
|
+
"0 0 0 1px #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
2108
|
+
"0 4px 6px 0 #1A16140D | hsl( 20 13% 9% / 0.05) | oklch(0.2 0.01 48 / 0.05)",
|
|
2109
|
+
"0 10px 26px 0 #1A161426 | hsl( 20 13% 9% / 0.15) | oklch(0.2 0.01 48 / 0.15)",
|
|
2129
2110
|
],
|
|
2130
2111
|
],
|
|
2131
2112
|
"shadowSelectMenu": [
|
|
2132
2113
|
[
|
|
2133
|
-
"0 0 2px 0 #
|
|
2134
|
-
"0 4px 6px 0 #
|
|
2135
|
-
"0 10px 26px 0 #
|
|
2114
|
+
"0 0 2px 0 #635E574D | hsl( 35 6% 36% / 0.3 ) | oklch(0.48 0.01 77 / 0.3 )",
|
|
2115
|
+
"0 4px 6px 0 #635E570D | hsl( 35 6% 36% / 0.05) | oklch(0.48 0.01 77 / 0.05)",
|
|
2116
|
+
"0 10px 26px 0 #635E5726 | hsl( 35 6% 36% / 0.15) | oklch(0.48 0.01 77 / 0.15)",
|
|
2136
2117
|
],
|
|
2137
2118
|
[
|
|
2138
|
-
"0 0 0 1px #373230 | hsl(17
|
|
2139
|
-
"0 4px 6px 0 #
|
|
2140
|
-
"0 10px 26px 0 #
|
|
2119
|
+
"0 0 0 1px #373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
2120
|
+
"0 4px 6px 0 #1A16140D | hsl( 20 13% 9% / 0.05) | oklch(0.2 0.01 48 / 0.05)",
|
|
2121
|
+
"0 10px 26px 0 #1A161426 | hsl( 20 13% 9% / 0.15) | oklch(0.2 0.01 48 / 0.15)",
|
|
2141
2122
|
],
|
|
2142
2123
|
],
|
|
2143
2124
|
"shadowSidebar": [
|
|
2144
|
-
"-3px 0 10px 0 #
|
|
2145
|
-
"-3px 0 10px 0 #
|
|
2125
|
+
"-3px 0 10px 0 #7D77701A | hsl( 32 5% 46% / 0.1 ) | oklch(0.57 0.01 72 / 0.1 )",
|
|
2126
|
+
"-3px 0 10px 0 #1A1614CC | hsl( 20 13% 9% / 0.8 ) | oklch(0.2 0.01 48 / 0.8 )",
|
|
2146
2127
|
],
|
|
2147
2128
|
"shadowStrokeEntityBoxDefault": [
|
|
2148
|
-
"0 0 0 1px #
|
|
2149
|
-
"0 0 0 1px #
|
|
2129
|
+
"0 0 0 1px #EDE7E0 | hsl( 32 27% 90%) | oklch(0.93 0.01 72 )",
|
|
2130
|
+
"0 0 0 1px #322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
2150
2131
|
],
|
|
2151
2132
|
"shadowStrokeEntityBoxDefaultFocus": [
|
|
2152
|
-
"0 0 0 2px #
|
|
2153
|
-
"0 0 0 2px #
|
|
2133
|
+
"0 0 0 2px #BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )",
|
|
2134
|
+
"0 0 0 2px #C0550066 | hsl( 27 100% 38% / 0.4 ) | oklch(0.58 0.16 48 / 0.4 )",
|
|
2154
2135
|
],
|
|
2155
2136
|
"shadowStrokeEntityBoxDefaultFocusHover": [
|
|
2156
|
-
"0 0 0 2px #
|
|
2157
|
-
"0 0 0 2px #
|
|
2137
|
+
"0 0 0 2px #BD5F0099 | hsl( 30 100% 37% / 0.6 ) | oklch(0.59 0.15 54 / 0.6 )",
|
|
2138
|
+
"0 0 0 2px #C0550099 | hsl( 27 100% 38% / 0.6 ) | oklch(0.58 0.16 48 / 0.6 )",
|
|
2158
2139
|
],
|
|
2159
2140
|
"shadowStrokeEntityBoxSelected": [
|
|
2160
2141
|
[
|
|
2161
|
-
"0 0 0 1px #
|
|
2162
|
-
"0 0 0 3px #
|
|
2142
|
+
"0 0 0 1px #BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )",
|
|
2143
|
+
"0 0 0 3px #BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )(SAME!)",
|
|
2163
2144
|
],
|
|
2164
2145
|
[
|
|
2165
|
-
"0 0 0 1px #
|
|
2166
|
-
"0 0 0 3px #
|
|
2146
|
+
"0 0 0 1px #C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
2147
|
+
"0 0 0 3px #C0550066 | hsl( 27 100% 38% / 0.4 ) | oklch(0.58 0.16 48 / 0.4 )",
|
|
2167
2148
|
],
|
|
2168
2149
|
],
|
|
2169
2150
|
"shadowStrokeEntityBoxSelectedDrag": [
|
|
2170
2151
|
[
|
|
2171
|
-
"0 0 0 1px #
|
|
2172
|
-
"0 0 0 3px #
|
|
2152
|
+
"0 0 0 1px #BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )",
|
|
2153
|
+
"0 0 0 3px #BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )(SAME!)",
|
|
2173
2154
|
],
|
|
2174
2155
|
[
|
|
2175
|
-
"0 0 0 1px #
|
|
2176
|
-
"0 0 0 3px #
|
|
2156
|
+
"0 0 0 1px #C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
2157
|
+
"0 0 0 3px #C0550066 | hsl( 27 100% 38% / 0.4 ) | oklch(0.58 0.16 48 / 0.4 )",
|
|
2177
2158
|
],
|
|
2178
2159
|
],
|
|
2179
2160
|
"shadowStrokeEntityBoxSelectedHover": [
|
|
2180
2161
|
[
|
|
2181
|
-
"0 0 0 1px #
|
|
2182
|
-
"0 0 0 3px #
|
|
2162
|
+
"0 0 0 1px #BD5F0099 | hsl( 30 100% 37% / 0.6 ) | oklch(0.59 0.15 54 / 0.6 )",
|
|
2163
|
+
"0 0 0 3px #BD5F0066 | hsl( 30 100% 37% / 0.4 ) | oklch(0.59 0.15 54 / 0.4 )",
|
|
2183
2164
|
],
|
|
2184
2165
|
[
|
|
2185
|
-
"0 0 0 1px #
|
|
2186
|
-
"0 0 0 3px #
|
|
2166
|
+
"0 0 0 1px #C05500 | hsl( 27 100% 38%) | oklch(0.58 0.16 48 )",
|
|
2167
|
+
"0 0 0 3px #C0550066 | hsl( 27 100% 38% / 0.4 ) | oklch(0.58 0.16 48 / 0.4 )",
|
|
2187
2168
|
],
|
|
2188
2169
|
],
|
|
2189
2170
|
"shortcutBorder": [
|
|
2190
|
-
"1px solid #
|
|
2191
|
-
"1px solid #
|
|
2171
|
+
"1px solid #CCC6BF80 | hsl( 32 11% 77% / 0.5 ) | oklch(0.83 0.01 72 / 0.5 )",
|
|
2172
|
+
"1px solid #847E7C33 | hsl( 15 3% 50% / 0.2 ) | oklch(0.6 0.01 39 / 0.2 )",
|
|
2192
2173
|
],
|
|
2193
2174
|
"shortcutBorderColor": [
|
|
2194
|
-
"#
|
|
2195
|
-
"#
|
|
2175
|
+
"#CCC6BF80 | hsl( 32 11% 77% / 0.5 ) | oklch(0.83 0.01 72 / 0.5 )",
|
|
2176
|
+
"#847E7C33 | hsl( 15 3% 50% / 0.2 ) | oklch(0.6 0.01 39 / 0.2 )",
|
|
2196
2177
|
],
|
|
2197
2178
|
"shortcutTextColor": [
|
|
2198
|
-
"#
|
|
2199
|
-
"#
|
|
2179
|
+
"#A39D96 | hsl( 32 7% 61%) | oklch(0.7 0.01 72 )",
|
|
2180
|
+
"#A69F9D | hsl( 13 5% 63%) | oklch(0.71 0.01 37 )",
|
|
2200
2181
|
],
|
|
2201
2182
|
"success": [
|
|
2202
|
-
"#
|
|
2203
|
-
"#
|
|
2183
|
+
"#00907E | hsl( 173 100% 28%) | oklch(0.59 0.11 180 )",
|
|
2184
|
+
"#008F7D | hsl( 172 100% 28%) | oklch(0.58 0.11 180 )",
|
|
2204
2185
|
],
|
|
2205
2186
|
"surfaceElevationL": [
|
|
2206
|
-
"0 8px 12px 0 #00000017 | hsl(none
|
|
2207
|
-
"0 8px 12px 0 #
|
|
2187
|
+
"0 8px 12px 0 #00000017 | hsl(none 0% 0% / 0.09) | oklch(0 0 none / 0.09)",
|
|
2188
|
+
"0 8px 12px 0 #FFFFFE17 | hsl( 60 100% 100% / 0.09) | oklch(1 0 106 / 0.09)",
|
|
2208
2189
|
],
|
|
2209
2190
|
"surfaceElevationM": [
|
|
2210
|
-
"0 4px 8px 0 #00000017 | hsl(none
|
|
2211
|
-
"0 4px 8px 0 #
|
|
2191
|
+
"0 4px 8px 0 #00000017 | hsl(none 0% 0% / 0.09) | oklch(0 0 none / 0.09)",
|
|
2192
|
+
"0 4px 8px 0 #FFFFFE17 | hsl( 60 100% 100% / 0.09) | oklch(1 0 106 / 0.09)",
|
|
2212
2193
|
],
|
|
2213
2194
|
"surfaceElevationS": [
|
|
2214
|
-
"0 2px 4px 0 #
|
|
2215
|
-
"0 2px 4px 0 #
|
|
2216
|
-
],
|
|
2195
|
+
"0 2px 4px 0 #0000000D | hsl(none 0% 0% / 0.05) | oklch(0 0 none / 0.05)",
|
|
2196
|
+
"0 2px 4px 0 #FFFFFE08 | hsl( 60 100% 100% / 0.03) | oklch(1 0 106 / 0.03)",
|
|
2197
|
+
],
|
|
2198
|
+
"swatchDefault": [
|
|
2199
|
+
"#FBA32F | hsl( 34 96% 58%) | oklch(0.79 0.16 68 )",
|
|
2200
|
+
"#FBA32F | hsl( 34 96% 58%) | oklch(0.79 0.16 68 )",
|
|
2201
|
+
],
|
|
2202
|
+
"swatches[ 0] aka Swatch.GreyDark ": "#4D4747 | hsl( 0 4% 29%) | oklch(0.4 0.01 17 )",
|
|
2203
|
+
"swatches[ 1] aka Swatch.Grey ": "#818589 | hsl( 210 3% 52%) | oklch(0.61 0.01 248 )",
|
|
2204
|
+
"swatches[ 2] aka Swatch.GreyLight ": "#A0A3A7 | hsl( 214 4% 64%) | oklch(0.71 0.01 255 )",
|
|
2205
|
+
"swatches[ 3] aka Swatch.Red ": "#BB332F | hsl( 2 60% 46%) | oklch(0.53 0.17 27 )",
|
|
2206
|
+
"swatches[ 4] aka Swatch.Magenta ": "#CD4370 | hsl( 340 58% 53%) | oklch(0.59 0.18 4 )",
|
|
2207
|
+
"swatches[ 5] aka Swatch.Purple ": "#9A47A8 | hsl( 291 41% 47%) | oklch(0.54 0.17 322 )",
|
|
2208
|
+
"swatches[ 6] aka Swatch.Violet ": "#6542A5 | hsl( 261 43% 45%) | oklch(0.47 0.15 296 )",
|
|
2209
|
+
"swatches[ 7] aka Swatch.BlueDark ": "#4356B0 | hsl( 230 45% 48%) | oklch(0.49 0.14 271 )",
|
|
2210
|
+
"swatches[ 8] aka Swatch.Blue ": "#4F81E1 | hsl( 219 71% 60%) | oklch(0.62 0.16 262 )",
|
|
2211
|
+
"swatches[ 9] aka Swatch.BlueSky ": "#52A2E2 | hsl( 207 71% 60%) | oklch(0.69 0.12 245 )",
|
|
2212
|
+
"swatches[10] aka Swatch.Turquoise ": "#48BEC3 | hsl( 182 51% 52%) | oklch(0.74 0.1 199 )",
|
|
2213
|
+
"swatches[11] aka Swatch.GreenDark ": "#33907D | hsl( 168 48% 38%) | oklch(0.59 0.09 177 )",
|
|
2214
|
+
"swatches[12] aka Swatch.Green ": "#64AA5D | hsl( 115 31% 52%) | oklch(0.67 0.13 142 )",
|
|
2215
|
+
"swatches[13] aka Swatch.GreenLight": "#93BC5F | hsl( 86 41% 55%) | oklch(0.74 0.13 129 )",
|
|
2216
|
+
"swatches[14] aka Swatch.Yellow ": "#EBA944 | hsl( 36 81% 59%) | oklch(0.78 0.14 74 )",
|
|
2217
|
+
"swatches[15] aka Swatch.Orange ": "#DE653C | hsl( 15 71% 55%) | oklch(0.65 0.16 39 )",
|
|
2218
|
+
"swatches[16] aka Swatch.Brown ": "#9F543B | hsl( 15 46% 43%) | oklch(0.53 0.11 39 )",
|
|
2217
2219
|
"tableRowWarningColor": [
|
|
2218
|
-
"#
|
|
2219
|
-
"#
|
|
2220
|
+
"#F8E78799 | hsl( 51 89% 75% / 0.6 ) | oklch(0.92 0.12 99 / 0.6 )",
|
|
2221
|
+
"#F8D80066 | hsl( 52 100% 49% / 0.4 ) | oklch(0.88 0.18 98 / 0.4 )",
|
|
2220
2222
|
],
|
|
2221
2223
|
"textColor": [
|
|
2222
|
-
"#
|
|
2223
|
-
"#
|
|
2224
|
+
"#1B1611 | hsl( 30 23% 9%) | oklch(0.2 0.01 67 )",
|
|
2225
|
+
"#E0D4CE | hsl( 20 22% 84%) | oklch(0.88 0.02 49 )",
|
|
2224
2226
|
],
|
|
2225
2227
|
"textSelectionColor": [
|
|
2226
|
-
"#
|
|
2227
|
-
"#
|
|
2228
|
+
"#BD5F0033 | hsl( 30 100% 37% / 0.2 ) | oklch(0.59 0.15 54 / 0.2 )",
|
|
2229
|
+
"#C0550066 | hsl( 27 100% 38% / 0.4 ) | oklch(0.58 0.16 48 / 0.4 )",
|
|
2228
2230
|
],
|
|
2229
2231
|
"timelineCellBgColor": [
|
|
2230
|
-
"#
|
|
2231
|
-
"#
|
|
2232
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
2233
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
2232
2234
|
],
|
|
2233
2235
|
"timelineCellTodayBgColor": [
|
|
2234
|
-
"#
|
|
2235
|
-
"#
|
|
2236
|
+
"#FDEBDC | hsl( 27 89% 93%) | oklch(0.95 0.03 62 )",
|
|
2237
|
+
"#2A180D | hsl( 23 53% 11%) | oklch(0.23 0.04 52 )",
|
|
2236
2238
|
],
|
|
2237
2239
|
"timelineCellWeekendBgColor": [
|
|
2238
|
-
"#
|
|
2239
|
-
"#
|
|
2240
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
2241
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
2240
2242
|
],
|
|
2241
2243
|
"timelineCreateEntityPlaceholderBgColor": [
|
|
2242
|
-
"#
|
|
2243
|
-
"#
|
|
2244
|
+
"#635E5733 | hsl( 35 6% 36% / 0.2 ) | oklch(0.48 0.01 77 / 0.2 )",
|
|
2245
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
2244
2246
|
],
|
|
2245
2247
|
"timelineDependencyHoverBgColor": [
|
|
2246
|
-
"#
|
|
2247
|
-
"#
|
|
2248
|
+
"#E89F62 | hsl( 27 74% 65%) | oklch(0.76 0.12 60 )",
|
|
2249
|
+
"#9C3A00 | hsl( 22 100% 31%) | oklch(0.48 0.14 43 )",
|
|
2248
2250
|
],
|
|
2249
2251
|
"timelineDependencyOverlapBgColor": [
|
|
2250
|
-
"#
|
|
2251
|
-
"#
|
|
2252
|
+
"#D33E4B | hsl( 355 63% 54%) | oklch(0.59 0.18 20 )",
|
|
2253
|
+
"#D53247 | hsl( 352 66% 52%) | oklch(0.58 0.2 19 )",
|
|
2252
2254
|
],
|
|
2253
2255
|
"timelineDependencyOverlapHoverBgColor": [
|
|
2254
|
-
"#
|
|
2255
|
-
"#
|
|
2256
|
+
"#AF2436 | hsl( 352 66% 41%) | oklch(0.5 0.17 20 )",
|
|
2257
|
+
"#F49293 | hsl( 359 82% 76%) | oklch(0.76 0.12 20 )",
|
|
2256
2258
|
],
|
|
2257
2259
|
"timelineEntityHandleColor": [
|
|
2258
|
-
"#
|
|
2259
|
-
"#
|
|
2260
|
+
"#F0BA8F | hsl( 27 76% 75%) | oklch(0.83 0.08 60 )",
|
|
2261
|
+
"#7A3300 | hsl( 25 100% 24%) | oklch(0.41 0.11 48 )",
|
|
2260
2262
|
],
|
|
2261
2263
|
"todayMarkerColor": [
|
|
2262
|
-
"#
|
|
2263
|
-
"#682127 | hsl(355
|
|
2264
|
+
"#ED9696 | hsl( 0 71% 76%) | oklch(0.76 0.11 20 )",
|
|
2265
|
+
"#682127 | hsl( 355 52% 27%) | oklch(0.36 0.1 19 )",
|
|
2264
2266
|
],
|
|
2265
2267
|
"tooltipBgColor": [
|
|
2266
|
-
"#
|
|
2267
|
-
"#373230 | hsl(17
|
|
2268
|
+
"#322D2B | hsl( 17 8% 18%) | oklch(0.3 0.01 43 )",
|
|
2269
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
2268
2270
|
],
|
|
2269
2271
|
"transparent": [
|
|
2270
|
-
"#
|
|
2271
|
-
"#
|
|
2272
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
2273
|
+
"#FFFFFF00 | hsl(none 0% 100% / 0 ) | oklch(1 0 none / 0 )",
|
|
2272
2274
|
],
|
|
2273
2275
|
"unitBg": [
|
|
2274
|
-
"#
|
|
2275
|
-
"#373230 | hsl(17
|
|
2276
|
+
"#FAF4EC | hsl( 34 58% 95%) | oklch(0.97 0.01 75 )",
|
|
2277
|
+
"#373230 | hsl( 17 7% 20%) | oklch(0.32 0.01 43 )",
|
|
2276
2278
|
],
|
|
2277
2279
|
"unitBgHover": [
|
|
2278
|
-
"#
|
|
2279
|
-
"#
|
|
2280
|
+
"#F3ECE5 | hsl( 30 37% 93%) | oklch(0.95 0.01 68 )",
|
|
2281
|
+
"#413C3A | hsl( 17 6% 24%) | oklch(0.36 0.01 43 )",
|
|
2280
2282
|
],
|
|
2281
2283
|
"viewBg": [
|
|
2282
|
-
"#
|
|
2283
|
-
"#
|
|
2284
|
+
"#FFFBF4 | hsl( 38 100% 98%) | oklch(0.99 0.01 82 )",
|
|
2285
|
+
"#1A1614 | hsl( 20 13% 9%) | oklch(0.2 0.01 48 )",
|
|
2284
2286
|
],
|
|
2285
2287
|
"viewBgOverlayColor": [
|
|
2286
|
-
"#
|
|
2287
|
-
"#
|
|
2288
|
+
"#CCC6BF33 | hsl( 32 11% 77% / 0.2 ) | oklch(0.83 0.01 72 / 0.2 )",
|
|
2289
|
+
"#1A161499 | hsl( 20 13% 9% / 0.6 ) | oklch(0.2 0.01 48 / 0.6 )",
|
|
2288
2290
|
],
|
|
2289
2291
|
"viewHighlightBg": [
|
|
2290
|
-
"#
|
|
2291
|
-
"#
|
|
2292
|
+
"#FEF3EA | hsl( 27 91% 96%) | oklch(0.97 0.02 62 )",
|
|
2293
|
+
"#3D1E0A | hsl( 24 72% 14%) | oklch(0.27 0.06 51 )",
|
|
2292
2294
|
],
|
|
2293
2295
|
"viewSecondaryBg": [
|
|
2294
|
-
"#
|
|
2295
|
-
"#
|
|
2296
|
+
"#FDF6EF | hsl( 30 78% 96%) | oklch(0.98 0.01 68 )",
|
|
2297
|
+
"#201B19 | hsl( 17 12% 11%) | oklch(0.23 0.01 43 )",
|
|
2296
2298
|
],
|
|
2297
2299
|
"warning": [
|
|
2298
|
-
"#
|
|
2299
|
-
"#
|
|
2300
|
+
"#F7D900 | hsl( 53 100% 48%) | oklch(0.88 0.18 99 )",
|
|
2301
|
+
"#6E5F00 | hsl( 52 100% 22%) | oklch(0.49 0.1 98 )",
|
|
2300
2302
|
],
|
|
2301
2303
|
"warningBgColor": [
|
|
2302
|
-
"#
|
|
2303
|
-
"#
|
|
2304
|
+
"#F8E78799 | hsl( 51 89% 75% / 0.6 ) | oklch(0.92 0.12 99 / 0.6 )",
|
|
2305
|
+
"#6E5F0099 | hsl( 52 100% 22% / 0.6 ) | oklch(0.49 0.1 98 / 0.6 )",
|
|
2304
2306
|
],
|
|
2305
2307
|
"warningButtonColor": [
|
|
2306
|
-
"#827100 | hsl(52 100%
|
|
2307
|
-
"#
|
|
2308
|
+
"#827100 | hsl( 52 100% 25%) | oklch(0.55 0.11 99 )",
|
|
2309
|
+
"#E3C600 | hsl( 52 100% 45%) | oklch(0.83 0.17 99 )",
|
|
2308
2310
|
],
|
|
2309
2311
|
"whiteA10": [
|
|
2310
|
-
"#
|
|
2311
|
-
"#
|
|
2312
|
+
"#FFFDFA1A | hsl( 36 100% 99% / 0.1 ) | oklch(0.99 0 78 / 0.1 )",
|
|
2313
|
+
"#1F1A181A | hsl( 17 13% 11% / 0.1 ) | oklch(0.22 0.01 43 / 0.1 )",
|
|
2312
2314
|
],
|
|
2313
2315
|
"whiteA100": [
|
|
2314
|
-
"#
|
|
2315
|
-
"#
|
|
2316
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
2317
|
+
"#1F1A18 | hsl( 17 13% 11%) | oklch(0.22 0.01 43 )",
|
|
2316
2318
|
],
|
|
2317
2319
|
"whiteA40": [
|
|
2318
|
-
"#
|
|
2319
|
-
"#
|
|
2320
|
+
"#FFFDFA66 | hsl( 36 100% 99% / 0.4 ) | oklch(0.99 0 78 / 0.4 )",
|
|
2321
|
+
"#1F1A1866 | hsl( 17 13% 11% / 0.4 ) | oklch(0.22 0.01 43 / 0.4 )",
|
|
2320
2322
|
],
|
|
2321
2323
|
"whiteColor": [
|
|
2322
|
-
"#
|
|
2323
|
-
"#
|
|
2324
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
2325
|
+
"#FFFDFA | hsl( 36 100% 99%) | oklch(0.99 0 78 )",
|
|
2324
2326
|
],
|
|
2325
2327
|
}
|
|
2326
2328
|
`);
|