@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
|
@@ -0,0 +1,2519 @@
|
|
|
1
|
+
// oxlint-disable max-lines
|
|
2
|
+
// Auto-generated by theme-snapshots.test.ts for prefix "fibery". Run with vitest `-u` to refresh.
|
|
3
|
+
// Do not import this file directly — go through './theming' (index.ts).
|
|
4
|
+
|
|
5
|
+
export const prefix = "fibery" as const;
|
|
6
|
+
export const themeVars = {
|
|
7
|
+
surfaceElevationS: "var(--fibery-color-surfaceElevationS)",
|
|
8
|
+
surfaceElevationM: "var(--fibery-color-surfaceElevationM)",
|
|
9
|
+
surfaceElevationL: "var(--fibery-color-surfaceElevationL)",
|
|
10
|
+
shadow50: "var(--fibery-color-shadow50)",
|
|
11
|
+
shadow100: "var(--fibery-color-shadow100)",
|
|
12
|
+
shadow200: "var(--fibery-color-shadow200)",
|
|
13
|
+
shadow300: "var(--fibery-color-shadow300)",
|
|
14
|
+
shadow400: "var(--fibery-color-shadow400)",
|
|
15
|
+
shadow500: "var(--fibery-color-shadow500)",
|
|
16
|
+
shadow600: "var(--fibery-color-shadow600)",
|
|
17
|
+
actionMenuShadow: "var(--fibery-color-actionMenuShadow)",
|
|
18
|
+
shadowPopup: "var(--fibery-color-shadowPopup)",
|
|
19
|
+
shadowSidebar: "var(--fibery-color-shadowSidebar)",
|
|
20
|
+
highlightBgYellow: "var(--fibery-color-highlightBgYellow)",
|
|
21
|
+
highlightFgYellow: "var(--fibery-color-highlightFgYellow)",
|
|
22
|
+
highlightFgOnBgYellow: "var(--fibery-color-highlightFgOnBgYellow)",
|
|
23
|
+
highlightBgGreen: "var(--fibery-color-highlightBgGreen)",
|
|
24
|
+
highlightFgGreen: "var(--fibery-color-highlightFgGreen)",
|
|
25
|
+
highlightFgOnBgGreen: "var(--fibery-color-highlightFgOnBgGreen)",
|
|
26
|
+
highlightBgAquamarine: "var(--fibery-color-highlightBgAquamarine)",
|
|
27
|
+
highlightFgAquamarine: "var(--fibery-color-highlightFgAquamarine)",
|
|
28
|
+
highlightFgOnBgAquamarine: "var(--fibery-color-highlightFgOnBgAquamarine)",
|
|
29
|
+
highlightBgAqua: "var(--fibery-color-highlightBgAqua)",
|
|
30
|
+
highlightFgAqua: "var(--fibery-color-highlightFgAqua)",
|
|
31
|
+
highlightFgOnBgAqua: "var(--fibery-color-highlightFgOnBgAqua)",
|
|
32
|
+
highlightBgBlue: "var(--fibery-color-highlightBgBlue)",
|
|
33
|
+
highlightFgBlue: "var(--fibery-color-highlightFgBlue)",
|
|
34
|
+
highlightFgOnBgBlue: "var(--fibery-color-highlightFgOnBgBlue)",
|
|
35
|
+
highlightBgPurple: "var(--fibery-color-highlightBgPurple)",
|
|
36
|
+
highlightFgPurple: "var(--fibery-color-highlightFgPurple)",
|
|
37
|
+
highlightFgOnBgPurple: "var(--fibery-color-highlightFgOnBgPurple)",
|
|
38
|
+
highlightBgPink: "var(--fibery-color-highlightBgPink)",
|
|
39
|
+
highlightFgPink: "var(--fibery-color-highlightFgPink)",
|
|
40
|
+
highlightFgOnBgPink: "var(--fibery-color-highlightFgOnBgPink)",
|
|
41
|
+
highlightBgRed: "var(--fibery-color-highlightBgRed)",
|
|
42
|
+
highlightFgRed: "var(--fibery-color-highlightFgRed)",
|
|
43
|
+
highlightFgOnBgRed: "var(--fibery-color-highlightFgOnBgRed)",
|
|
44
|
+
highlightBgGrey: "var(--fibery-color-highlightBgGrey)",
|
|
45
|
+
highlightFgGrey: "var(--fibery-color-highlightFgGrey)",
|
|
46
|
+
highlightFgOnBgGrey: "var(--fibery-color-highlightFgOnBgGrey)",
|
|
47
|
+
colorPickerCssFilter: "var(--fibery-color-colorPickerCssFilter)",
|
|
48
|
+
mode: "var(--fibery-color-mode)",
|
|
49
|
+
colorAccentBgSubtle: "var(--fibery-color-colorAccentBgSubtle)",
|
|
50
|
+
colorAccentBgMild: "var(--fibery-color-colorAccentBgMild)",
|
|
51
|
+
colorAccentBgMedium: "var(--fibery-color-colorAccentBgMedium)",
|
|
52
|
+
colorAccentBgStrong: "var(--fibery-color-colorAccentBgStrong)",
|
|
53
|
+
colorAccentBgBold: "var(--fibery-color-colorAccentBgBold)",
|
|
54
|
+
colorAccentBgVivid: "var(--fibery-color-colorAccentBgVivid)",
|
|
55
|
+
colorAccentStroke: "var(--fibery-color-colorAccentStroke)",
|
|
56
|
+
colorAccentStrokeHover: "var(--fibery-color-colorAccentStrokeHover)",
|
|
57
|
+
colorAccentStrokeFocus: "var(--fibery-color-colorAccentStrokeFocus)",
|
|
58
|
+
colorAccentSolid: "var(--fibery-color-colorAccentSolid)",
|
|
59
|
+
colorAccent: "var(--fibery-color-colorAccent)",
|
|
60
|
+
darkenPrimary: "var(--fibery-color-darkenPrimary)",
|
|
61
|
+
whiteColor: "var(--fibery-color-whiteColor)",
|
|
62
|
+
blackColor: "var(--fibery-color-blackColor)",
|
|
63
|
+
mainBg: "var(--fibery-color-mainBg)",
|
|
64
|
+
panelBg: "var(--fibery-color-panelBg)",
|
|
65
|
+
panelContentBg: "var(--fibery-color-panelContentBg)",
|
|
66
|
+
colorBgRelationContainer: "var(--fibery-color-colorBgRelationContainer)",
|
|
67
|
+
colorAI: "var(--fibery-color-colorAI)",
|
|
68
|
+
colorBgAI: "var(--fibery-color-colorBgAI)",
|
|
69
|
+
colorBgAIFloatingLauncher: "var(--fibery-color-colorBgAIFloatingLauncher)",
|
|
70
|
+
colorBgAIFloatingPanelContent: "var(--fibery-color-colorBgAIFloatingPanelContent)",
|
|
71
|
+
colorBgAISidebarContent: "var(--fibery-color-colorBgAISidebarContent)",
|
|
72
|
+
pageContentBg: "var(--fibery-color-pageContentBg)",
|
|
73
|
+
colorBgPopup: "var(--fibery-color-colorBgPopup)",
|
|
74
|
+
menuBg: "var(--fibery-color-menuBg)",
|
|
75
|
+
menuTextColor: "var(--fibery-color-menuTextColor)",
|
|
76
|
+
menuItemHoverColor: "var(--fibery-color-menuItemHoverColor)",
|
|
77
|
+
menuSelectedTextColor: "var(--fibery-color-menuSelectedTextColor)",
|
|
78
|
+
menuIconColor: "var(--fibery-color-menuIconColor)",
|
|
79
|
+
textColor: "var(--fibery-color-textColor)",
|
|
80
|
+
textSelectionColor: "var(--fibery-color-textSelectionColor)",
|
|
81
|
+
accentTextColor: "var(--fibery-color-accentTextColor)",
|
|
82
|
+
disabledTextColor: "var(--fibery-color-disabledTextColor)",
|
|
83
|
+
inversedTextColor: "var(--fibery-color-inversedTextColor)",
|
|
84
|
+
colorTextSecondary: "var(--fibery-color-colorTextSecondary)",
|
|
85
|
+
linkColor: "var(--fibery-color-linkColor)",
|
|
86
|
+
linkBorder: "var(--fibery-color-linkBorder)",
|
|
87
|
+
linkHoverColor: "var(--fibery-color-linkHoverColor)",
|
|
88
|
+
linkBorderHover: "var(--fibery-color-linkBorderHover)",
|
|
89
|
+
codeColor: "var(--fibery-color-codeColor)",
|
|
90
|
+
codeBgColor: "var(--fibery-color-codeBgColor)",
|
|
91
|
+
codeBlockBgColor: "var(--fibery-color-codeBlockBgColor)",
|
|
92
|
+
addedDiffTextColor: "var(--fibery-color-addedDiffTextColor)",
|
|
93
|
+
removedDiffTextColor: "var(--fibery-color-removedDiffTextColor)",
|
|
94
|
+
entityNodeColor: "var(--fibery-color-entityNodeColor)",
|
|
95
|
+
entityNodeBorder: "var(--fibery-color-entityNodeBorder)",
|
|
96
|
+
entityNodeHoverColor: "var(--fibery-color-entityNodeHoverColor)",
|
|
97
|
+
entityNodeBorderHover: "var(--fibery-color-entityNodeBorderHover)",
|
|
98
|
+
entityNodeBgColor: "var(--fibery-color-entityNodeBgColor)",
|
|
99
|
+
shortcutTextColor: "var(--fibery-color-shortcutTextColor)",
|
|
100
|
+
shortcutBorder: "var(--fibery-color-shortcutBorder)",
|
|
101
|
+
shortcutBorderColor: "var(--fibery-color-shortcutBorderColor)",
|
|
102
|
+
inputBgColor: "var(--fibery-color-inputBgColor)",
|
|
103
|
+
inputDisabledBgColor: "var(--fibery-color-inputDisabledBgColor)",
|
|
104
|
+
inputDisabledBorderColor: "var(--fibery-color-inputDisabledBorderColor)",
|
|
105
|
+
inputCopyBgColor: "var(--fibery-color-inputCopyBgColor)",
|
|
106
|
+
inputBorderColor: "var(--fibery-color-inputBorderColor)",
|
|
107
|
+
inputBorderHoverColor: "var(--fibery-color-inputBorderHoverColor)",
|
|
108
|
+
inputBorderFocusColor: "var(--fibery-color-inputBorderFocusColor)",
|
|
109
|
+
inputBorderBlendMode: "var(--fibery-color-inputBorderBlendMode)",
|
|
110
|
+
inputPlaceholderTextColor: "var(--fibery-color-inputPlaceholderTextColor)",
|
|
111
|
+
inputErrorBorderColor: "var(--fibery-color-inputErrorBorderColor)",
|
|
112
|
+
inputErrorBorderHoverColor: "var(--fibery-color-inputErrorBorderHoverColor)",
|
|
113
|
+
inputErrorBorderFocusColor: "var(--fibery-color-inputErrorBorderFocusColor)",
|
|
114
|
+
inputErrorBorderFocusShadow: "var(--fibery-color-inputErrorBorderFocusShadow)",
|
|
115
|
+
inputBorderWarningColor: "var(--fibery-color-inputBorderWarningColor)",
|
|
116
|
+
buttonPrimaryColor: "var(--fibery-color-buttonPrimaryColor)",
|
|
117
|
+
buttonColor: "var(--fibery-color-buttonColor)",
|
|
118
|
+
buttonPrimaryTextColor: "var(--fibery-color-buttonPrimaryTextColor)",
|
|
119
|
+
checkboxColor: "var(--fibery-color-checkboxColor)",
|
|
120
|
+
colorBorderBlockQuote: "var(--fibery-color-colorBorderBlockQuote)",
|
|
121
|
+
colorBgActionsMenu: "var(--fibery-color-colorBgActionsMenu)",
|
|
122
|
+
colorBgActionsMenuItemHover: "var(--fibery-color-colorBgActionsMenuItemHover)",
|
|
123
|
+
colorBgActionsMenuItemSelected: "var(--fibery-color-colorBgActionsMenuItemSelected)",
|
|
124
|
+
colorBgActionsMenuItemSelectedHover: "var(--fibery-color-colorBgActionsMenuItemSelectedHover)",
|
|
125
|
+
colorBgActionsMenuItemDangerHover: "var(--fibery-color-colorBgActionsMenuItemDangerHover)",
|
|
126
|
+
colorBgActionsMenuItemDangerActive: "var(--fibery-color-colorBgActionsMenuItemDangerActive)",
|
|
127
|
+
actionMenuBg: "var(--fibery-color-actionMenuBg)",
|
|
128
|
+
actionMenuInnerBg: "var(--fibery-color-actionMenuInnerBg)",
|
|
129
|
+
actionMenuHover: "var(--fibery-color-actionMenuHover)",
|
|
130
|
+
actionMenuInnerHover: "var(--fibery-color-actionMenuInnerHover)",
|
|
131
|
+
actionMenuButtonColor: "var(--fibery-color-actionMenuButtonColor)",
|
|
132
|
+
actionMenuButtonHoverColor: "var(--fibery-color-actionMenuButtonHoverColor)",
|
|
133
|
+
actionMenuButtonShadow: "var(--fibery-color-actionMenuButtonShadow)",
|
|
134
|
+
actionMenuSeparatorColor: "var(--fibery-color-actionMenuSeparatorColor)",
|
|
135
|
+
separatorColor: "var(--fibery-color-separatorColor)",
|
|
136
|
+
separatorColorDimmed: "var(--fibery-color-separatorColorDimmed)",
|
|
137
|
+
separatorBreadcrumbsColor: "var(--fibery-color-separatorBreadcrumbsColor)",
|
|
138
|
+
borderSeparatorDimmed: "var(--fibery-color-borderSeparatorDimmed)",
|
|
139
|
+
borderSeparator: "var(--fibery-color-borderSeparator)",
|
|
140
|
+
borderSeparatorMedium: "var(--fibery-color-borderSeparatorMedium)",
|
|
141
|
+
borderSeparatorStrong: "var(--fibery-color-borderSeparatorStrong)",
|
|
142
|
+
borderMedia: "var(--fibery-color-borderMedia)",
|
|
143
|
+
borderSolidSeparator: "var(--fibery-color-borderSolidSeparator)",
|
|
144
|
+
borderSolidSeparatorDimmed: "var(--fibery-color-borderSolidSeparatorDimmed)",
|
|
145
|
+
borderSolidFilterGroup: "var(--fibery-color-borderSolidFilterGroup)",
|
|
146
|
+
borderSolidGrid: "var(--fibery-color-borderSolidGrid)",
|
|
147
|
+
borderSolidOutlineNeutral: "var(--fibery-color-borderSolidOutlineNeutral)",
|
|
148
|
+
borderSolidMedia: "var(--fibery-color-borderSolidMedia)",
|
|
149
|
+
borderSolidCommentBubble: "var(--fibery-color-borderSolidCommentBubble)",
|
|
150
|
+
borderBlockQuote: "var(--fibery-color-borderBlockQuote)",
|
|
151
|
+
shadowCardDefault: "var(--fibery-color-shadowCardDefault)",
|
|
152
|
+
shadowCardHover: "var(--fibery-color-shadowCardHover)",
|
|
153
|
+
shadowCardInset: "var(--fibery-color-shadowCardInset)",
|
|
154
|
+
iconColor: "var(--fibery-color-iconColor)",
|
|
155
|
+
appIconColor: "var(--fibery-color-appIconColor)",
|
|
156
|
+
appIconBgColor: "var(--fibery-color-appIconBgColor)",
|
|
157
|
+
mentionBgColor: "var(--fibery-color-mentionBgColor)",
|
|
158
|
+
colorBgSelectMenu: "var(--fibery-color-colorBgSelectMenu)",
|
|
159
|
+
shadowSelectMenu: "var(--fibery-color-shadowSelectMenu)",
|
|
160
|
+
colorBgListItemGeneral: "var(--fibery-color-colorBgListItemGeneral)",
|
|
161
|
+
colorBgListItemGeneralHover: "var(--fibery-color-colorBgListItemGeneralHover)",
|
|
162
|
+
colorBgListItemGeneralFocus: "var(--fibery-color-colorBgListItemGeneralFocus)",
|
|
163
|
+
colorBgListItemGeneralSelected: "var(--fibery-color-colorBgListItemGeneralSelected)",
|
|
164
|
+
colorBgListItemGeneralSelectedHover: "var(--fibery-color-colorBgListItemGeneralSelectedHover)",
|
|
165
|
+
colorBgListItemGeneralSelectedFocus: "var(--fibery-color-colorBgListItemGeneralSelectedFocus)",
|
|
166
|
+
colorBgListItemGeneralDisabled: "var(--fibery-color-colorBgListItemGeneralDisabled)",
|
|
167
|
+
colorTextListItemGeneralDisabled: "var(--fibery-color-colorTextListItemGeneralDisabled)",
|
|
168
|
+
colorBgListItemGeneralSelectedDisabled: "var(--fibery-color-colorBgListItemGeneralSelectedDisabled)",
|
|
169
|
+
opacityListItemGeneralDisabled: "var(--fibery-color-opacityListItemGeneralDisabled)",
|
|
170
|
+
colorSearchSubtitle: "var(--fibery-color-colorSearchSubtitle)",
|
|
171
|
+
colorBgSearchRowHover: "var(--fibery-color-colorBgSearchRowHover)",
|
|
172
|
+
colorBgSearchRowCreateHover: "var(--fibery-color-colorBgSearchRowCreateHover)",
|
|
173
|
+
opacitySearchItemDone: "var(--fibery-color-opacitySearchItemDone)",
|
|
174
|
+
colorBgEntityBoxDefault: "var(--fibery-color-colorBgEntityBoxDefault)",
|
|
175
|
+
shadowStrokeEntityBoxDefault: "var(--fibery-color-shadowStrokeEntityBoxDefault)",
|
|
176
|
+
shadowEntityBoxDefault: "var(--fibery-color-shadowEntityBoxDefault)",
|
|
177
|
+
colorBgEntityBoxDefaultHover: "var(--fibery-color-colorBgEntityBoxDefaultHover)",
|
|
178
|
+
shadowEntityBoxDefaultHover: "var(--fibery-color-shadowEntityBoxDefaultHover)",
|
|
179
|
+
colorBgEntityBoxDefaultFocus: "var(--fibery-color-colorBgEntityBoxDefaultFocus)",
|
|
180
|
+
colorOverlayEntityBoxDefaultFocus: "var(--fibery-color-colorOverlayEntityBoxDefaultFocus)",
|
|
181
|
+
shadowStrokeEntityBoxDefaultFocus: "var(--fibery-color-shadowStrokeEntityBoxDefaultFocus)",
|
|
182
|
+
colorBgEntityBoxDefaultFocusHover: "var(--fibery-color-colorBgEntityBoxDefaultFocusHover)",
|
|
183
|
+
colorOverlayEntityBoxDefaultFocusHover: "var(--fibery-color-colorOverlayEntityBoxDefaultFocusHover)",
|
|
184
|
+
shadowStrokeEntityBoxDefaultFocusHover: "var(--fibery-color-shadowStrokeEntityBoxDefaultFocusHover)",
|
|
185
|
+
opacityEntityBoxDefaultDrag: "var(--fibery-color-opacityEntityBoxDefaultDrag)",
|
|
186
|
+
shadowEntityBoxDefaultDrag: "var(--fibery-color-shadowEntityBoxDefaultDrag)",
|
|
187
|
+
colorBgEntityBoxSelected: "var(--fibery-color-colorBgEntityBoxSelected)",
|
|
188
|
+
shadowStrokeEntityBoxSelected: "var(--fibery-color-shadowStrokeEntityBoxSelected)",
|
|
189
|
+
colorBgEntityBoxSelectedHover: "var(--fibery-color-colorBgEntityBoxSelectedHover)",
|
|
190
|
+
shadowStrokeEntityBoxSelectedHover: "var(--fibery-color-shadowStrokeEntityBoxSelectedHover)",
|
|
191
|
+
colorBgEntityBoxSelectedDrag: "var(--fibery-color-colorBgEntityBoxSelectedDrag)",
|
|
192
|
+
shadowStrokeEntityBoxSelectedDrag: "var(--fibery-color-shadowStrokeEntityBoxSelectedDrag)",
|
|
193
|
+
opacityEntityBoxDisabled: "var(--fibery-color-opacityEntityBoxDisabled)",
|
|
194
|
+
opacityEntityBoxDisabledHover: "var(--fibery-color-opacityEntityBoxDisabledHover)",
|
|
195
|
+
opacityEntityBoxDisabledFocus: "var(--fibery-color-opacityEntityBoxDisabledFocus)",
|
|
196
|
+
opacityEntityBoxDisabledDrag: "var(--fibery-color-opacityEntityBoxDisabledDrag)",
|
|
197
|
+
entityCardBgColor: "var(--fibery-color-entityCardBgColor)",
|
|
198
|
+
entityCardSelectedColor: "var(--fibery-color-entityCardSelectedColor)",
|
|
199
|
+
entityCardHoverColor: "var(--fibery-color-entityCardHoverColor)",
|
|
200
|
+
entityCardDoneColor: "var(--fibery-color-entityCardDoneColor)",
|
|
201
|
+
entityCardShadow: "var(--fibery-color-entityCardShadow)",
|
|
202
|
+
entityCardShadowHover: "var(--fibery-color-entityCardShadowHover)",
|
|
203
|
+
colorBgSegmentedControl: "var(--fibery-color-colorBgSegmentedControl)",
|
|
204
|
+
colorBgMenuHeaderAvatar: "var(--fibery-color-colorBgMenuHeaderAvatar)",
|
|
205
|
+
shadowMenuHeaderAvatar: "var(--fibery-color-shadowMenuHeaderAvatar)",
|
|
206
|
+
opacityMenuItemDragged: "var(--fibery-color-opacityMenuItemDragged)",
|
|
207
|
+
colorBgMenuItemSelectedDragged: "var(--fibery-color-colorBgMenuItemSelectedDragged)",
|
|
208
|
+
colorTextMenuItem: "var(--fibery-color-colorTextMenuItem)",
|
|
209
|
+
colorBgMenuItem: "var(--fibery-color-colorBgMenuItem)",
|
|
210
|
+
colorBgMenuItemHover: "var(--fibery-color-colorBgMenuItemHover)",
|
|
211
|
+
colorBgMenuItemFocus: "var(--fibery-color-colorBgMenuItemFocus)",
|
|
212
|
+
colorBgMenuItemSelected: "var(--fibery-color-colorBgMenuItemSelected)",
|
|
213
|
+
colorBgMenuItemSelectedHover: "var(--fibery-color-colorBgMenuItemSelectedHover)",
|
|
214
|
+
colorBgPinnedFieldsLabel: "var(--fibery-color-colorBgPinnedFieldsLabel)",
|
|
215
|
+
colorBgObjectEditorSeparator: "var(--fibery-color-colorBgObjectEditorSeparator)",
|
|
216
|
+
colorBgMenuItemSelectedFocused: "var(--fibery-color-colorBgMenuItemSelectedFocused)",
|
|
217
|
+
colorBgFieldEditorContainer: "var(--fibery-color-colorBgFieldEditorContainer)",
|
|
218
|
+
colorBgFieldEditorLinkEqualSign: "var(--fibery-color-colorBgFieldEditorLinkEqualSign)",
|
|
219
|
+
allowedDropColor: "var(--fibery-color-allowedDropColor)",
|
|
220
|
+
relationViewBgColor: "var(--fibery-color-relationViewBgColor)",
|
|
221
|
+
mySpaceIconColor: "var(--fibery-color-mySpaceIconColor)",
|
|
222
|
+
mySpaceIconBg: "var(--fibery-color-mySpaceIconBg)",
|
|
223
|
+
privateIconColor: "var(--fibery-color-privateIconColor)",
|
|
224
|
+
privateIconBg: "var(--fibery-color-privateIconBg)",
|
|
225
|
+
favoritesIconColor: "var(--fibery-color-favoritesIconColor)",
|
|
226
|
+
favoritesIconBg: "var(--fibery-color-favoritesIconBg)",
|
|
227
|
+
swatchDefault: "var(--fibery-color-swatchDefault)",
|
|
228
|
+
unitBg: "var(--fibery-color-unitBg)",
|
|
229
|
+
unitBgHover: "var(--fibery-color-unitBgHover)",
|
|
230
|
+
colorBgBadgeNeutral: "var(--fibery-color-colorBgBadgeNeutral)",
|
|
231
|
+
colorBgBadgeAccent: "var(--fibery-color-colorBgBadgeAccent)",
|
|
232
|
+
colorBgBadgeSuccess: "var(--fibery-color-colorBgBadgeSuccess)",
|
|
233
|
+
colorBgBadgeWarning: "var(--fibery-color-colorBgBadgeWarning)",
|
|
234
|
+
colorBgBadgeError: "var(--fibery-color-colorBgBadgeError)",
|
|
235
|
+
colorTextBadgeNeutral: "var(--fibery-color-colorTextBadgeNeutral)",
|
|
236
|
+
colorTextBadgeAccent: "var(--fibery-color-colorTextBadgeAccent)",
|
|
237
|
+
colorTextBadgeSuccess: "var(--fibery-color-colorTextBadgeSuccess)",
|
|
238
|
+
colorTextBadgeWarning: "var(--fibery-color-colorTextBadgeWarning)",
|
|
239
|
+
colorTextBadgeError: "var(--fibery-color-colorTextBadgeError)",
|
|
240
|
+
badgeBgColor: "var(--fibery-color-badgeBgColor)",
|
|
241
|
+
tooltipBgColor: "var(--fibery-color-tooltipBgColor)",
|
|
242
|
+
todayMarkerColor: "var(--fibery-color-todayMarkerColor)",
|
|
243
|
+
viewBgOverlayColor: "var(--fibery-color-viewBgOverlayColor)",
|
|
244
|
+
floatEditorMenuBg: "var(--fibery-color-floatEditorMenuBg)",
|
|
245
|
+
floatEditorActiveColor: "var(--fibery-color-floatEditorActiveColor)",
|
|
246
|
+
commentColor: "var(--fibery-color-commentColor)",
|
|
247
|
+
cellBackgroundColor: "var(--fibery-color-cellBackgroundColor)",
|
|
248
|
+
cellBackgroundHoverColor: "var(--fibery-color-cellBackgroundHoverColor)",
|
|
249
|
+
cellBorderColor: "var(--fibery-color-cellBorderColor)",
|
|
250
|
+
cellPinnedBorderColor: "var(--fibery-color-cellPinnedBorderColor)",
|
|
251
|
+
tableRowWarningColor: "var(--fibery-color-tableRowWarningColor)",
|
|
252
|
+
errorBgColor: "var(--fibery-color-errorBgColor)",
|
|
253
|
+
errorTextColor: "var(--fibery-color-errorTextColor)",
|
|
254
|
+
errorButtonColor: "var(--fibery-color-errorButtonColor)",
|
|
255
|
+
warningBgColor: "var(--fibery-color-warningBgColor)",
|
|
256
|
+
warningButtonColor: "var(--fibery-color-warningButtonColor)",
|
|
257
|
+
infoBox: "var(--fibery-color-infoBox)",
|
|
258
|
+
appCardBgColor: "var(--fibery-color-appCardBgColor)",
|
|
259
|
+
appCardHoverColor: "var(--fibery-color-appCardHoverColor)",
|
|
260
|
+
modalBg: "var(--fibery-color-modalBg)",
|
|
261
|
+
modalContentBg: "var(--fibery-color-modalContentBg)",
|
|
262
|
+
progressIconBg: "var(--fibery-color-progressIconBg)",
|
|
263
|
+
progressIconFill: "var(--fibery-color-progressIconFill)",
|
|
264
|
+
formBg: "var(--fibery-color-formBg)",
|
|
265
|
+
formHeaderShadow: "var(--fibery-color-formHeaderShadow)",
|
|
266
|
+
formEditorFieldBg: "var(--fibery-color-formEditorFieldBg)",
|
|
267
|
+
filterGroup1Bg: "var(--fibery-color-filterGroup1Bg)",
|
|
268
|
+
filterGroup2Bg: "var(--fibery-color-filterGroup2Bg)",
|
|
269
|
+
filterGroupBorder: "var(--fibery-color-filterGroupBorder)",
|
|
270
|
+
colorBgNotificationHover: "var(--fibery-color-colorBgNotificationHover)",
|
|
271
|
+
colorBgNotificationSelected: "var(--fibery-color-colorBgNotificationSelected)",
|
|
272
|
+
colorBgNotificationSelectedHover: "var(--fibery-color-colorBgNotificationSelectedHover)",
|
|
273
|
+
disabledInversedTextColor: "var(--fibery-color-disabledInversedTextColor)",
|
|
274
|
+
success: "var(--fibery-color-success)",
|
|
275
|
+
danger: "var(--fibery-color-danger)",
|
|
276
|
+
active: "var(--fibery-color-active)",
|
|
277
|
+
warning: "var(--fibery-color-warning)",
|
|
278
|
+
cardBg: "var(--fibery-color-cardBg)",
|
|
279
|
+
selectedImageBorder: "var(--fibery-color-selectedImageBorder)",
|
|
280
|
+
transparent: "var(--fibery-color-transparent)",
|
|
281
|
+
progressBg: "var(--fibery-color-progressBg)",
|
|
282
|
+
progressText: "var(--fibery-color-progressText)",
|
|
283
|
+
progressFillBg: "var(--fibery-color-progressFillBg)",
|
|
284
|
+
progressFillText: "var(--fibery-color-progressFillText)",
|
|
285
|
+
progressBarFillNeutral: "var(--fibery-color-progressBarFillNeutral)",
|
|
286
|
+
progressBarFill: "var(--fibery-color-progressBarFill)",
|
|
287
|
+
progressBarBg: "var(--fibery-color-progressBarBg)",
|
|
288
|
+
colorPickerSwatchBorder: "var(--fibery-color-colorPickerSwatchBorder)",
|
|
289
|
+
colorBorderRichTextMedia: "var(--fibery-color-colorBorderRichTextMedia)",
|
|
290
|
+
richTextTableBorder: "var(--fibery-color-richTextTableBorder)",
|
|
291
|
+
colorBgDropLine: "var(--fibery-color-colorBgDropLine)",
|
|
292
|
+
viewBg: "var(--fibery-color-viewBg)",
|
|
293
|
+
viewSecondaryBg: "var(--fibery-color-viewSecondaryBg)",
|
|
294
|
+
viewHighlightBg: "var(--fibery-color-viewHighlightBg)",
|
|
295
|
+
boardBg: "var(--fibery-color-boardBg)",
|
|
296
|
+
boardBgWithOpacity80: "var(--fibery-color-boardBgWithOpacity80)",
|
|
297
|
+
boardAxisBgHover: "var(--fibery-color-boardAxisBgHover)",
|
|
298
|
+
gridHeaderBgColor: "var(--fibery-color-gridHeaderBgColor)",
|
|
299
|
+
gridHeaderHoverBgColor: "var(--fibery-color-gridHeaderHoverBgColor)",
|
|
300
|
+
gridHeaderTextColor: "var(--fibery-color-gridHeaderTextColor)",
|
|
301
|
+
gridCellBgColor: "var(--fibery-color-gridCellBgColor)",
|
|
302
|
+
gridCellBorderColor: "var(--fibery-color-gridCellBorderColor)",
|
|
303
|
+
gridDisabledCellBgColor: "var(--fibery-color-gridDisabledCellBgColor)",
|
|
304
|
+
gridSelectedCellBgColor: "var(--fibery-color-gridSelectedCellBgColor)",
|
|
305
|
+
gridHighlightedCellBgColor: "var(--fibery-color-gridHighlightedCellBgColor)",
|
|
306
|
+
gridSelectedCellBorderColor: "var(--fibery-color-gridSelectedCellBorderColor)",
|
|
307
|
+
gridSelectedPinnedCellBorderColor: "var(--fibery-color-gridSelectedPinnedCellBorderColor)",
|
|
308
|
+
gridDisabledSelectedCellBgColor: "var(--fibery-color-gridDisabledSelectedCellBgColor)",
|
|
309
|
+
gridActiveCellBorderColor: "var(--fibery-color-gridActiveCellBorderColor)",
|
|
310
|
+
timelineEntityHandleColor: "var(--fibery-color-timelineEntityHandleColor)",
|
|
311
|
+
timelineDependencyHoverBgColor: "var(--fibery-color-timelineDependencyHoverBgColor)",
|
|
312
|
+
timelineDependencyOverlapBgColor: "var(--fibery-color-timelineDependencyOverlapBgColor)",
|
|
313
|
+
timelineDependencyOverlapHoverBgColor: "var(--fibery-color-timelineDependencyOverlapHoverBgColor)",
|
|
314
|
+
timelineCellBgColor: "var(--fibery-color-timelineCellBgColor)",
|
|
315
|
+
timelineCellWeekendBgColor: "var(--fibery-color-timelineCellWeekendBgColor)",
|
|
316
|
+
timelineCellTodayBgColor: "var(--fibery-color-timelineCellTodayBgColor)",
|
|
317
|
+
timelineCreateEntityPlaceholderBgColor: "var(--fibery-color-timelineCreateEntityPlaceholderBgColor)",
|
|
318
|
+
colorBgButtonSolidAccentDefault: "var(--fibery-color-colorBgButtonSolidAccentDefault)",
|
|
319
|
+
colorBgButtonSolidAccentHover: "var(--fibery-color-colorBgButtonSolidAccentHover)",
|
|
320
|
+
colorBgButtonSolidNeutralDefault: "var(--fibery-color-colorBgButtonSolidNeutralDefault)",
|
|
321
|
+
colorBgButtonSolidNeutralHover: "var(--fibery-color-colorBgButtonSolidNeutralHover)",
|
|
322
|
+
colorBgButtonSolidDestructiveDefault: "var(--fibery-color-colorBgButtonSolidDestructiveDefault)",
|
|
323
|
+
colorBgButtonSolidDestructiveHover: "var(--fibery-color-colorBgButtonSolidDestructiveHover)",
|
|
324
|
+
colorTextButtonSolidAccent: "var(--fibery-color-colorTextButtonSolidAccent)",
|
|
325
|
+
colorTextButtonSolidAccentActive: "var(--fibery-color-colorTextButtonSolidAccentActive)",
|
|
326
|
+
colorTextButtonSolidNeutral: "var(--fibery-color-colorTextButtonSolidNeutral)",
|
|
327
|
+
colorTextButtonSolidNeutralActive: "var(--fibery-color-colorTextButtonSolidNeutralActive)",
|
|
328
|
+
colorTextButtonSolidDestructive: "var(--fibery-color-colorTextButtonSolidDestructive)",
|
|
329
|
+
colorTextButtonSolidDestructiveActive: "var(--fibery-color-colorTextButtonSolidDestructiveActive)",
|
|
330
|
+
colorIconButtonSolidAccent: "var(--fibery-color-colorIconButtonSolidAccent)",
|
|
331
|
+
colorIconButtonSolidNeutral: "var(--fibery-color-colorIconButtonSolidNeutral)",
|
|
332
|
+
colorIconButtonSolidDestructive: "var(--fibery-color-colorIconButtonSolidDestructive)",
|
|
333
|
+
colorBorderButtonOutlineAccentDefault: "var(--fibery-color-colorBorderButtonOutlineAccentDefault)",
|
|
334
|
+
colorBorderButtonOutlineNeutralDefault: "var(--fibery-color-colorBorderButtonOutlineNeutralDefault)",
|
|
335
|
+
colorBorderButtonOutlineDestructiveDefault: "var(--fibery-color-colorBorderButtonOutlineDestructiveDefault)",
|
|
336
|
+
colorBgButtonOutlineAccentDefault: "var(--fibery-color-colorBgButtonOutlineAccentDefault)",
|
|
337
|
+
colorBgButtonOutlineAccentHover: "var(--fibery-color-colorBgButtonOutlineAccentHover)",
|
|
338
|
+
colorBgButtonOutlineNeutralDefault: "var(--fibery-color-colorBgButtonOutlineNeutralDefault)",
|
|
339
|
+
colorBgButtonOutlineNeutralHover: "var(--fibery-color-colorBgButtonOutlineNeutralHover)",
|
|
340
|
+
colorBgButtonOutlineDestructiveDefault: "var(--fibery-color-colorBgButtonOutlineDestructiveDefault)",
|
|
341
|
+
colorBgButtonOutlineDestructiveHover: "var(--fibery-color-colorBgButtonOutlineDestructiveHover)",
|
|
342
|
+
colorTextButtonOutlineAccent: "var(--fibery-color-colorTextButtonOutlineAccent)",
|
|
343
|
+
colorTextButtonOutlineAccentActive: "var(--fibery-color-colorTextButtonOutlineAccentActive)",
|
|
344
|
+
colorTextButtonOutlineNeutral: "var(--fibery-color-colorTextButtonOutlineNeutral)",
|
|
345
|
+
colorTextButtonOutlineNeutralActive: "var(--fibery-color-colorTextButtonOutlineNeutralActive)",
|
|
346
|
+
colorTextButtonOutlineDestructive: "var(--fibery-color-colorTextButtonOutlineDestructive)",
|
|
347
|
+
colorTextButtonOutlineDestructiveActive: "var(--fibery-color-colorTextButtonOutlineDestructiveActive)",
|
|
348
|
+
colorIconButtonOutlineAccent: "var(--fibery-color-colorIconButtonOutlineAccent)",
|
|
349
|
+
colorIconButtonOutlineNeutral: "var(--fibery-color-colorIconButtonOutlineNeutral)",
|
|
350
|
+
colorIconButtonOutlineDestructive: "var(--fibery-color-colorIconButtonOutlineDestructive)",
|
|
351
|
+
colorBgButtonSoftAccentDefault: "var(--fibery-color-colorBgButtonSoftAccentDefault)",
|
|
352
|
+
colorBgButtonSoftAccentHover: "var(--fibery-color-colorBgButtonSoftAccentHover)",
|
|
353
|
+
colorBgButtonSoftNeutralDefault: "var(--fibery-color-colorBgButtonSoftNeutralDefault)",
|
|
354
|
+
colorBgButtonSoftNeutralHover: "var(--fibery-color-colorBgButtonSoftNeutralHover)",
|
|
355
|
+
colorBgButtonSoftDestructiveDefault: "var(--fibery-color-colorBgButtonSoftDestructiveDefault)",
|
|
356
|
+
colorBgButtonSoftDestructiveHover: "var(--fibery-color-colorBgButtonSoftDestructiveHover)",
|
|
357
|
+
colorTextButtonSoftAccent: "var(--fibery-color-colorTextButtonSoftAccent)",
|
|
358
|
+
colorTextButtonSoftAccentActive: "var(--fibery-color-colorTextButtonSoftAccentActive)",
|
|
359
|
+
colorTextButtonSoftNeutral: "var(--fibery-color-colorTextButtonSoftNeutral)",
|
|
360
|
+
colorTextButtonSoftNeutralActive: "var(--fibery-color-colorTextButtonSoftNeutralActive)",
|
|
361
|
+
colorTextButtonSoftDestructive: "var(--fibery-color-colorTextButtonSoftDestructive)",
|
|
362
|
+
colorTextButtonSoftDestructiveActive: "var(--fibery-color-colorTextButtonSoftDestructiveActive)",
|
|
363
|
+
colorIconButtonSoftAccent: "var(--fibery-color-colorIconButtonSoftAccent)",
|
|
364
|
+
colorIconButtonSoftNeutral: "var(--fibery-color-colorIconButtonSoftNeutral)",
|
|
365
|
+
colorIconButtonSoftDestructive: "var(--fibery-color-colorIconButtonSoftDestructive)",
|
|
366
|
+
colorBgButtonGhostAccentDefault: "var(--fibery-color-colorBgButtonGhostAccentDefault)",
|
|
367
|
+
colorBgButtonGhostAccentHover: "var(--fibery-color-colorBgButtonGhostAccentHover)",
|
|
368
|
+
colorBgButtonGhostNeutralDefault: "var(--fibery-color-colorBgButtonGhostNeutralDefault)",
|
|
369
|
+
colorBgButtonGhostNeutralHover: "var(--fibery-color-colorBgButtonGhostNeutralHover)",
|
|
370
|
+
colorBgButtonGhostDestructiveDefault: "var(--fibery-color-colorBgButtonGhostDestructiveDefault)",
|
|
371
|
+
colorBgButtonGhostDestructiveHover: "var(--fibery-color-colorBgButtonGhostDestructiveHover)",
|
|
372
|
+
colorTextButtonGhostAccent: "var(--fibery-color-colorTextButtonGhostAccent)",
|
|
373
|
+
colorTextButtonGhostAccentActive: "var(--fibery-color-colorTextButtonGhostAccentActive)",
|
|
374
|
+
colorTextButtonGhostNeutral: "var(--fibery-color-colorTextButtonGhostNeutral)",
|
|
375
|
+
colorTextButtonGhostNeutralActive: "var(--fibery-color-colorTextButtonGhostNeutralActive)",
|
|
376
|
+
colorTextButtonGhostDestructive: "var(--fibery-color-colorTextButtonGhostDestructive)",
|
|
377
|
+
colorTextButtonGhostDestructiveActive: "var(--fibery-color-colorTextButtonGhostDestructiveActive)",
|
|
378
|
+
colorIconButtonGhostAccent: "var(--fibery-color-colorIconButtonGhostAccent)",
|
|
379
|
+
colorIconButtonGhostNeutral: "var(--fibery-color-colorIconButtonGhostNeutral)",
|
|
380
|
+
colorIconButtonGhostDestructive: "var(--fibery-color-colorIconButtonGhostDestructive)",
|
|
381
|
+
colorBorderAccentFocusRing: "var(--fibery-color-colorBorderAccentFocusRing)",
|
|
382
|
+
colorBorderNeutralFocusRing: "var(--fibery-color-colorBorderNeutralFocusRing)",
|
|
383
|
+
colorBorderDestructiveFocusRing: "var(--fibery-color-colorBorderDestructiveFocusRing)",
|
|
384
|
+
colorBgReactionsDefault: "var(--fibery-color-colorBgReactionsDefault)",
|
|
385
|
+
colorBgReactionsHover: "var(--fibery-color-colorBgReactionsHover)",
|
|
386
|
+
colorBorderReactionsHover: "var(--fibery-color-colorBorderReactionsHover)",
|
|
387
|
+
colorBgReactionsSelectedDefault: "var(--fibery-color-colorBgReactionsSelectedDefault)",
|
|
388
|
+
colorBorderReactionsSelectedDefault: "var(--fibery-color-colorBorderReactionsSelectedDefault)",
|
|
389
|
+
colorBgReactionsSelectedHover: "var(--fibery-color-colorBgReactionsSelectedHover)",
|
|
390
|
+
colorBorderReactionsSelectedHover: "var(--fibery-color-colorBorderReactionsSelectedHover)",
|
|
391
|
+
colorTextReactionsSelected: "var(--fibery-color-colorTextReactionsSelected)",
|
|
392
|
+
colorBgToastDefault: "var(--fibery-color-colorBgToastDefault)",
|
|
393
|
+
colorBgDbTabHover: "var(--fibery-color-colorBgDbTabHover)",
|
|
394
|
+
colorBgDbTabFocus: "var(--fibery-color-colorBgDbTabFocus)",
|
|
395
|
+
colorBgTabHover: "var(--fibery-color-colorBgTabHover)",
|
|
396
|
+
colorBgMessageContainer: "var(--fibery-color-colorBgMessageContainer)",
|
|
397
|
+
colorBgMessageContainerHover: "var(--fibery-color-colorBgMessageContainerHover)",
|
|
398
|
+
colorBgEntityAvatarDefault: "var(--fibery-color-colorBgEntityAvatarDefault)",
|
|
399
|
+
colorBgEntityAvatarHover: "var(--fibery-color-colorBgEntityAvatarHover)",
|
|
400
|
+
colorTextEntityAvatarDefault: "var(--fibery-color-colorTextEntityAvatarDefault)",
|
|
401
|
+
colorTextEntityAvatarHover: "var(--fibery-color-colorTextEntityAvatarHover)",
|
|
402
|
+
colorBgMessageHighlighted: "var(--fibery-color-colorBgMessageHighlighted)",
|
|
403
|
+
colorBgEditorImageZoomed: "var(--fibery-color-colorBgEditorImageZoomed)",
|
|
404
|
+
colorMermaidPrimaryColor: "var(--fibery-color-colorMermaidPrimaryColor)",
|
|
405
|
+
colorMermaidPrimaryBorderColor: "var(--fibery-color-colorMermaidPrimaryBorderColor)",
|
|
406
|
+
colorMermaidLineColor: "var(--fibery-color-colorMermaidLineColor)",
|
|
407
|
+
colorBgWhiteboard: "var(--fibery-color-colorBgWhiteboard)",
|
|
408
|
+
colorGridDotWhiteboard: "var(--fibery-color-colorGridDotWhiteboard)",
|
|
409
|
+
colorSelectionWhiteboardBorderEnabled: "var(--fibery-color-colorSelectionWhiteboardBorderEnabled)",
|
|
410
|
+
colorHighlightWhiteboardSelection: "var(--fibery-color-colorHighlightWhiteboardSelection)",
|
|
411
|
+
colorHighlightWhiteboardSelectionLocked: "var(--fibery-color-colorHighlightWhiteboardSelectionLocked)",
|
|
412
|
+
colorSelectionWhiteboardBorderDisabled: "var(--fibery-color-colorSelectionWhiteboardBorderDisabled)",
|
|
413
|
+
colorPlaceholderWhiteboardDefault: "var(--fibery-color-colorPlaceholderWhiteboardDefault)",
|
|
414
|
+
colorLinkPointWhiteboardDefault: "var(--fibery-color-colorLinkPointWhiteboardDefault)",
|
|
415
|
+
colorLinkPointWhiteboardFillDefault: "var(--fibery-color-colorLinkPointWhiteboardFillDefault)",
|
|
416
|
+
colorMapWhiteboardPreviewDefault: "var(--fibery-color-colorMapWhiteboardPreviewDefault)",
|
|
417
|
+
colorCardWhiteboardShadowDefault: "var(--fibery-color-colorCardWhiteboardShadowDefault)",
|
|
418
|
+
colorCardWhiteboardBgDefault: "var(--fibery-color-colorCardWhiteboardBgDefault)",
|
|
419
|
+
colorCardWhiteboardBorderDefault: "var(--fibery-color-colorCardWhiteboardBorderDefault)",
|
|
420
|
+
colorUnitHeaderWhiteboardDefault: "var(--fibery-color-colorUnitHeaderWhiteboardDefault)",
|
|
421
|
+
colorUnitWhiteboardBgDefault: "var(--fibery-color-colorUnitWhiteboardBgDefault)",
|
|
422
|
+
colorUnitWhiteboardBorderDefault: "var(--fibery-color-colorUnitWhiteboardBorderDefault)",
|
|
423
|
+
colorSectionWhiteboardBgInactive: "var(--fibery-color-colorSectionWhiteboardBgInactive)",
|
|
424
|
+
colorSectionWhiteboardBorderInactive: "var(--fibery-color-colorSectionWhiteboardBorderInactive)",
|
|
425
|
+
colorEmbedWhiteboardEditBorder: "var(--fibery-color-colorEmbedWhiteboardEditBorder)",
|
|
426
|
+
colorTextWhiteboardDefault: "var(--fibery-color-colorTextWhiteboardDefault)",
|
|
427
|
+
colorTextWhiteboardDisabled: "var(--fibery-color-colorTextWhiteboardDisabled)",
|
|
428
|
+
colorTextWhiteboardAccent: "var(--fibery-color-colorTextWhiteboardAccent)",
|
|
429
|
+
colorTextWhiteboardInversedDefault: "var(--fibery-color-colorTextWhiteboardInversedDefault)",
|
|
430
|
+
instrumentsMenuBg: "var(--fibery-color-instrumentsMenuBg)",
|
|
431
|
+
instrumentsMenuShadow: "var(--fibery-color-instrumentsMenuShadow)",
|
|
432
|
+
commentBubbleBg: "var(--fibery-color-commentBubbleBg)",
|
|
433
|
+
commentsPanelShadow: "var(--fibery-color-commentsPanelShadow)",
|
|
434
|
+
searchFiltersBg: "var(--fibery-color-searchFiltersBg)",
|
|
435
|
+
selectedColorBorder: "var(--fibery-color-selectedColorBorder)",
|
|
436
|
+
colorBgSegmentedControlDefault: "var(--fibery-color-colorBgSegmentedControlDefault)",
|
|
437
|
+
colorBgSegmentedControlActive: "var(--fibery-color-colorBgSegmentedControlActive)",
|
|
438
|
+
colorBgSegmentedControlHover: "var(--fibery-color-colorBgSegmentedControlHover)",
|
|
439
|
+
colorBorderSegmentedControlDefault: "var(--fibery-color-colorBorderSegmentedControlDefault)",
|
|
440
|
+
colorBgBannerNeutral: "var(--fibery-color-colorBgBannerNeutral)",
|
|
441
|
+
colorBgBannerPrimary: "var(--fibery-color-colorBgBannerPrimary)",
|
|
442
|
+
colorBgBannerWarning: "var(--fibery-color-colorBgBannerWarning)",
|
|
443
|
+
colorBgBannerError: "var(--fibery-color-colorBgBannerError)",
|
|
444
|
+
colorBgBannerSuccess: "var(--fibery-color-colorBgBannerSuccess)",
|
|
445
|
+
colorIconBannerNeutral: "var(--fibery-color-colorIconBannerNeutral)",
|
|
446
|
+
colorIconBannerAccent: "var(--fibery-color-colorIconBannerAccent)",
|
|
447
|
+
colorIconBannerWarning: "var(--fibery-color-colorIconBannerWarning)",
|
|
448
|
+
colorIconBannerError: "var(--fibery-color-colorIconBannerError)",
|
|
449
|
+
colorIconBannerSuccess: "var(--fibery-color-colorIconBannerSuccess)",
|
|
450
|
+
colorTextBannerNeutral: "var(--fibery-color-colorTextBannerNeutral)",
|
|
451
|
+
colorTextBannerAccent: "var(--fibery-color-colorTextBannerAccent)",
|
|
452
|
+
colorTextBannerWarning: "var(--fibery-color-colorTextBannerWarning)",
|
|
453
|
+
colorTextBannerError: "var(--fibery-color-colorTextBannerError)",
|
|
454
|
+
colorTextBannerSuccess: "var(--fibery-color-colorTextBannerSuccess)",
|
|
455
|
+
colorBgChargebeeInfoBox: "var(--fibery-color-colorBgChargebeeInfoBox)",
|
|
456
|
+
newCommentHorizontalRulerColor: "var(--fibery-color-newCommentHorizontalRulerColor)",
|
|
457
|
+
colorBgErrorMessage: "var(--fibery-color-colorBgErrorMessage)",
|
|
458
|
+
colorBorderLogoGrid: "var(--fibery-color-colorBorderLogoGrid)",
|
|
459
|
+
colorBorderLogoGridSubtle: "var(--fibery-color-colorBorderLogoGridSubtle)",
|
|
460
|
+
colorBorderLogoGridMedium: "var(--fibery-color-colorBorderLogoGridMedium)",
|
|
461
|
+
colorStrokeLogoDashed: "var(--fibery-color-colorStrokeLogoDashed)",
|
|
462
|
+
colorBgLogoCardTransparent: "var(--fibery-color-colorBgLogoCardTransparent)",
|
|
463
|
+
colorBgLogoCardDark: "var(--fibery-color-colorBgLogoCardDark)",
|
|
464
|
+
colorBgLogoCardMedium: "var(--fibery-color-colorBgLogoCardMedium)",
|
|
465
|
+
colorBgSkeletonFrom: "var(--fibery-color-colorBgSkeletonFrom)",
|
|
466
|
+
colorBgSkeletonTo: "var(--fibery-color-colorBgSkeletonTo)",
|
|
467
|
+
colorShadowInsetEdge: "var(--fibery-color-colorShadowInsetEdge)",
|
|
468
|
+
colorShadowBorder: "var(--fibery-color-colorShadowBorder)",
|
|
469
|
+
colorShadowElevation: "var(--fibery-color-colorShadowElevation)",
|
|
470
|
+
colorShadowOutline: "var(--fibery-color-colorShadowOutline)",
|
|
471
|
+
colorPlaceholder: "var(--fibery-color-colorPlaceholder)",
|
|
472
|
+
colorPlaceholderSubtle: "var(--fibery-color-colorPlaceholderSubtle)",
|
|
473
|
+
colorBgSubtleLight: "var(--fibery-color-colorBgSubtleLight)",
|
|
474
|
+
colorStrokeSurface: "var(--fibery-color-colorStrokeSurface)",
|
|
475
|
+
colorTextMilestone: "var(--fibery-color-colorTextMilestone)",
|
|
476
|
+
colorSpinnerIcon: "var(--fibery-color-colorSpinnerIcon)",
|
|
477
|
+
colorSpinnerBg: "var(--fibery-color-colorSpinnerBg)",
|
|
478
|
+
colorBgLaneSubtle: "var(--fibery-color-colorBgLaneSubtle)",
|
|
479
|
+
opacity15: "var(--fibery-color-opacity15)",
|
|
480
|
+
opacity20: "var(--fibery-color-opacity20)",
|
|
481
|
+
opacity25: "var(--fibery-color-opacity25)",
|
|
482
|
+
opacity30: "var(--fibery-color-opacity30)",
|
|
483
|
+
opacity40: "var(--fibery-color-opacity40)",
|
|
484
|
+
opacity50: "var(--fibery-color-opacity50)",
|
|
485
|
+
opacity60: "var(--fibery-color-opacity60)",
|
|
486
|
+
opacity65: "var(--fibery-color-opacity65)",
|
|
487
|
+
opacity70: "var(--fibery-color-opacity70)",
|
|
488
|
+
opacity75: "var(--fibery-color-opacity75)",
|
|
489
|
+
opacity80: "var(--fibery-color-opacity80)",
|
|
490
|
+
opacity85: "var(--fibery-color-opacity85)",
|
|
491
|
+
opacity90: "var(--fibery-color-opacity90)",
|
|
492
|
+
whiteA10: "var(--fibery-color-whiteA10)",
|
|
493
|
+
whiteA40: "var(--fibery-color-whiteA40)",
|
|
494
|
+
whiteA100: "var(--fibery-color-whiteA100)",
|
|
495
|
+
colorBgFileOverlay: "var(--fibery-color-colorBgFileOverlay)",
|
|
496
|
+
colorBgScrollFade: "var(--fibery-color-colorBgScrollFade)",
|
|
497
|
+
colorStrokeSelectedOutline: "var(--fibery-color-colorStrokeSelectedOutline)",
|
|
498
|
+
scrollbar: "var(--fibery-color-scrollbar)",
|
|
499
|
+
} as const;
|
|
500
|
+
export const menuItemHeightVar = "--fibery-layout-menuItemHeight" as const;
|
|
501
|
+
export const sidebarMenuItemHeightVar = "--fibery-layout-sidebarMenuItemHeight" as const;
|
|
502
|
+
export const sidebarMenuIconSizeVar = "--fibery-layout-sidebarMenuIconSize" as const;
|
|
503
|
+
export const listRowSurfaceFontSizeVar = "--fibery-layout-listRowSurfaceFontSize" as const;
|
|
504
|
+
export const layoutVars = {
|
|
505
|
+
menuItemHeight: "var(--fibery-layout-menuItemHeight)",
|
|
506
|
+
sidebarMenuItemHeight: "var(--fibery-layout-sidebarMenuItemHeight)",
|
|
507
|
+
sidebarMenuIconSize: "var(--fibery-layout-sidebarMenuIconSize)",
|
|
508
|
+
listRowSurfaceFontSize: "var(--fibery-layout-listRowSurfaceFontSize)",
|
|
509
|
+
} as const;
|
|
510
|
+
export const neutralStyles = {
|
|
511
|
+
light: {
|
|
512
|
+
"--fibery-color-surfaceElevationS": "0 2px 4px 0 rgba(0,0,0,0.05)",
|
|
513
|
+
"--fibery-color-surfaceElevationM": "0 4px 8px 0 rgba(0,0,0,0.09)",
|
|
514
|
+
"--fibery-color-surfaceElevationL": "0 8px 12px 0 rgba(0,0,0,0.09)",
|
|
515
|
+
"--fibery-color-shadow50": "0 0 0 1px rgba(23, 23, 23, 0.05)",
|
|
516
|
+
"--fibery-color-shadow100": "0 1px 4px 0 rgba(23, 23, 23, 0.05)",
|
|
517
|
+
"--fibery-color-shadow200": "0 2px 6px 0 rgba(23, 23, 23, 0.05)",
|
|
518
|
+
"--fibery-color-shadow300": "0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15)",
|
|
519
|
+
"--fibery-color-shadow400": "0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15)",
|
|
520
|
+
"--fibery-color-shadow500": "0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15)",
|
|
521
|
+
"--fibery-color-shadow600": "0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2)",
|
|
522
|
+
"--fibery-color-actionMenuShadow":
|
|
523
|
+
"0 0 2px 0 rgba(94, 94, 94, 0.3), 0 4px 6px 0 rgba(94, 94, 94, 0.05), 0 10px 26px 0 rgba(94, 94, 94, 0.15)",
|
|
524
|
+
"--fibery-color-shadowPopup":
|
|
525
|
+
"0 0 2px 0 rgba(94, 94, 94, 0.3), 0 4px 6px 0 rgba(94, 94, 94, 0.05), 0 10px 26px 0 rgba(94, 94, 94, 0.15)",
|
|
526
|
+
"--fibery-color-shadowSidebar": "-3px 0 10px 0 rgba(120, 120, 120, 0.1)",
|
|
527
|
+
"--fibery-color-highlightBgYellow": "rgb(255, 236, 196)",
|
|
528
|
+
"--fibery-color-highlightFgYellow": "rgb(167, 125, 0)",
|
|
529
|
+
"--fibery-color-highlightFgOnBgYellow": "rgb(139, 104, 0)",
|
|
530
|
+
"--fibery-color-highlightBgGreen": "rgb(218, 246, 202)",
|
|
531
|
+
"--fibery-color-highlightFgGreen": "rgb(80, 147, 0)",
|
|
532
|
+
"--fibery-color-highlightFgOnBgGreen": "rgb(66, 123, 0)",
|
|
533
|
+
"--fibery-color-highlightBgAquamarine": "rgb(196, 249, 222)",
|
|
534
|
+
"--fibery-color-highlightFgAquamarine": "rgb(0, 149, 104)",
|
|
535
|
+
"--fibery-color-highlightFgOnBgAquamarine": "rgb(0, 123, 85)",
|
|
536
|
+
"--fibery-color-highlightBgAqua": "rgb(186, 249, 240)",
|
|
537
|
+
"--fibery-color-highlightFgAqua": "rgb(0, 147, 135)",
|
|
538
|
+
"--fibery-color-highlightFgOnBgAqua": "rgb(0, 121, 111)",
|
|
539
|
+
"--fibery-color-highlightBgBlue": "rgb(225, 238, 255)",
|
|
540
|
+
"--fibery-color-highlightFgBlue": "rgb(0, 130, 243)",
|
|
541
|
+
"--fibery-color-highlightFgOnBgBlue": "rgb(0, 106, 201)",
|
|
542
|
+
"--fibery-color-highlightBgPurple": "rgb(245, 233, 255)",
|
|
543
|
+
"--fibery-color-highlightFgPurple": "rgb(185, 76, 249)",
|
|
544
|
+
"--fibery-color-highlightFgOnBgPurple": "rgb(160, 44, 221)",
|
|
545
|
+
"--fibery-color-highlightBgPink": "rgb(255, 231, 243)",
|
|
546
|
+
"--fibery-color-highlightFgPink": "rgb(232, 38, 172)",
|
|
547
|
+
"--fibery-color-highlightFgOnBgPink": "rgb(196, 0, 142)",
|
|
548
|
+
"--fibery-color-highlightBgRed": "rgb(255, 232, 230)",
|
|
549
|
+
"--fibery-color-highlightFgRed": "rgb(250, 9, 44)",
|
|
550
|
+
"--fibery-color-highlightFgOnBgRed": "rgb(207, 0, 33)",
|
|
551
|
+
"--fibery-color-highlightBgGrey": "rgb(238, 238, 238)",
|
|
552
|
+
"--fibery-color-highlightFgGrey": "rgb(132, 132, 132)",
|
|
553
|
+
"--fibery-color-highlightFgOnBgGrey": "rgb(110, 110, 110)",
|
|
554
|
+
"--fibery-color-colorPickerCssFilter": "none",
|
|
555
|
+
"--fibery-color-mode": "light",
|
|
556
|
+
"--fibery-color-colorAccentBgSubtle": "rgba(73, 120, 212, 0.1)",
|
|
557
|
+
"--fibery-color-colorAccentBgMild": "rgba(73, 120, 212, 0.15)",
|
|
558
|
+
"--fibery-color-colorAccentBgMedium": "rgba(73, 120, 212, 0.2)",
|
|
559
|
+
"--fibery-color-colorAccentBgStrong": "rgba(73, 120, 212, 0.3)",
|
|
560
|
+
"--fibery-color-colorAccentBgBold": "rgba(73, 120, 212, 0.35)",
|
|
561
|
+
"--fibery-color-colorAccentBgVivid": "rgba(73, 120, 212, 0.6)",
|
|
562
|
+
"--fibery-color-colorAccentStroke": "rgba(73, 120, 212, 0.25)",
|
|
563
|
+
"--fibery-color-colorAccentStrokeHover": "rgba(73, 120, 212, 0.4)",
|
|
564
|
+
"--fibery-color-colorAccentStrokeFocus": "rgba(73, 120, 212, 0.5)",
|
|
565
|
+
"--fibery-color-colorAccentSolid": "rgba(73, 120, 212, 0.8)",
|
|
566
|
+
"--fibery-color-colorAccent": "#4978d4",
|
|
567
|
+
"--fibery-color-darkenPrimary": "rgb(62, 96, 161)",
|
|
568
|
+
"--fibery-color-whiteColor": "rgb(255,255,255)",
|
|
569
|
+
"--fibery-color-blackColor": "rgb(0,0,0)",
|
|
570
|
+
"--fibery-color-mainBg": "rgb(245,245,245)",
|
|
571
|
+
"--fibery-color-panelBg": "rgb(255,255,255)",
|
|
572
|
+
"--fibery-color-panelContentBg": "rgb(247,247,247)",
|
|
573
|
+
"--fibery-color-colorBgRelationContainer": "rgb(247,247,247)",
|
|
574
|
+
"--fibery-color-colorAI": "#9D63D4",
|
|
575
|
+
"--fibery-color-colorBgAI": "rgba(157, 99, 212, 0.1)",
|
|
576
|
+
"--fibery-color-colorBgAIFloatingLauncher": "rgb(252,252,252)",
|
|
577
|
+
"--fibery-color-colorBgAIFloatingPanelContent": "rgb(252,252,252)",
|
|
578
|
+
"--fibery-color-colorBgAISidebarContent": "rgb(252,252,252)",
|
|
579
|
+
"--fibery-color-pageContentBg": "rgb(255,255,255)",
|
|
580
|
+
"--fibery-color-colorBgPopup": "rgb(255,255,255)",
|
|
581
|
+
"--fibery-color-menuBg": "rgb(245,245,245)",
|
|
582
|
+
"--fibery-color-menuTextColor": "rgb(23,23,23)",
|
|
583
|
+
"--fibery-color-menuItemHoverColor": "rgb(232,232,232)",
|
|
584
|
+
"--fibery-color-menuSelectedTextColor": "rgb(247,247,247)",
|
|
585
|
+
"--fibery-color-menuIconColor": "rgba(23, 23, 23, 0.7)",
|
|
586
|
+
"--fibery-color-textColor": "rgb(23,23,23)",
|
|
587
|
+
"--fibery-color-textSelectionColor": "rgba(73, 120, 212, 0.2)",
|
|
588
|
+
"--fibery-color-accentTextColor": "rgb(120,120,120)",
|
|
589
|
+
"--fibery-color-disabledTextColor": "rgb(158,158,158)",
|
|
590
|
+
"--fibery-color-inversedTextColor": "rgb(245,245,245)",
|
|
591
|
+
"--fibery-color-colorTextSecondary": "rgba(23, 23, 23, 0.7)",
|
|
592
|
+
"--fibery-color-linkColor": "#3869CC",
|
|
593
|
+
"--fibery-color-linkBorder": "0.5px solid rgba(56, 105, 204, 0.4)",
|
|
594
|
+
"--fibery-color-linkHoverColor": "#3869CC",
|
|
595
|
+
"--fibery-color-linkBorderHover": "0.5px solid rgba(56, 105, 204, 0.75)",
|
|
596
|
+
"--fibery-color-codeColor": "rgb(211,62,78)",
|
|
597
|
+
"--fibery-color-codeBgColor": "rgb(245,245,245)",
|
|
598
|
+
"--fibery-color-codeBlockBgColor": "rgb(245,245,245)",
|
|
599
|
+
"--fibery-color-addedDiffTextColor": "rgb(0,144,130)",
|
|
600
|
+
"--fibery-color-removedDiffTextColor": "rgb(175,36,56)",
|
|
601
|
+
"--fibery-color-entityNodeColor": "rgb(36,36,36)",
|
|
602
|
+
"--fibery-color-entityNodeBorder": "0.5px solid rgba(36, 36, 36, 0.3)",
|
|
603
|
+
"--fibery-color-entityNodeHoverColor": "rgb(61,61,61)",
|
|
604
|
+
"--fibery-color-entityNodeBorderHover": "0.5px solid rgba(94, 94, 94, 0.8)",
|
|
605
|
+
"--fibery-color-entityNodeBgColor": "rgb(247,247,247)",
|
|
606
|
+
"--fibery-color-shortcutTextColor": "rgb(158,158,158)",
|
|
607
|
+
"--fibery-color-shortcutBorder": "1px solid rgba(199, 199, 199, 0.5)",
|
|
608
|
+
"--fibery-color-shortcutBorderColor": "rgba(199, 199, 199, 0.5)",
|
|
609
|
+
"--fibery-color-inputBgColor": "rgb(255,255,255)",
|
|
610
|
+
"--fibery-color-inputDisabledBgColor": "rgba(227, 227, 227, 0.3)",
|
|
611
|
+
"--fibery-color-inputDisabledBorderColor": "0 0 0 1px rgba(227, 227, 227, 0.2)",
|
|
612
|
+
"--fibery-color-inputCopyBgColor": "rgb(245,245,245)",
|
|
613
|
+
"--fibery-color-inputBorderColor": "0 0 0 1px rgba(227, 227, 227, 0.7)",
|
|
614
|
+
"--fibery-color-inputBorderHoverColor": "0 0 0 1px rgb(219,219,219)",
|
|
615
|
+
"--fibery-color-inputBorderFocusColor": "0 0 0 1px rgb(199,199,199)",
|
|
616
|
+
"--fibery-color-inputBorderBlendMode": "multiply",
|
|
617
|
+
"--fibery-color-inputPlaceholderTextColor": "rgb(158,158,158)",
|
|
618
|
+
"--fibery-color-inputErrorBorderColor": "0 0 0 1px rgb(175,36,56)",
|
|
619
|
+
"--fibery-color-inputErrorBorderHoverColor": "0 0 0 1px rgba(175, 36, 56, 0.4)",
|
|
620
|
+
"--fibery-color-inputErrorBorderFocusColor": "0 0 0 1px rgba(175, 36, 56, 0.25)",
|
|
621
|
+
"--fibery-color-inputErrorBorderFocusShadow": "0 0 0 3px rgba(175, 36, 56, 0.25)",
|
|
622
|
+
"--fibery-color-inputBorderWarningColor": "0 0 0 1px rgb(246,217,0)",
|
|
623
|
+
"--fibery-color-buttonPrimaryColor": "#4978d4",
|
|
624
|
+
"--fibery-color-buttonColor": "rgb(120,120,120)",
|
|
625
|
+
"--fibery-color-buttonPrimaryTextColor": "rgb(247,247,247)",
|
|
626
|
+
"--fibery-color-checkboxColor": "rgba(23, 23, 23, 0.7)",
|
|
627
|
+
"--fibery-color-colorBorderBlockQuote": "rgb(94,94,94)",
|
|
628
|
+
"--fibery-color-colorBgActionsMenu": "rgb(255,255,255)",
|
|
629
|
+
"--fibery-color-colorBgActionsMenuItemHover": "rgb(237,237,237)",
|
|
630
|
+
"--fibery-color-colorBgActionsMenuItemSelected": "rgba(232, 239, 253, 0.8)",
|
|
631
|
+
"--fibery-color-colorBgActionsMenuItemSelectedHover": "rgba(219, 229, 250, 0.8)",
|
|
632
|
+
"--fibery-color-colorBgActionsMenuItemDangerHover": "rgba(211, 62, 78, 0.1)",
|
|
633
|
+
"--fibery-color-colorBgActionsMenuItemDangerActive": "rgba(211, 62, 78, 0.8)",
|
|
634
|
+
"--fibery-color-actionMenuBg": "rgb(255,255,255)",
|
|
635
|
+
"--fibery-color-actionMenuInnerBg": "rgb(255,255,255)",
|
|
636
|
+
"--fibery-color-actionMenuHover": "rgb(237,237,237)",
|
|
637
|
+
"--fibery-color-actionMenuInnerHover": "rgb(237,237,237)",
|
|
638
|
+
"--fibery-color-actionMenuButtonColor": "rgb(255,255,255)",
|
|
639
|
+
"--fibery-color-actionMenuButtonHoverColor": "rgb(252,252,252)",
|
|
640
|
+
"--fibery-color-actionMenuButtonShadow":
|
|
641
|
+
"0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2)",
|
|
642
|
+
"--fibery-color-actionMenuSeparatorColor": "rgba(0, 0, 0, 0.1)",
|
|
643
|
+
"--fibery-color-separatorColor": "rgba(0, 0, 0, 0.1)",
|
|
644
|
+
"--fibery-color-separatorColorDimmed": "rgba(0, 0, 0, 0.05)",
|
|
645
|
+
"--fibery-color-separatorBreadcrumbsColor": "rgb(199,199,199)",
|
|
646
|
+
"--fibery-color-borderSeparatorDimmed": "0.5px solid rgba(0, 0, 0, 0.05)",
|
|
647
|
+
"--fibery-color-borderSeparator": "0.5px solid rgba(0, 0, 0, 0.1)",
|
|
648
|
+
"--fibery-color-borderSeparatorMedium": "0.5px solid rgba(0, 0, 0, 0.15)",
|
|
649
|
+
"--fibery-color-borderSeparatorStrong": "0.5px solid rgba(0, 0, 0, 0.25)",
|
|
650
|
+
"--fibery-color-borderMedia": "0.5px solid rgba(0,0,0,0.14)",
|
|
651
|
+
"--fibery-color-borderSolidSeparator": "1px solid rgba(0, 0, 0, 0.1)",
|
|
652
|
+
"--fibery-color-borderSolidSeparatorDimmed": "1px solid rgba(0, 0, 0, 0.05)",
|
|
653
|
+
"--fibery-color-borderSolidFilterGroup": "1px solid rgba(0,0,0,0.05)",
|
|
654
|
+
"--fibery-color-borderSolidGrid": "1px solid rgb(232,232,232)",
|
|
655
|
+
"--fibery-color-borderSolidOutlineNeutral": "1px solid rgb(199,199,199)",
|
|
656
|
+
"--fibery-color-borderSolidMedia": "1px solid rgba(0,0,0,0.14)",
|
|
657
|
+
"--fibery-color-borderSolidCommentBubble": "1px solid rgb(255,255,255)",
|
|
658
|
+
"--fibery-color-borderBlockQuote": "3px solid rgb(94,94,94)",
|
|
659
|
+
"--fibery-color-shadowCardDefault": "0 0 0 1px rgba(227, 227, 227, 0.7), 0 1px 4px 0 rgba(23, 23, 23, 0.05)",
|
|
660
|
+
"--fibery-color-shadowCardHover": "0 0 0 1px rgba(227, 227, 227, 0.7), 0 2px 6px 0 rgba(23, 23, 23, 0.05)",
|
|
661
|
+
"--fibery-color-shadowCardInset": "inset 0 0 0 1px rgba(227, 227, 227, 0.7)",
|
|
662
|
+
"--fibery-color-iconColor": "rgba(23, 23, 23, 0.7)",
|
|
663
|
+
"--fibery-color-appIconColor": "rgba(247, 247, 247, 0.9)",
|
|
664
|
+
"--fibery-color-appIconBgColor": "rgba(252, 252, 252, 0.9)",
|
|
665
|
+
"--fibery-color-mentionBgColor": "rgba(219, 219, 219, 0.3)",
|
|
666
|
+
"--fibery-color-colorBgSelectMenu": "rgb(252,252,252)",
|
|
667
|
+
"--fibery-color-shadowSelectMenu":
|
|
668
|
+
"0 0 2px 0 rgba(94, 94, 94, 0.3), 0 4px 6px 0 rgba(94, 94, 94, 0.05), 0 10px 26px 0 rgba(94, 94, 94, 0.15)",
|
|
669
|
+
"--fibery-color-colorBgListItemGeneral": "rgba(255, 255, 255, 0)",
|
|
670
|
+
"--fibery-color-colorBgListItemGeneralHover": "rgb(245,245,245)",
|
|
671
|
+
"--fibery-color-colorBgListItemGeneralFocus": "rgb(237,237,237)",
|
|
672
|
+
"--fibery-color-colorBgListItemGeneralSelected": "#f1f5fe",
|
|
673
|
+
"--fibery-color-colorBgListItemGeneralSelectedHover": "#e8effd",
|
|
674
|
+
"--fibery-color-colorBgListItemGeneralSelectedFocus": "#e8effd",
|
|
675
|
+
"--fibery-color-colorBgListItemGeneralDisabled": "rgba(255, 255, 255, 0)",
|
|
676
|
+
"--fibery-color-colorTextListItemGeneralDisabled": "rgb(158,158,158)",
|
|
677
|
+
"--fibery-color-colorBgListItemGeneralSelectedDisabled": "#dbe5fa",
|
|
678
|
+
"--fibery-color-opacityListItemGeneralDisabled": "0.4",
|
|
679
|
+
"--fibery-color-colorSearchSubtitle": "rgb(158,158,158)",
|
|
680
|
+
"--fibery-color-colorBgSearchRowHover": "rgb(237,237,237)",
|
|
681
|
+
"--fibery-color-colorBgSearchRowCreateHover": "#e8effd",
|
|
682
|
+
"--fibery-color-opacitySearchItemDone": "0.4",
|
|
683
|
+
"--fibery-color-colorBgEntityBoxDefault": "rgb(255,255,255)",
|
|
684
|
+
"--fibery-color-shadowStrokeEntityBoxDefault": "0 0 0 1px rgb(232,232,232)",
|
|
685
|
+
"--fibery-color-shadowEntityBoxDefault": "0 2px 4px 0 rgba(23, 23, 23, 0.05)",
|
|
686
|
+
"--fibery-color-colorBgEntityBoxDefaultHover": "rgb(255,255,255)",
|
|
687
|
+
"--fibery-color-shadowEntityBoxDefaultHover": "0 4px 8px 0 rgba(23, 23, 23, 0.1)",
|
|
688
|
+
"--fibery-color-colorBgEntityBoxDefaultFocus": "rgb(255,255,255)",
|
|
689
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocus": "#4978d4",
|
|
690
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocus": "0 0 0 2px rgba(73, 120, 212, 0.4)",
|
|
691
|
+
"--fibery-color-colorBgEntityBoxDefaultFocusHover": "rgb(255,255,255)",
|
|
692
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocusHover": "#4978d4",
|
|
693
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocusHover": "0 0 0 2px rgba(73, 120, 212, 0.6)",
|
|
694
|
+
"--fibery-color-opacityEntityBoxDefaultDrag": "0.4",
|
|
695
|
+
"--fibery-color-shadowEntityBoxDefaultDrag": "0 8px 12px 0 rgba(23, 23, 23, 0.1)",
|
|
696
|
+
"--fibery-color-colorBgEntityBoxSelected": "#fafcff",
|
|
697
|
+
"--fibery-color-shadowStrokeEntityBoxSelected":
|
|
698
|
+
"0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4)",
|
|
699
|
+
"--fibery-color-colorBgEntityBoxSelectedHover": "#f1f5fe",
|
|
700
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedHover":
|
|
701
|
+
"0 0 0 1px rgba(73, 120, 212, 0.6), 0 0 0 3px rgba(73, 120, 212, 0.4)",
|
|
702
|
+
"--fibery-color-colorBgEntityBoxSelectedDrag": "#f1f5fe",
|
|
703
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedDrag":
|
|
704
|
+
"0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4)",
|
|
705
|
+
"--fibery-color-opacityEntityBoxDisabled": "0.65",
|
|
706
|
+
"--fibery-color-opacityEntityBoxDisabledHover": "0.75",
|
|
707
|
+
"--fibery-color-opacityEntityBoxDisabledFocus": "0.75",
|
|
708
|
+
"--fibery-color-opacityEntityBoxDisabledDrag": "0.4",
|
|
709
|
+
"--fibery-color-entityCardBgColor": "rgb(255,255,255)",
|
|
710
|
+
"--fibery-color-entityCardSelectedColor": "rgba(247, 247, 247, 0.8)",
|
|
711
|
+
"--fibery-color-entityCardHoverColor": "rgba(247, 247, 247, 0.8)",
|
|
712
|
+
"--fibery-color-entityCardDoneColor": "rgba(237, 237, 237, 0.3)",
|
|
713
|
+
"--fibery-color-entityCardShadow": "0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2)",
|
|
714
|
+
"--fibery-color-entityCardShadowHover":
|
|
715
|
+
"0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2)",
|
|
716
|
+
"--fibery-color-colorBgSegmentedControl": "rgba(232, 232, 232, 0.8)",
|
|
717
|
+
"--fibery-color-colorBgMenuHeaderAvatar": "rgb(255,255,255)",
|
|
718
|
+
"--fibery-color-shadowMenuHeaderAvatar": "0 1px 4px 0 rgba(94, 94, 94, 0.1), 0 0 0 0.5px rgba(232, 232, 232, 0.5)",
|
|
719
|
+
"--fibery-color-opacityMenuItemDragged": "0.4",
|
|
720
|
+
"--fibery-color-colorBgMenuItemSelectedDragged": "#cad9f6",
|
|
721
|
+
"--fibery-color-colorTextMenuItem": "rgba(23, 23, 23, 0.9)",
|
|
722
|
+
"--fibery-color-colorBgMenuItem": "rgba(255, 255, 255, 0)",
|
|
723
|
+
"--fibery-color-colorBgMenuItemHover": "rgb(232,232,232)",
|
|
724
|
+
"--fibery-color-colorBgMenuItemFocus": "rgb(227,227,227)",
|
|
725
|
+
"--fibery-color-colorBgMenuItemSelected": "rgba(219, 229, 250, 0.8)",
|
|
726
|
+
"--fibery-color-colorBgMenuItemSelectedHover": "rgba(202, 217, 246, 0.7)",
|
|
727
|
+
"--fibery-color-colorBgPinnedFieldsLabel": "rgb(94,94,94)",
|
|
728
|
+
"--fibery-color-colorBgObjectEditorSeparator": "rgb(23,23,23)",
|
|
729
|
+
"--fibery-color-colorBgMenuItemSelectedFocused": "#cad9f6",
|
|
730
|
+
"--fibery-color-colorBgFieldEditorContainer": "rgb(247,247,247)",
|
|
731
|
+
"--fibery-color-colorBgFieldEditorLinkEqualSign": "rgb(227,227,227)",
|
|
732
|
+
"--fibery-color-allowedDropColor": "rgb(237,237,237)",
|
|
733
|
+
"--fibery-color-relationViewBgColor": "rgb(247,247,247)",
|
|
734
|
+
"--fibery-color-mySpaceIconColor": "rgb(122, 132, 142)",
|
|
735
|
+
"--fibery-color-mySpaceIconBg": "rgba(106, 132, 155, 0.2)",
|
|
736
|
+
"--fibery-color-privateIconColor": "rgb(105, 172, 94)",
|
|
737
|
+
"--fibery-color-privateIconBg": "rgba(105, 172, 94, 0.2)",
|
|
738
|
+
"--fibery-color-favoritesIconColor": "rgb(238, 166, 74)",
|
|
739
|
+
"--fibery-color-favoritesIconBg": "rgba(251, 163, 47, 0.2)",
|
|
740
|
+
"--fibery-color-swatchDefault": "#2978FB",
|
|
741
|
+
"--fibery-color-unitBg": "rgb(245,245,245)",
|
|
742
|
+
"--fibery-color-unitBgHover": "rgb(237,237,237)",
|
|
743
|
+
"--fibery-color-colorBgBadgeNeutral": "rgba(232, 232, 232, 0.7)",
|
|
744
|
+
"--fibery-color-colorBgBadgeAccent": "rgba(219, 229, 250, 0.7)",
|
|
745
|
+
"--fibery-color-colorBgBadgeSuccess": "rgb(214,234,230)",
|
|
746
|
+
"--fibery-color-colorBgBadgeWarning": "rgb(255,242,160)",
|
|
747
|
+
"--fibery-color-colorBgBadgeError": "rgb(253,220,219)",
|
|
748
|
+
"--fibery-color-colorTextBadgeNeutral": "rgb(94,94,94)",
|
|
749
|
+
"--fibery-color-colorTextBadgeAccent": "#345eb2",
|
|
750
|
+
"--fibery-color-colorTextBadgeSuccess": "rgb(0,116,104)",
|
|
751
|
+
"--fibery-color-colorTextBadgeWarning": "rgb(129,113,0)",
|
|
752
|
+
"--fibery-color-colorTextBadgeError": "rgb(175,36,56)",
|
|
753
|
+
"--fibery-color-badgeBgColor": "rgba(120, 120, 120, 0.2)",
|
|
754
|
+
"--fibery-color-tooltipBgColor": "rgb(46,46,46)",
|
|
755
|
+
"--fibery-color-todayMarkerColor": "rgb(237,150,151)",
|
|
756
|
+
"--fibery-color-viewBgOverlayColor": "rgba(199, 199, 199, 0.2)",
|
|
757
|
+
"--fibery-color-floatEditorMenuBg": "rgb(252,252,252)",
|
|
758
|
+
"--fibery-color-floatEditorActiveColor": "#345eb2",
|
|
759
|
+
"--fibery-color-commentColor": "rgba(247, 231, 135, 0.6)",
|
|
760
|
+
"--fibery-color-cellBackgroundColor": "rgb(247,247,247)",
|
|
761
|
+
"--fibery-color-cellBackgroundHoverColor": "rgba(227, 227, 227, 0.3)",
|
|
762
|
+
"--fibery-color-cellBorderColor": "rgba(199, 199, 199, 0.5)",
|
|
763
|
+
"--fibery-color-cellPinnedBorderColor": "rgba(199, 199, 199, 0.7)",
|
|
764
|
+
"--fibery-color-tableRowWarningColor": "rgba(247, 231, 135, 0.6)",
|
|
765
|
+
"--fibery-color-errorBgColor": "rgba(211, 62, 78, 0.2)",
|
|
766
|
+
"--fibery-color-errorTextColor": "rgb(175,36,56)",
|
|
767
|
+
"--fibery-color-errorButtonColor": "rgb(211,62,78)",
|
|
768
|
+
"--fibery-color-warningBgColor": "rgba(247, 231, 135, 0.6)",
|
|
769
|
+
"--fibery-color-warningButtonColor": "rgb(129,113,0)",
|
|
770
|
+
"--fibery-color-infoBox": "rgba(255, 248, 185, 0.5)",
|
|
771
|
+
"--fibery-color-appCardBgColor": "rgb(255,255,255)",
|
|
772
|
+
"--fibery-color-appCardHoverColor": "rgba(252, 252, 252, 0.95)",
|
|
773
|
+
"--fibery-color-modalBg": "rgba(94, 94, 94, 0.2)",
|
|
774
|
+
"--fibery-color-modalContentBg": "rgb(255,255,255)",
|
|
775
|
+
"--fibery-color-progressIconBg": "rgba(0,0,0,0.14)",
|
|
776
|
+
"--fibery-color-progressIconFill": "rgba(0,0,0,0.57)",
|
|
777
|
+
"--fibery-color-formBg": "rgb(247,247,247)",
|
|
778
|
+
"--fibery-color-formHeaderShadow": "0 0 6px 0 rgba(120, 120, 120, 0.1)",
|
|
779
|
+
"--fibery-color-formEditorFieldBg": "rgb(245,245,245)",
|
|
780
|
+
"--fibery-color-filterGroup1Bg": "rgb(247,247,247)",
|
|
781
|
+
"--fibery-color-filterGroup2Bg": "rgb(245,245,245)",
|
|
782
|
+
"--fibery-color-filterGroupBorder": "rgba(0,0,0,0.05)",
|
|
783
|
+
"--fibery-color-colorBgNotificationHover": "rgb(245,245,245)",
|
|
784
|
+
"--fibery-color-colorBgNotificationSelected": "#f1f5fe",
|
|
785
|
+
"--fibery-color-colorBgNotificationSelectedHover": "#e8effd",
|
|
786
|
+
"--fibery-color-disabledInversedTextColor": "rgba(0, 0, 0, 0.25)",
|
|
787
|
+
"--fibery-color-success": "rgb(0,144,130)",
|
|
788
|
+
"--fibery-color-danger": "rgb(211,62,78)",
|
|
789
|
+
"--fibery-color-active": "rgb(211,62,78)",
|
|
790
|
+
"--fibery-color-warning": "rgb(246,217,0)",
|
|
791
|
+
"--fibery-color-cardBg": "rgb(255,255,255)",
|
|
792
|
+
"--fibery-color-selectedImageBorder": "rgba(0,0,0,0.22)",
|
|
793
|
+
"--fibery-color-transparent": "rgba(255, 255, 255, 0)",
|
|
794
|
+
"--fibery-color-progressBg": "rgb(237,237,237)",
|
|
795
|
+
"--fibery-color-progressText": "rgb(94,94,94)",
|
|
796
|
+
"--fibery-color-progressFillBg": "rgb(94,94,94)",
|
|
797
|
+
"--fibery-color-progressFillText": "rgb(255,255,255)",
|
|
798
|
+
"--fibery-color-progressBarFillNeutral": "rgba(158, 158, 158, 0.2)",
|
|
799
|
+
"--fibery-color-progressBarFill": "#4978d4",
|
|
800
|
+
"--fibery-color-progressBarBg": "rgba(73, 120, 212, 0.25)",
|
|
801
|
+
"--fibery-color-colorPickerSwatchBorder": "rgba(0,0,0,0.14)",
|
|
802
|
+
"--fibery-color-colorBorderRichTextMedia": "rgba(0,0,0,0.14)",
|
|
803
|
+
"--fibery-color-richTextTableBorder": "rgba(0,0,0,0.09)",
|
|
804
|
+
"--fibery-color-colorBgDropLine": "#96b1e9",
|
|
805
|
+
"--fibery-color-viewBg": "rgb(252,252,252)",
|
|
806
|
+
"--fibery-color-viewSecondaryBg": "rgb(247,247,247)",
|
|
807
|
+
"--fibery-color-viewHighlightBg": "#f1f5fe",
|
|
808
|
+
"--fibery-color-boardBg": "rgb(252,252,252)",
|
|
809
|
+
"--fibery-color-boardBgWithOpacity80": "rgba(252, 252, 252, 0.8)",
|
|
810
|
+
"--fibery-color-boardAxisBgHover": "rgb(237,237,237)",
|
|
811
|
+
"--fibery-color-gridHeaderBgColor": "rgb(247,247,247)",
|
|
812
|
+
"--fibery-color-gridHeaderHoverBgColor": "rgb(245,245,245)",
|
|
813
|
+
"--fibery-color-gridHeaderTextColor": "rgb(120,120,120)",
|
|
814
|
+
"--fibery-color-gridCellBgColor": "rgb(255,255,255)",
|
|
815
|
+
"--fibery-color-gridCellBorderColor": "rgb(232,232,232)",
|
|
816
|
+
"--fibery-color-gridDisabledCellBgColor": "rgb(247,247,247)",
|
|
817
|
+
"--fibery-color-gridSelectedCellBgColor": "#f1f5fe",
|
|
818
|
+
"--fibery-color-gridHighlightedCellBgColor": "#e8effd",
|
|
819
|
+
"--fibery-color-gridSelectedCellBorderColor": "#cad9f6",
|
|
820
|
+
"--fibery-color-gridSelectedPinnedCellBorderColor": "#b2c7f0",
|
|
821
|
+
"--fibery-color-gridDisabledSelectedCellBgColor": "#e8effd",
|
|
822
|
+
"--fibery-color-gridActiveCellBorderColor": "#96b1e9",
|
|
823
|
+
"--fibery-color-timelineEntityHandleColor": "#b2c7f0",
|
|
824
|
+
"--fibery-color-timelineDependencyHoverBgColor": "#96b1e9",
|
|
825
|
+
"--fibery-color-timelineDependencyOverlapBgColor": "rgb(211,62,78)",
|
|
826
|
+
"--fibery-color-timelineDependencyOverlapHoverBgColor": "rgb(175,36,56)",
|
|
827
|
+
"--fibery-color-timelineCellBgColor": "rgb(252,252,252)",
|
|
828
|
+
"--fibery-color-timelineCellWeekendBgColor": "rgb(247,247,247)",
|
|
829
|
+
"--fibery-color-timelineCellTodayBgColor": "#e8effd",
|
|
830
|
+
"--fibery-color-timelineCreateEntityPlaceholderBgColor": "rgba(94, 94, 94, 0.2)",
|
|
831
|
+
"--fibery-color-colorBgButtonSolidAccentDefault": "#4978d4",
|
|
832
|
+
"--fibery-color-colorBgButtonSolidAccentHover": "#345eb2",
|
|
833
|
+
"--fibery-color-colorBgButtonSolidNeutralDefault": "rgb(23,23,23)",
|
|
834
|
+
"--fibery-color-colorBgButtonSolidNeutralHover": "rgba(23, 23, 23, 0.85)",
|
|
835
|
+
"--fibery-color-colorBgButtonSolidDestructiveDefault": "rgb(211,62,78)",
|
|
836
|
+
"--fibery-color-colorBgButtonSolidDestructiveHover": "rgb(175,36,56)",
|
|
837
|
+
"--fibery-color-colorTextButtonSolidAccent": "rgb(255,255,255)",
|
|
838
|
+
"--fibery-color-colorTextButtonSolidAccentActive": "rgba(255, 255, 255, 0.8)",
|
|
839
|
+
"--fibery-color-colorTextButtonSolidNeutral": "rgb(255,255,255)",
|
|
840
|
+
"--fibery-color-colorTextButtonSolidNeutralActive": "rgb(255,255,255)",
|
|
841
|
+
"--fibery-color-colorTextButtonSolidDestructive": "rgb(255,255,255)",
|
|
842
|
+
"--fibery-color-colorTextButtonSolidDestructiveActive": "rgba(255, 255, 255, 0.8)",
|
|
843
|
+
"--fibery-color-colorIconButtonSolidAccent": "rgb(255,255,255)",
|
|
844
|
+
"--fibery-color-colorIconButtonSolidNeutral": "rgb(255,255,255)",
|
|
845
|
+
"--fibery-color-colorIconButtonSolidDestructive": "rgb(255,255,255)",
|
|
846
|
+
"--fibery-color-colorBorderButtonOutlineAccentDefault": "#96b1e9",
|
|
847
|
+
"--fibery-color-colorBorderButtonOutlineNeutralDefault": "rgb(199,199,199)",
|
|
848
|
+
"--fibery-color-colorBorderButtonOutlineDestructiveDefault": "rgb(244,179,179)",
|
|
849
|
+
"--fibery-color-colorBgButtonOutlineAccentDefault": "rgb(255,255,255)",
|
|
850
|
+
"--fibery-color-colorBgButtonOutlineAccentHover": "#f1f5fe",
|
|
851
|
+
"--fibery-color-colorBgButtonOutlineNeutralDefault": "rgb(255,255,255)",
|
|
852
|
+
"--fibery-color-colorBgButtonOutlineNeutralHover": "rgb(237,237,237)",
|
|
853
|
+
"--fibery-color-colorBgButtonOutlineDestructiveDefault": "rgb(255,255,255)",
|
|
854
|
+
"--fibery-color-colorBgButtonOutlineDestructiveHover": "rgb(255,232,232)",
|
|
855
|
+
"--fibery-color-colorTextButtonOutlineAccent": "#345eb2",
|
|
856
|
+
"--fibery-color-colorTextButtonOutlineAccentActive": "rgba(52, 94, 178, 0.8)",
|
|
857
|
+
"--fibery-color-colorTextButtonOutlineNeutral": "rgb(94,94,94)",
|
|
858
|
+
"--fibery-color-colorTextButtonOutlineNeutralActive": "rgba(23, 23, 23, 0.8)",
|
|
859
|
+
"--fibery-color-colorTextButtonOutlineDestructive": "rgb(175,36,56)",
|
|
860
|
+
"--fibery-color-colorTextButtonOutlineDestructiveActive": "rgba(175, 36, 56, 0.8)",
|
|
861
|
+
"--fibery-color-colorIconButtonOutlineAccent": "#345eb2",
|
|
862
|
+
"--fibery-color-colorIconButtonOutlineNeutral": "rgb(94,94,94)",
|
|
863
|
+
"--fibery-color-colorIconButtonOutlineDestructive": "rgb(175,36,56)",
|
|
864
|
+
"--fibery-color-colorBgButtonSoftAccentDefault": "#f1f5fe",
|
|
865
|
+
"--fibery-color-colorBgButtonSoftAccentHover": "#dbe5fa",
|
|
866
|
+
"--fibery-color-colorBgButtonSoftNeutralDefault": "rgb(245,245,245)",
|
|
867
|
+
"--fibery-color-colorBgButtonSoftNeutralHover": "rgb(219,219,219)",
|
|
868
|
+
"--fibery-color-colorBgButtonSoftDestructiveDefault": "rgb(255,232,232)",
|
|
869
|
+
"--fibery-color-colorBgButtonSoftDestructiveHover": "rgb(250,203,203)",
|
|
870
|
+
"--fibery-color-colorTextButtonSoftAccent": "#345eb2",
|
|
871
|
+
"--fibery-color-colorTextButtonSoftAccentActive": "rgba(52, 94, 178, 0.8)",
|
|
872
|
+
"--fibery-color-colorTextButtonSoftNeutral": "rgb(94,94,94)",
|
|
873
|
+
"--fibery-color-colorTextButtonSoftNeutralActive": "rgba(94, 94, 94, 0.8)",
|
|
874
|
+
"--fibery-color-colorTextButtonSoftDestructive": "rgb(175,36,56)",
|
|
875
|
+
"--fibery-color-colorTextButtonSoftDestructiveActive": "rgba(175, 36, 56, 0.8)",
|
|
876
|
+
"--fibery-color-colorIconButtonSoftAccent": "#345eb2",
|
|
877
|
+
"--fibery-color-colorIconButtonSoftNeutral": "rgb(94,94,94)",
|
|
878
|
+
"--fibery-color-colorIconButtonSoftDestructive": "rgb(175,36,56)",
|
|
879
|
+
"--fibery-color-colorBgButtonGhostAccentDefault": "rgba(255, 255, 255, 0)",
|
|
880
|
+
"--fibery-color-colorBgButtonGhostAccentHover": "rgba(232, 239, 253, 0.8)",
|
|
881
|
+
"--fibery-color-colorBgButtonGhostNeutralDefault": "rgba(255, 255, 255, 0)",
|
|
882
|
+
"--fibery-color-colorBgButtonGhostNeutralHover": "rgba(219, 219, 219, 0.5)",
|
|
883
|
+
"--fibery-color-colorBgButtonGhostDestructiveDefault": "rgba(255, 255, 255, 0)",
|
|
884
|
+
"--fibery-color-colorBgButtonGhostDestructiveHover": "rgb(255,232,232)",
|
|
885
|
+
"--fibery-color-colorTextButtonGhostAccent": "#345eb2",
|
|
886
|
+
"--fibery-color-colorTextButtonGhostAccentActive": "rgba(52, 94, 178, 0.8)",
|
|
887
|
+
"--fibery-color-colorTextButtonGhostNeutral": "rgb(94,94,94)",
|
|
888
|
+
"--fibery-color-colorTextButtonGhostNeutralActive": "rgba(94, 94, 94, 0.8)",
|
|
889
|
+
"--fibery-color-colorTextButtonGhostDestructive": "rgb(175,36,56)",
|
|
890
|
+
"--fibery-color-colorTextButtonGhostDestructiveActive": "rgba(175, 36, 56, 0.8)",
|
|
891
|
+
"--fibery-color-colorIconButtonGhostAccent": "#345eb2",
|
|
892
|
+
"--fibery-color-colorIconButtonGhostNeutral": "rgb(94,94,94)",
|
|
893
|
+
"--fibery-color-colorIconButtonGhostDestructive": "rgb(175,36,56)",
|
|
894
|
+
"--fibery-color-colorBorderAccentFocusRing": "rgba(73, 120, 212, 0.3)",
|
|
895
|
+
"--fibery-color-colorBorderNeutralFocusRing": "rgba(158, 158, 158, 0.3)",
|
|
896
|
+
"--fibery-color-colorBorderDestructiveFocusRing": "rgba(211, 62, 78, 0.3)",
|
|
897
|
+
"--fibery-color-colorBgReactionsDefault": "rgb(255,255,255)",
|
|
898
|
+
"--fibery-color-colorBgReactionsHover": "rgb(245,245,245)",
|
|
899
|
+
"--fibery-color-colorBorderReactionsHover": "rgb(199,199,199)",
|
|
900
|
+
"--fibery-color-colorBgReactionsSelectedDefault": "#f1f5fe",
|
|
901
|
+
"--fibery-color-colorBorderReactionsSelectedDefault": "#96b1e9",
|
|
902
|
+
"--fibery-color-colorBgReactionsSelectedHover": "#fafcff",
|
|
903
|
+
"--fibery-color-colorBorderReactionsSelectedHover": "#4978d4",
|
|
904
|
+
"--fibery-color-colorTextReactionsSelected": "#3869cc",
|
|
905
|
+
"--fibery-color-colorBgToastDefault": "rgb(252,252,252)",
|
|
906
|
+
"--fibery-color-colorBgDbTabHover": "rgb(245,245,245)",
|
|
907
|
+
"--fibery-color-colorBgDbTabFocus": "rgb(227,227,227)",
|
|
908
|
+
"--fibery-color-colorBgTabHover": "rgba(94, 94, 94, 0.1)",
|
|
909
|
+
"--fibery-color-colorBgMessageContainer": "rgb(245,245,245)",
|
|
910
|
+
"--fibery-color-colorBgMessageContainerHover": "rgb(237,237,237)",
|
|
911
|
+
"--fibery-color-colorBgEntityAvatarDefault": "#fbfcfe",
|
|
912
|
+
"--fibery-color-colorBgEntityAvatarHover": "#f1f5fe",
|
|
913
|
+
"--fibery-color-colorTextEntityAvatarDefault": "#96b1e9",
|
|
914
|
+
"--fibery-color-colorTextEntityAvatarHover": "#4978d4",
|
|
915
|
+
"--fibery-color-colorBgMessageHighlighted": "rgb(255,255,255)",
|
|
916
|
+
"--fibery-color-colorBgEditorImageZoomed": "rgb(245,245,245)",
|
|
917
|
+
"--fibery-color-colorMermaidPrimaryColor": "rgb(247,247,247)",
|
|
918
|
+
"--fibery-color-colorMermaidPrimaryBorderColor": "rgb(158,158,158)",
|
|
919
|
+
"--fibery-color-colorMermaidLineColor": "rgb(120,120,120)",
|
|
920
|
+
"--fibery-color-colorBgWhiteboard": "rgb(255,255,255)",
|
|
921
|
+
"--fibery-color-colorGridDotWhiteboard": "rgb(227,227,227)",
|
|
922
|
+
"--fibery-color-colorSelectionWhiteboardBorderEnabled": "#96b1e9",
|
|
923
|
+
"--fibery-color-colorHighlightWhiteboardSelection": "#96b1e9",
|
|
924
|
+
"--fibery-color-colorHighlightWhiteboardSelectionLocked": "rgba(158, 158, 158, 0.5)",
|
|
925
|
+
"--fibery-color-colorSelectionWhiteboardBorderDisabled": "rgba(158, 158, 158, 0.5)",
|
|
926
|
+
"--fibery-color-colorPlaceholderWhiteboardDefault": "rgba(150, 177, 233, 0.2)",
|
|
927
|
+
"--fibery-color-colorLinkPointWhiteboardDefault": "#96b1e9",
|
|
928
|
+
"--fibery-color-colorLinkPointWhiteboardFillDefault": "rgb(255,255,255)",
|
|
929
|
+
"--fibery-color-colorMapWhiteboardPreviewDefault": "rgba(150, 177, 233, 0.4)",
|
|
930
|
+
"--fibery-color-colorCardWhiteboardShadowDefault": "rgba(94, 94, 94, 0.05)",
|
|
931
|
+
"--fibery-color-colorCardWhiteboardBgDefault": "rgb(255,255,255)",
|
|
932
|
+
"--fibery-color-colorCardWhiteboardBorderDefault": "rgba(23, 23, 23, 0.2)",
|
|
933
|
+
"--fibery-color-colorUnitHeaderWhiteboardDefault": "rgba(23, 23, 23, 0.6)",
|
|
934
|
+
"--fibery-color-colorUnitWhiteboardBgDefault": "rgb(245,245,245)",
|
|
935
|
+
"--fibery-color-colorUnitWhiteboardBorderDefault": "rgba(23, 23, 23, 0.2)",
|
|
936
|
+
"--fibery-color-colorSectionWhiteboardBgInactive": "rgb(247,247,247)",
|
|
937
|
+
"--fibery-color-colorSectionWhiteboardBorderInactive": "rgb(227,227,227)",
|
|
938
|
+
"--fibery-color-colorEmbedWhiteboardEditBorder": "rgba(134, 191, 181, 0.9)",
|
|
939
|
+
"--fibery-color-colorTextWhiteboardDefault": "rgb(23,23,23)",
|
|
940
|
+
"--fibery-color-colorTextWhiteboardDisabled": "rgb(158,158,158)",
|
|
941
|
+
"--fibery-color-colorTextWhiteboardAccent": "rgba(23, 23, 23, 0.6)",
|
|
942
|
+
"--fibery-color-colorTextWhiteboardInversedDefault": "rgb(255,255,255)",
|
|
943
|
+
"--fibery-color-instrumentsMenuBg": "rgb(255,255,255)",
|
|
944
|
+
"--fibery-color-instrumentsMenuShadow":
|
|
945
|
+
"0 0 1px 0 rgba(94, 94, 94, 0.2), 0 4px 6px 0 rgba(94, 94, 94, 0.05), 0 3px 12px 0 rgba(94, 94, 94, 0.1)",
|
|
946
|
+
"--fibery-color-commentBubbleBg": "rgb(255,255,255)",
|
|
947
|
+
"--fibery-color-commentsPanelShadow":
|
|
948
|
+
"0 0 1px 0 rgba(94, 94, 94, 0.2), 0 4px 6px 0 rgba(94, 94, 94, 0.05), 0 3px 12px 0 rgba(94, 94, 94, 0.1)",
|
|
949
|
+
"--fibery-color-searchFiltersBg": "rgb(252,252,252)",
|
|
950
|
+
"--fibery-color-selectedColorBorder": "rgba(227, 227, 227, 0.25)",
|
|
951
|
+
"--fibery-color-colorBgSegmentedControlDefault": "rgb(245,245,245)",
|
|
952
|
+
"--fibery-color-colorBgSegmentedControlActive": "rgb(252,252,252)",
|
|
953
|
+
"--fibery-color-colorBgSegmentedControlHover": "rgb(232,232,232)",
|
|
954
|
+
"--fibery-color-colorBorderSegmentedControlDefault": "rgb(227,227,227)",
|
|
955
|
+
"--fibery-color-colorBgBannerNeutral": "rgb(245,245,245)",
|
|
956
|
+
"--fibery-color-colorBgBannerPrimary": "#f1f5fe",
|
|
957
|
+
"--fibery-color-colorBgBannerWarning": "rgb(255,251,207)",
|
|
958
|
+
"--fibery-color-colorBgBannerError": "rgb(255,241,241)",
|
|
959
|
+
"--fibery-color-colorBgBannerSuccess": "rgb(239,247,245)",
|
|
960
|
+
"--fibery-color-colorIconBannerNeutral": "rgb(23,23,23)",
|
|
961
|
+
"--fibery-color-colorIconBannerAccent": "#345eb2",
|
|
962
|
+
"--fibery-color-colorIconBannerWarning": "rgb(129,113,0)",
|
|
963
|
+
"--fibery-color-colorIconBannerError": "rgb(175,36,56)",
|
|
964
|
+
"--fibery-color-colorIconBannerSuccess": "rgb(0,116,104)",
|
|
965
|
+
"--fibery-color-colorTextBannerNeutral": "rgb(23,23,23)",
|
|
966
|
+
"--fibery-color-colorTextBannerAccent": "#345eb2",
|
|
967
|
+
"--fibery-color-colorTextBannerWarning": "rgb(129,113,0)",
|
|
968
|
+
"--fibery-color-colorTextBannerError": "rgb(175,36,56)",
|
|
969
|
+
"--fibery-color-colorTextBannerSuccess": "rgb(0,116,104)",
|
|
970
|
+
"--fibery-color-colorBgChargebeeInfoBox": "rgb(245,245,245)",
|
|
971
|
+
"--fibery-color-newCommentHorizontalRulerColor": "rgb(237,150,151)",
|
|
972
|
+
"--fibery-color-colorBgErrorMessage": "rgb(237,150,151)",
|
|
973
|
+
"--fibery-color-colorBorderLogoGrid": "rgb(237,237,237)",
|
|
974
|
+
"--fibery-color-colorBorderLogoGridSubtle": "rgba(237, 237, 237, 0.2)",
|
|
975
|
+
"--fibery-color-colorBorderLogoGridMedium": "rgba(237, 237, 237, 0.4)",
|
|
976
|
+
"--fibery-color-colorStrokeLogoDashed": "rgb(227,227,227)",
|
|
977
|
+
"--fibery-color-colorBgLogoCardTransparent": "rgb(255,255,255)",
|
|
978
|
+
"--fibery-color-colorBgLogoCardDark": "rgb(199,199,199)",
|
|
979
|
+
"--fibery-color-colorBgLogoCardMedium": "rgb(237,237,237)",
|
|
980
|
+
"--fibery-color-colorBgSkeletonFrom": "rgba(255, 255, 255, 0.05)",
|
|
981
|
+
"--fibery-color-colorBgSkeletonTo": "rgba(255, 255, 255, 0.1)",
|
|
982
|
+
"--fibery-color-colorShadowInsetEdge": "rgba(255, 255, 255, 0.05)",
|
|
983
|
+
"--fibery-color-colorShadowBorder": "rgba(255, 255, 255, 0.1)",
|
|
984
|
+
"--fibery-color-colorShadowElevation": "rgba(0, 0, 0, 0.1)",
|
|
985
|
+
"--fibery-color-colorShadowOutline": "rgba(0, 0, 0, 0.2)",
|
|
986
|
+
"--fibery-color-colorPlaceholder": "rgba(255, 255, 255, 0.4)",
|
|
987
|
+
"--fibery-color-colorPlaceholderSubtle": "rgba(255, 255, 255, 0.25)",
|
|
988
|
+
"--fibery-color-colorBgSubtleLight": "rgba(255, 255, 255, 0.05)",
|
|
989
|
+
"--fibery-color-colorStrokeSurface": "rgb(255,255,255)",
|
|
990
|
+
"--fibery-color-colorTextMilestone": "rgba(0, 0, 0, 0.5)",
|
|
991
|
+
"--fibery-color-colorSpinnerIcon": "rgba(0, 0, 0, 0.9)",
|
|
992
|
+
"--fibery-color-colorSpinnerBg": "rgba(0, 0, 0, 0.1)",
|
|
993
|
+
"--fibery-color-colorBgLaneSubtle": "rgba(0, 0, 0, 0.05)",
|
|
994
|
+
"--fibery-color-opacity15": "0.15",
|
|
995
|
+
"--fibery-color-opacity20": "0.2",
|
|
996
|
+
"--fibery-color-opacity25": "0.25",
|
|
997
|
+
"--fibery-color-opacity30": "0.3",
|
|
998
|
+
"--fibery-color-opacity40": "0.4",
|
|
999
|
+
"--fibery-color-opacity50": "0.5",
|
|
1000
|
+
"--fibery-color-opacity60": "0.6",
|
|
1001
|
+
"--fibery-color-opacity65": "0.65",
|
|
1002
|
+
"--fibery-color-opacity70": "0.7",
|
|
1003
|
+
"--fibery-color-opacity75": "0.75",
|
|
1004
|
+
"--fibery-color-opacity80": "0.8",
|
|
1005
|
+
"--fibery-color-opacity85": "0.85",
|
|
1006
|
+
"--fibery-color-opacity90": "0.9",
|
|
1007
|
+
"--fibery-color-whiteA10": "rgba(255, 255, 255, 0.1)",
|
|
1008
|
+
"--fibery-color-whiteA40": "rgba(255, 255, 255, 0.4)",
|
|
1009
|
+
"--fibery-color-whiteA100": "rgb(255,255,255)",
|
|
1010
|
+
"--fibery-color-colorBgFileOverlay": "rgba(0, 0, 0, 0.6)",
|
|
1011
|
+
"--fibery-color-colorBgScrollFade": "rgba(255, 255, 255, 0.15)",
|
|
1012
|
+
"--fibery-color-colorStrokeSelectedOutline": "rgba(0, 0, 0, 0.75)",
|
|
1013
|
+
"--fibery-color-scrollbar": "rgba(158, 158, 158, 0.5)",
|
|
1014
|
+
},
|
|
1015
|
+
dark: {
|
|
1016
|
+
"--fibery-color-surfaceElevationS": "0 2px 4px 0 rgba(255,255,255,0.03)",
|
|
1017
|
+
"--fibery-color-surfaceElevationM": "0 4px 8px 0 rgba(255,255,255,0.09)",
|
|
1018
|
+
"--fibery-color-surfaceElevationL": "0 8px 12px 0 rgba(255,255,255,0.09)",
|
|
1019
|
+
"--fibery-color-shadow50": "0 0 0 1px rgba(237, 237, 237, 0.1)",
|
|
1020
|
+
"--fibery-color-shadow100": "0 1px 4px 0 rgba(23, 23, 23, 0.1)",
|
|
1021
|
+
"--fibery-color-shadow200": "0 2px 6px 0 rgba(23, 23, 23, 0.1)",
|
|
1022
|
+
"--fibery-color-shadow300": "0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15)",
|
|
1023
|
+
"--fibery-color-shadow400": "0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15)",
|
|
1024
|
+
"--fibery-color-shadow500": "0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15)",
|
|
1025
|
+
"--fibery-color-shadow600": "0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2)",
|
|
1026
|
+
"--fibery-color-actionMenuShadow":
|
|
1027
|
+
"0 0 0 1px rgb(51,51,51), 0 4px 6px 0 rgba(23, 23, 23, 0.05), 0 10px 26px 0 rgba(23, 23, 23, 0.15)",
|
|
1028
|
+
"--fibery-color-shadowPopup":
|
|
1029
|
+
"0 0 0 1px rgb(51,51,51), 0 4px 6px 0 rgba(23, 23, 23, 0.05), 0 10px 26px 0 rgba(23, 23, 23, 0.15)",
|
|
1030
|
+
"--fibery-color-shadowSidebar": "-3px 0 10px 0 rgba(23, 23, 23, 0.8)",
|
|
1031
|
+
"--fibery-color-highlightBgYellow": "rgb(81, 63, 19)",
|
|
1032
|
+
"--fibery-color-highlightFgYellow": "rgb(223, 182, 90)",
|
|
1033
|
+
"--fibery-color-highlightFgOnBgYellow": "rgb(239, 197, 106)",
|
|
1034
|
+
"--fibery-color-highlightBgGreen": "rgb(49, 71, 35)",
|
|
1035
|
+
"--fibery-color-highlightFgGreen": "rgb(152, 201, 121)",
|
|
1036
|
+
"--fibery-color-highlightFgOnBgGreen": "rgb(168, 217, 136)",
|
|
1037
|
+
"--fibery-color-highlightBgAquamarine": "rgb(23, 73, 53)",
|
|
1038
|
+
"--fibery-color-highlightFgAquamarine": "rgb(100, 206, 160)",
|
|
1039
|
+
"--fibery-color-highlightFgOnBgAquamarine": "rgb(117, 223, 176)",
|
|
1040
|
+
"--fibery-color-highlightBgAqua": "rgb(0, 73, 67)",
|
|
1041
|
+
"--fibery-color-highlightFgAqua": "rgb(66, 207, 192)",
|
|
1042
|
+
"--fibery-color-highlightFgOnBgAqua": "rgb(87, 224, 209)",
|
|
1043
|
+
"--fibery-color-highlightBgBlue": "rgb(40, 67, 99)",
|
|
1044
|
+
"--fibery-color-highlightFgBlue": "rgb(138, 191, 255)",
|
|
1045
|
+
"--fibery-color-highlightFgOnBgBlue": "rgb(167, 207, 255)",
|
|
1046
|
+
"--fibery-color-highlightBgPurple": "rgb(78, 57, 93)",
|
|
1047
|
+
"--fibery-color-highlightFgPurple": "rgb(215, 170, 250)",
|
|
1048
|
+
"--fibery-color-highlightFgOnBgPurple": "rgb(226, 189, 255)",
|
|
1049
|
+
"--fibery-color-highlightBgPink": "rgb(92, 53, 75)",
|
|
1050
|
+
"--fibery-color-highlightFgPink": "rgb(248, 160, 210)",
|
|
1051
|
+
"--fibery-color-highlightFgOnBgPink": "rgb(255, 182, 222)",
|
|
1052
|
+
"--fibery-color-highlightBgRed": "rgb(97, 52, 49)",
|
|
1053
|
+
"--fibery-color-highlightFgRed": "rgb(255, 163, 155)",
|
|
1054
|
+
"--fibery-color-highlightFgOnBgRed": "rgb(255, 186, 180)",
|
|
1055
|
+
"--fibery-color-highlightBgGrey": "rgb(66, 66, 66)",
|
|
1056
|
+
"--fibery-color-highlightFgGrey": "rgb(187, 187, 187)",
|
|
1057
|
+
"--fibery-color-highlightFgOnBgGrey": "rgb(203, 203, 203)",
|
|
1058
|
+
"--fibery-color-colorPickerCssFilter": "none",
|
|
1059
|
+
"--fibery-color-mode": "dark",
|
|
1060
|
+
"--fibery-color-colorAccentBgSubtle": "rgba(73, 120, 212, 0.1)",
|
|
1061
|
+
"--fibery-color-colorAccentBgMild": "rgba(73, 120, 212, 0.15)",
|
|
1062
|
+
"--fibery-color-colorAccentBgMedium": "rgba(73, 120, 212, 0.2)",
|
|
1063
|
+
"--fibery-color-colorAccentBgStrong": "rgba(73, 120, 212, 0.3)",
|
|
1064
|
+
"--fibery-color-colorAccentBgBold": "rgba(73, 120, 212, 0.35)",
|
|
1065
|
+
"--fibery-color-colorAccentBgVivid": "rgba(73, 120, 212, 0.6)",
|
|
1066
|
+
"--fibery-color-colorAccentStroke": "rgba(73, 120, 212, 0.25)",
|
|
1067
|
+
"--fibery-color-colorAccentStrokeHover": "rgba(73, 120, 212, 0.4)",
|
|
1068
|
+
"--fibery-color-colorAccentStrokeFocus": "rgba(73, 120, 212, 0.5)",
|
|
1069
|
+
"--fibery-color-colorAccentSolid": "rgba(73, 120, 212, 0.8)",
|
|
1070
|
+
"--fibery-color-colorAccent": "#4b74d2",
|
|
1071
|
+
"--fibery-color-darkenPrimary": "rgb(62, 96, 161)",
|
|
1072
|
+
"--fibery-color-whiteColor": "rgb(255,255,255)",
|
|
1073
|
+
"--fibery-color-blackColor": "rgb(0,0,0)",
|
|
1074
|
+
"--fibery-color-mainBg": "#0D0D0D",
|
|
1075
|
+
"--fibery-color-panelBg": "rgb(23,23,23)",
|
|
1076
|
+
"--fibery-color-panelContentBg": "rgb(23,23,23)",
|
|
1077
|
+
"--fibery-color-colorBgRelationContainer": "rgb(23,23,23)",
|
|
1078
|
+
"--fibery-color-colorAI": "#8349B6",
|
|
1079
|
+
"--fibery-color-colorBgAI": "rgba(131, 73, 182, 0.1)",
|
|
1080
|
+
"--fibery-color-colorBgAIFloatingLauncher": "rgb(41,41,41)",
|
|
1081
|
+
"--fibery-color-colorBgAIFloatingPanelContent": "rgb(36,36,36)",
|
|
1082
|
+
"--fibery-color-colorBgAISidebarContent": "rgb(23,23,23)",
|
|
1083
|
+
"--fibery-color-pageContentBg": "rgb(28,28,28)",
|
|
1084
|
+
"--fibery-color-colorBgPopup": "rgb(41,41,41)",
|
|
1085
|
+
"--fibery-color-menuBg": "#0D0D0D",
|
|
1086
|
+
"--fibery-color-menuTextColor": "rgb(237,237,237)",
|
|
1087
|
+
"--fibery-color-menuItemHoverColor": "rgb(51,51,51)",
|
|
1088
|
+
"--fibery-color-menuSelectedTextColor": "rgb(247,247,247)",
|
|
1089
|
+
"--fibery-color-menuIconColor": "rgba(237, 237, 237, 0.7)",
|
|
1090
|
+
"--fibery-color-textColor": "rgb(237,237,237)",
|
|
1091
|
+
"--fibery-color-textSelectionColor": "rgba(75, 116, 210, 0.4)",
|
|
1092
|
+
"--fibery-color-accentTextColor": "rgb(127,127,127)",
|
|
1093
|
+
"--fibery-color-disabledTextColor": "rgb(112,112,112)",
|
|
1094
|
+
"--fibery-color-inversedTextColor": "rgb(51,51,51)",
|
|
1095
|
+
"--fibery-color-colorTextSecondary": "rgba(237, 237, 237, 0.65)",
|
|
1096
|
+
"--fibery-color-linkColor": "#97B1ED",
|
|
1097
|
+
"--fibery-color-linkBorder": "0.5px solid rgba(151, 177, 237, 0.4)",
|
|
1098
|
+
"--fibery-color-linkHoverColor": "#97B1ED",
|
|
1099
|
+
"--fibery-color-linkBorderHover": "0.5px solid rgba(151, 177, 237, 0.75)",
|
|
1100
|
+
"--fibery-color-codeColor": "rgb(237,150,151)",
|
|
1101
|
+
"--fibery-color-codeBgColor": "rgb(41,41,41)",
|
|
1102
|
+
"--fibery-color-codeBlockBgColor": "rgb(41,41,41)",
|
|
1103
|
+
"--fibery-color-addedDiffTextColor": "rgb(127,192,182)",
|
|
1104
|
+
"--fibery-color-removedDiffTextColor": "rgb(244,146,148)",
|
|
1105
|
+
"--fibery-color-entityNodeColor": "rgb(199,199,199)",
|
|
1106
|
+
"--fibery-color-entityNodeBorder": "0.5px solid rgba(199, 199, 199, 0.4)",
|
|
1107
|
+
"--fibery-color-entityNodeHoverColor": "rgb(219,219,219)",
|
|
1108
|
+
"--fibery-color-entityNodeBorderHover": "0.5px solid rgba(219, 219, 219, 0.8)",
|
|
1109
|
+
"--fibery-color-entityNodeBgColor": "rgb(36,36,36)",
|
|
1110
|
+
"--fibery-color-shortcutTextColor": "rgb(161,161,161)",
|
|
1111
|
+
"--fibery-color-shortcutBorder": "1px solid rgba(127, 127, 127, 0.2)",
|
|
1112
|
+
"--fibery-color-shortcutBorderColor": "rgba(127, 127, 127, 0.2)",
|
|
1113
|
+
"--fibery-color-inputBgColor": "rgb(28,28,28)",
|
|
1114
|
+
"--fibery-color-inputDisabledBgColor": "rgba(51, 51, 51, 0.3)",
|
|
1115
|
+
"--fibery-color-inputDisabledBorderColor": "0 0 0 1px rgba(82, 82, 82, 0.2)",
|
|
1116
|
+
"--fibery-color-inputCopyBgColor": "rgb(41,41,41)",
|
|
1117
|
+
"--fibery-color-inputBorderColor": "0 0 0 1px rgba(82, 82, 82, 0.7)",
|
|
1118
|
+
"--fibery-color-inputBorderHoverColor": "0 0 0 1px rgb(82,82,82)",
|
|
1119
|
+
"--fibery-color-inputBorderFocusColor": "0 0 0 1px rgb(112,112,112)",
|
|
1120
|
+
"--fibery-color-inputBorderBlendMode": "lighten",
|
|
1121
|
+
"--fibery-color-inputPlaceholderTextColor": "rgb(112,112,112)",
|
|
1122
|
+
"--fibery-color-inputErrorBorderColor": "0 0 0 1px rgb(244,179,179)",
|
|
1123
|
+
"--fibery-color-inputErrorBorderHoverColor": "0 0 0 1px rgba(244, 179, 179, 0.4)",
|
|
1124
|
+
"--fibery-color-inputErrorBorderFocusColor": "0 0 0 1px rgba(244, 179, 179, 0.25)",
|
|
1125
|
+
"--fibery-color-inputErrorBorderFocusShadow": "0 0 0 3px rgba(244, 179, 179, 0.25)",
|
|
1126
|
+
"--fibery-color-inputBorderWarningColor": "0 0 0 1px rgb(109,95,0)",
|
|
1127
|
+
"--fibery-color-buttonPrimaryColor": "#4b74d2",
|
|
1128
|
+
"--fibery-color-buttonColor": "rgb(127,127,127)",
|
|
1129
|
+
"--fibery-color-buttonPrimaryTextColor": "rgb(227,227,227)",
|
|
1130
|
+
"--fibery-color-checkboxColor": "rgba(237, 237, 237, 0.7)",
|
|
1131
|
+
"--fibery-color-colorBorderBlockQuote": "rgb(161,161,161)",
|
|
1132
|
+
"--fibery-color-colorBgActionsMenu": "rgb(36,36,36)",
|
|
1133
|
+
"--fibery-color-colorBgActionsMenuItemHover": "rgb(46,46,46)",
|
|
1134
|
+
"--fibery-color-colorBgActionsMenuItemSelected": "rgba(28, 43, 79, 0.8)",
|
|
1135
|
+
"--fibery-color-colorBgActionsMenuItemSelectedHover": "rgba(41, 59, 102, 0.8)",
|
|
1136
|
+
"--fibery-color-colorBgActionsMenuItemDangerHover": "rgba(225, 78, 91, 0.1)",
|
|
1137
|
+
"--fibery-color-colorBgActionsMenuItemDangerActive": "rgba(225, 78, 91, 0.8)",
|
|
1138
|
+
"--fibery-color-actionMenuBg": "rgb(36,36,36)",
|
|
1139
|
+
"--fibery-color-actionMenuInnerBg": "rgb(41,41,41)",
|
|
1140
|
+
"--fibery-color-actionMenuHover": "rgb(46,46,46)",
|
|
1141
|
+
"--fibery-color-actionMenuInnerHover": "rgba(51, 51, 51, 0.5)",
|
|
1142
|
+
"--fibery-color-actionMenuButtonColor": "rgb(28,28,28)",
|
|
1143
|
+
"--fibery-color-actionMenuButtonHoverColor": "rgb(36,36,36)",
|
|
1144
|
+
"--fibery-color-actionMenuButtonShadow": "0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2)",
|
|
1145
|
+
"--fibery-color-actionMenuSeparatorColor": "rgba(255, 255, 255, 0.15)",
|
|
1146
|
+
"--fibery-color-separatorColor": "rgba(255, 255, 255, 0.1)",
|
|
1147
|
+
"--fibery-color-separatorColorDimmed": "rgba(255, 255, 255, 0.05)",
|
|
1148
|
+
"--fibery-color-separatorBreadcrumbsColor": "rgb(82,82,82)",
|
|
1149
|
+
"--fibery-color-borderSeparatorDimmed": "0.5px solid rgba(255, 255, 255, 0.05)",
|
|
1150
|
+
"--fibery-color-borderSeparator": "0.5px solid rgba(255, 255, 255, 0.1)",
|
|
1151
|
+
"--fibery-color-borderSeparatorMedium": "0.5px solid rgba(255, 255, 255, 0.15)",
|
|
1152
|
+
"--fibery-color-borderSeparatorStrong": "0.5px solid rgba(255, 255, 255, 0.25)",
|
|
1153
|
+
"--fibery-color-borderMedia": "0.5px solid rgba(0,0,0,0.14)",
|
|
1154
|
+
"--fibery-color-borderSolidSeparator": "1px solid rgba(255, 255, 255, 0.1)",
|
|
1155
|
+
"--fibery-color-borderSolidSeparatorDimmed": "1px solid rgba(255, 255, 255, 0.05)",
|
|
1156
|
+
"--fibery-color-borderSolidFilterGroup": "1px solid rgba(255,255,255,0.03)",
|
|
1157
|
+
"--fibery-color-borderSolidGrid": "1px solid rgb(51,51,51)",
|
|
1158
|
+
"--fibery-color-borderSolidOutlineNeutral": "1px solid rgb(61,61,61)",
|
|
1159
|
+
"--fibery-color-borderSolidMedia": "1px solid rgba(0,0,0,0.14)",
|
|
1160
|
+
"--fibery-color-borderSolidCommentBubble": "1px solid rgb(51,51,51)",
|
|
1161
|
+
"--fibery-color-borderBlockQuote": "3px solid rgb(161,161,161)",
|
|
1162
|
+
"--fibery-color-shadowCardDefault": "0 0 0 1px rgba(82, 82, 82, 0.7), 0 1px 4px 0 rgba(23, 23, 23, 0.1)",
|
|
1163
|
+
"--fibery-color-shadowCardHover": "0 0 0 1px rgba(82, 82, 82, 0.7), 0 2px 6px 0 rgba(23, 23, 23, 0.1)",
|
|
1164
|
+
"--fibery-color-shadowCardInset": "inset 0 0 0 1px rgba(82, 82, 82, 0.7)",
|
|
1165
|
+
"--fibery-color-iconColor": "rgba(237, 237, 237, 0.7)",
|
|
1166
|
+
"--fibery-color-appIconColor": "rgba(247, 247, 247, 0.7)",
|
|
1167
|
+
"--fibery-color-appIconBgColor": "rgba(247, 247, 247, 0.5)",
|
|
1168
|
+
"--fibery-color-mentionBgColor": "rgba(61, 61, 61, 0.4)",
|
|
1169
|
+
"--fibery-color-colorBgSelectMenu": "rgb(36,36,36)",
|
|
1170
|
+
"--fibery-color-shadowSelectMenu":
|
|
1171
|
+
"0 0 0 1px rgb(51,51,51), 0 4px 6px 0 rgba(23, 23, 23, 0.05), 0 10px 26px 0 rgba(23, 23, 23, 0.15)",
|
|
1172
|
+
"--fibery-color-colorBgListItemGeneral": "rgba(255, 255, 255, 0)",
|
|
1173
|
+
"--fibery-color-colorBgListItemGeneralHover": "rgb(41,41,41)",
|
|
1174
|
+
"--fibery-color-colorBgListItemGeneralFocus": "rgb(51,51,51)",
|
|
1175
|
+
"--fibery-color-colorBgListItemGeneralSelected": "#1c2b4f",
|
|
1176
|
+
"--fibery-color-colorBgListItemGeneralSelectedHover": "#293b66",
|
|
1177
|
+
"--fibery-color-colorBgListItemGeneralSelectedFocus": "#293b66",
|
|
1178
|
+
"--fibery-color-colorBgListItemGeneralDisabled": "rgba(255, 255, 255, 0)",
|
|
1179
|
+
"--fibery-color-colorTextListItemGeneralDisabled": "rgb(112,112,112)",
|
|
1180
|
+
"--fibery-color-colorBgListItemGeneralSelectedDisabled": "#223259",
|
|
1181
|
+
"--fibery-color-opacityListItemGeneralDisabled": "0.4",
|
|
1182
|
+
"--fibery-color-colorSearchSubtitle": "rgb(112,112,112)",
|
|
1183
|
+
"--fibery-color-colorBgSearchRowHover": "rgb(46,46,46)",
|
|
1184
|
+
"--fibery-color-colorBgSearchRowCreateHover": "#1c2b4f",
|
|
1185
|
+
"--fibery-color-opacitySearchItemDone": "0.4",
|
|
1186
|
+
"--fibery-color-colorBgEntityBoxDefault": "rgb(36,36,36)",
|
|
1187
|
+
"--fibery-color-shadowStrokeEntityBoxDefault": "0 0 0 1px rgb(46,46,46)",
|
|
1188
|
+
"--fibery-color-shadowEntityBoxDefault": "0 2px 4px 0 rgba(23, 23, 23, 0.05)",
|
|
1189
|
+
"--fibery-color-colorBgEntityBoxDefaultHover": "rgb(41,41,41)",
|
|
1190
|
+
"--fibery-color-shadowEntityBoxDefaultHover": "0 4px 8px 0 rgba(23, 23, 23, 0.1)",
|
|
1191
|
+
"--fibery-color-colorBgEntityBoxDefaultFocus": "rgb(36,36,36)",
|
|
1192
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocus": "#4b74d2",
|
|
1193
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocus": "0 0 0 2px rgba(75, 116, 210, 0.4)",
|
|
1194
|
+
"--fibery-color-colorBgEntityBoxDefaultFocusHover": "rgb(41,41,41)",
|
|
1195
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocusHover": "#4b74d2",
|
|
1196
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocusHover": "0 0 0 2px rgba(75, 116, 210, 0.6)",
|
|
1197
|
+
"--fibery-color-opacityEntityBoxDefaultDrag": "0.4",
|
|
1198
|
+
"--fibery-color-shadowEntityBoxDefaultDrag": "0 8px 12px 0 rgba(23, 23, 23, 0.1)",
|
|
1199
|
+
"--fibery-color-colorBgEntityBoxSelected": "#1a2642",
|
|
1200
|
+
"--fibery-color-shadowStrokeEntityBoxSelected": "0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4)",
|
|
1201
|
+
"--fibery-color-colorBgEntityBoxSelectedHover": "#1a2642",
|
|
1202
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedHover": "0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4)",
|
|
1203
|
+
"--fibery-color-colorBgEntityBoxSelectedDrag": "#1a2642",
|
|
1204
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedDrag": "0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4)",
|
|
1205
|
+
"--fibery-color-opacityEntityBoxDisabled": "0.65",
|
|
1206
|
+
"--fibery-color-opacityEntityBoxDisabledHover": "0.75",
|
|
1207
|
+
"--fibery-color-opacityEntityBoxDisabledFocus": "0.75",
|
|
1208
|
+
"--fibery-color-opacityEntityBoxDisabledDrag": "0.4",
|
|
1209
|
+
"--fibery-color-entityCardBgColor": "rgb(46,46,46)",
|
|
1210
|
+
"--fibery-color-entityCardSelectedColor": "rgba(51, 51, 51, 0.5)",
|
|
1211
|
+
"--fibery-color-entityCardHoverColor": "rgba(51, 51, 51, 0.5)",
|
|
1212
|
+
"--fibery-color-entityCardDoneColor": "rgba(46, 46, 46, 0.3)",
|
|
1213
|
+
"--fibery-color-entityCardShadow": "0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2)",
|
|
1214
|
+
"--fibery-color-entityCardShadowHover": "0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2)",
|
|
1215
|
+
"--fibery-color-colorBgSegmentedControl": "rgba(36, 36, 36, 0.8)",
|
|
1216
|
+
"--fibery-color-colorBgMenuHeaderAvatar": "rgb(28,28,28)",
|
|
1217
|
+
"--fibery-color-shadowMenuHeaderAvatar": "0 0 0 1px rgba(112, 112, 112, 0.2)",
|
|
1218
|
+
"--fibery-color-opacityMenuItemDragged": "0.4",
|
|
1219
|
+
"--fibery-color-colorBgMenuItemSelectedDragged": "#293b66",
|
|
1220
|
+
"--fibery-color-colorTextMenuItem": "rgba(237, 237, 237, 0.9)",
|
|
1221
|
+
"--fibery-color-colorBgMenuItem": "rgba(255, 255, 255, 0)",
|
|
1222
|
+
"--fibery-color-colorBgMenuItemHover": "rgb(28,28,28)",
|
|
1223
|
+
"--fibery-color-colorBgMenuItemFocus": "rgb(46,46,46)",
|
|
1224
|
+
"--fibery-color-colorBgMenuItemSelected": "#1a2642",
|
|
1225
|
+
"--fibery-color-colorBgMenuItemSelectedHover": "#223259",
|
|
1226
|
+
"--fibery-color-colorBgPinnedFieldsLabel": "rgb(161,161,161)",
|
|
1227
|
+
"--fibery-color-colorBgObjectEditorSeparator": "rgb(237,237,237)",
|
|
1228
|
+
"--fibery-color-colorBgMenuItemSelectedFocused": "#223259",
|
|
1229
|
+
"--fibery-color-colorBgFieldEditorContainer": "rgb(36,36,36)",
|
|
1230
|
+
"--fibery-color-colorBgFieldEditorLinkEqualSign": "rgb(28,28,28)",
|
|
1231
|
+
"--fibery-color-allowedDropColor": "rgb(41,41,41)",
|
|
1232
|
+
"--fibery-color-relationViewBgColor": "rgb(36,36,36)",
|
|
1233
|
+
"--fibery-color-mySpaceIconColor": "rgb(122, 132, 142)",
|
|
1234
|
+
"--fibery-color-mySpaceIconBg": "rgba(106, 132, 155, 0.2)",
|
|
1235
|
+
"--fibery-color-privateIconColor": "rgb(105, 172, 94)",
|
|
1236
|
+
"--fibery-color-privateIconBg": "rgba(105, 172, 94, 0.2)",
|
|
1237
|
+
"--fibery-color-favoritesIconColor": "rgb(238, 166, 74)",
|
|
1238
|
+
"--fibery-color-favoritesIconBg": "rgba(251, 163, 47, 0.2)",
|
|
1239
|
+
"--fibery-color-swatchDefault": "#2978FB",
|
|
1240
|
+
"--fibery-color-unitBg": "rgb(51,51,51)",
|
|
1241
|
+
"--fibery-color-unitBgHover": "rgb(61,61,61)",
|
|
1242
|
+
"--fibery-color-colorBgBadgeNeutral": "rgba(41, 41, 41, 0.8)",
|
|
1243
|
+
"--fibery-color-colorBgBadgeAccent": "rgba(28, 43, 79, 0.8)",
|
|
1244
|
+
"--fibery-color-colorBgBadgeSuccess": "rgb(7,61,55)",
|
|
1245
|
+
"--fibery-color-colorBgBadgeWarning": "rgb(58,50,0)",
|
|
1246
|
+
"--fibery-color-colorBgBadgeError": "rgb(91,26,32)",
|
|
1247
|
+
"--fibery-color-colorTextBadgeNeutral": "rgb(161,161,161)",
|
|
1248
|
+
"--fibery-color-colorTextBadgeAccent": "#97b1ed",
|
|
1249
|
+
"--fibery-color-colorTextBadgeSuccess": "rgb(127,192,182)",
|
|
1250
|
+
"--fibery-color-colorTextBadgeWarning": "rgb(225,199,0)",
|
|
1251
|
+
"--fibery-color-colorTextBadgeError": "rgb(244,146,148)",
|
|
1252
|
+
"--fibery-color-badgeBgColor": "rgba(120, 120, 120, 0.2)",
|
|
1253
|
+
"--fibery-color-tooltipBgColor": "rgb(51,51,51)",
|
|
1254
|
+
"--fibery-color-todayMarkerColor": "rgb(104,33,39)",
|
|
1255
|
+
"--fibery-color-viewBgOverlayColor": "rgba(23, 23, 23, 0.6)",
|
|
1256
|
+
"--fibery-color-floatEditorMenuBg": "rgb(51,51,51)",
|
|
1257
|
+
"--fibery-color-floatEditorActiveColor": "#97b1ed",
|
|
1258
|
+
"--fibery-color-commentColor": "rgba(246, 217, 1, 0.4)",
|
|
1259
|
+
"--fibery-color-cellBackgroundColor": "rgb(28,28,28)",
|
|
1260
|
+
"--fibery-color-cellBackgroundHoverColor": "rgba(51, 51, 51, 0.3)",
|
|
1261
|
+
"--fibery-color-cellBorderColor": "rgba(112, 112, 112, 0.5)",
|
|
1262
|
+
"--fibery-color-cellPinnedBorderColor": "rgba(112, 112, 112, 0.7)",
|
|
1263
|
+
"--fibery-color-tableRowWarningColor": "rgba(246, 217, 1, 0.4)",
|
|
1264
|
+
"--fibery-color-errorBgColor": "rgba(213, 50, 72, 0.6)",
|
|
1265
|
+
"--fibery-color-errorTextColor": "rgb(244,179,179)",
|
|
1266
|
+
"--fibery-color-errorButtonColor": "rgb(225,78,91)",
|
|
1267
|
+
"--fibery-color-warningBgColor": "rgba(109, 95, 0, 0.6)",
|
|
1268
|
+
"--fibery-color-warningButtonColor": "rgb(225,199,0)",
|
|
1269
|
+
"--fibery-color-infoBox": "rgba(246, 217, 1, 0.2)",
|
|
1270
|
+
"--fibery-color-appCardBgColor": "rgb(28,28,28)",
|
|
1271
|
+
"--fibery-color-appCardHoverColor": "rgb(28,28,28)",
|
|
1272
|
+
"--fibery-color-modalBg": "rgba(28, 28, 28, 0.5)",
|
|
1273
|
+
"--fibery-color-modalContentBg": "rgb(36,36,36)",
|
|
1274
|
+
"--fibery-color-progressIconBg": "rgba(255,255,255,0.18)",
|
|
1275
|
+
"--fibery-color-progressIconFill": "rgba(255,255,255,0.59)",
|
|
1276
|
+
"--fibery-color-formBg": "rgb(28,28,28)",
|
|
1277
|
+
"--fibery-color-formHeaderShadow": "0 0 6px 0 rgba(23, 23, 23, 0.4)",
|
|
1278
|
+
"--fibery-color-formEditorFieldBg": "rgb(41,41,41)",
|
|
1279
|
+
"--fibery-color-filterGroup1Bg": "rgb(51,51,51)",
|
|
1280
|
+
"--fibery-color-filterGroup2Bg": "rgb(61,61,61)",
|
|
1281
|
+
"--fibery-color-filterGroupBorder": "rgba(255,255,255,0.03)",
|
|
1282
|
+
"--fibery-color-colorBgNotificationHover": "rgb(41,41,41)",
|
|
1283
|
+
"--fibery-color-colorBgNotificationSelected": "#1c2b4f",
|
|
1284
|
+
"--fibery-color-colorBgNotificationSelectedHover": "#293b66",
|
|
1285
|
+
"--fibery-color-disabledInversedTextColor": "rgba(255, 255, 255, 0.25)",
|
|
1286
|
+
"--fibery-color-success": "rgb(0,142,128)",
|
|
1287
|
+
"--fibery-color-danger": "rgb(225,78,91)",
|
|
1288
|
+
"--fibery-color-active": "rgb(225,78,91)",
|
|
1289
|
+
"--fibery-color-warning": "rgb(109,95,0)",
|
|
1290
|
+
"--fibery-color-cardBg": "rgb(51,51,51)",
|
|
1291
|
+
"--fibery-color-selectedImageBorder": "rgba(255,255,255,0.59)",
|
|
1292
|
+
"--fibery-color-transparent": "rgba(255, 255, 255, 0)",
|
|
1293
|
+
"--fibery-color-progressBg": "rgb(237,237,237)",
|
|
1294
|
+
"--fibery-color-progressText": "rgb(94,94,94)",
|
|
1295
|
+
"--fibery-color-progressFillBg": "rgb(94,94,94)",
|
|
1296
|
+
"--fibery-color-progressFillText": "rgb(255,255,255)",
|
|
1297
|
+
"--fibery-color-progressBarFillNeutral": "rgba(112, 112, 112, 0.2)",
|
|
1298
|
+
"--fibery-color-progressBarFill": "#5f85dd",
|
|
1299
|
+
"--fibery-color-progressBarBg": "rgba(95, 133, 221, 0.25)",
|
|
1300
|
+
"--fibery-color-colorPickerSwatchBorder": "rgba(0,0,0,0.14)",
|
|
1301
|
+
"--fibery-color-colorBorderRichTextMedia": "rgba(0,0,0,0.14)",
|
|
1302
|
+
"--fibery-color-richTextTableBorder": "rgba(255,255,255,0.18)",
|
|
1303
|
+
"--fibery-color-colorBgDropLine": "#3258ae",
|
|
1304
|
+
"--fibery-color-viewBg": "rgb(23,23,23)",
|
|
1305
|
+
"--fibery-color-viewSecondaryBg": "rgb(28,28,28)",
|
|
1306
|
+
"--fibery-color-viewHighlightBg": "#1a2642",
|
|
1307
|
+
"--fibery-color-boardBg": "rgb(23,23,23)",
|
|
1308
|
+
"--fibery-color-boardBgWithOpacity80": "rgba(23, 23, 23, 0.8)",
|
|
1309
|
+
"--fibery-color-boardAxisBgHover": "rgb(41,41,41)",
|
|
1310
|
+
"--fibery-color-gridHeaderBgColor": "rgb(36,36,36)",
|
|
1311
|
+
"--fibery-color-gridHeaderHoverBgColor": "rgb(41,41,41)",
|
|
1312
|
+
"--fibery-color-gridHeaderTextColor": "rgb(161,161,161)",
|
|
1313
|
+
"--fibery-color-gridCellBgColor": "rgb(28,28,28)",
|
|
1314
|
+
"--fibery-color-gridCellBorderColor": "rgb(51,51,51)",
|
|
1315
|
+
"--fibery-color-gridDisabledCellBgColor": "rgb(36,36,36)",
|
|
1316
|
+
"--fibery-color-gridSelectedCellBgColor": "#1a2642",
|
|
1317
|
+
"--fibery-color-gridHighlightedCellBgColor": "#223259",
|
|
1318
|
+
"--fibery-color-gridSelectedCellBorderColor": "#2d4786",
|
|
1319
|
+
"--fibery-color-gridSelectedPinnedCellBorderColor": "#2d4786",
|
|
1320
|
+
"--fibery-color-gridDisabledSelectedCellBgColor": "#223259",
|
|
1321
|
+
"--fibery-color-gridActiveCellBorderColor": "#4b74d2",
|
|
1322
|
+
"--fibery-color-timelineEntityHandleColor": "#2d4786",
|
|
1323
|
+
"--fibery-color-timelineDependencyHoverBgColor": "#3258ae",
|
|
1324
|
+
"--fibery-color-timelineDependencyOverlapBgColor": "rgb(213,50,72)",
|
|
1325
|
+
"--fibery-color-timelineDependencyOverlapHoverBgColor": "rgb(244,146,148)",
|
|
1326
|
+
"--fibery-color-timelineCellBgColor": "rgb(23,23,23)",
|
|
1327
|
+
"--fibery-color-timelineCellWeekendBgColor": "rgb(28,28,28)",
|
|
1328
|
+
"--fibery-color-timelineCellTodayBgColor": "#151c2d",
|
|
1329
|
+
"--fibery-color-timelineCreateEntityPlaceholderBgColor": "rgb(61,61,61)",
|
|
1330
|
+
"--fibery-color-colorBgButtonSolidAccentDefault": "#4b74d2",
|
|
1331
|
+
"--fibery-color-colorBgButtonSolidAccentHover": "#5f85dd",
|
|
1332
|
+
"--fibery-color-colorBgButtonSolidNeutralDefault": "rgb(237,237,237)",
|
|
1333
|
+
"--fibery-color-colorBgButtonSolidNeutralHover": "rgb(255,255,255)",
|
|
1334
|
+
"--fibery-color-colorBgButtonSolidDestructiveDefault": "rgb(213,50,72)",
|
|
1335
|
+
"--fibery-color-colorBgButtonSolidDestructiveHover": "rgb(225,78,91)",
|
|
1336
|
+
"--fibery-color-colorTextButtonSolidAccent": "rgb(255,255,255)",
|
|
1337
|
+
"--fibery-color-colorTextButtonSolidAccentActive": "rgba(255, 255, 255, 0.8)",
|
|
1338
|
+
"--fibery-color-colorTextButtonSolidNeutral": "rgb(28,28,28)",
|
|
1339
|
+
"--fibery-color-colorTextButtonSolidNeutralActive": "rgba(28, 28, 28, 0.8)",
|
|
1340
|
+
"--fibery-color-colorTextButtonSolidDestructive": "rgb(255,255,255)",
|
|
1341
|
+
"--fibery-color-colorTextButtonSolidDestructiveActive": "rgba(255, 255, 255, 0.8)",
|
|
1342
|
+
"--fibery-color-colorIconButtonSolidAccent": "rgb(255,255,255)",
|
|
1343
|
+
"--fibery-color-colorIconButtonSolidNeutral": "rgb(82,82,82)",
|
|
1344
|
+
"--fibery-color-colorIconButtonSolidDestructive": "rgb(255,255,255)",
|
|
1345
|
+
"--fibery-color-colorBorderButtonOutlineAccentDefault": "#3258ae",
|
|
1346
|
+
"--fibery-color-colorBorderButtonOutlineNeutralDefault": "rgb(61,61,61)",
|
|
1347
|
+
"--fibery-color-colorBorderButtonOutlineDestructiveDefault": "rgb(135,27,42)",
|
|
1348
|
+
"--fibery-color-colorBgButtonOutlineAccentDefault": "rgb(23,23,23)",
|
|
1349
|
+
"--fibery-color-colorBgButtonOutlineAccentHover": "#1a2642",
|
|
1350
|
+
"--fibery-color-colorBgButtonOutlineNeutralDefault": "rgb(23,23,23)",
|
|
1351
|
+
"--fibery-color-colorBgButtonOutlineNeutralHover": "rgb(41,41,41)",
|
|
1352
|
+
"--fibery-color-colorBgButtonOutlineDestructiveDefault": "rgb(23,23,23)",
|
|
1353
|
+
"--fibery-color-colorBgButtonOutlineDestructiveHover": "rgb(80,21,27)",
|
|
1354
|
+
"--fibery-color-colorTextButtonOutlineAccent": "#97b1ed",
|
|
1355
|
+
"--fibery-color-colorTextButtonOutlineAccentActive": "rgba(151, 177, 237, 0.8)",
|
|
1356
|
+
"--fibery-color-colorTextButtonOutlineNeutral": "rgb(161,161,161)",
|
|
1357
|
+
"--fibery-color-colorTextButtonOutlineNeutralActive": "rgba(237, 237, 237, 0.8)",
|
|
1358
|
+
"--fibery-color-colorTextButtonOutlineDestructive": "rgb(244,146,148)",
|
|
1359
|
+
"--fibery-color-colorTextButtonOutlineDestructiveActive": "rgba(244, 146, 148, 0.8)",
|
|
1360
|
+
"--fibery-color-colorIconButtonOutlineAccent": "#97b1ed",
|
|
1361
|
+
"--fibery-color-colorIconButtonOutlineNeutral": "rgb(161,161,161)",
|
|
1362
|
+
"--fibery-color-colorIconButtonOutlineDestructive": "rgb(244,146,148)",
|
|
1363
|
+
"--fibery-color-colorBgButtonSoftAccentDefault": "#1c2b4f",
|
|
1364
|
+
"--fibery-color-colorBgButtonSoftAccentHover": "#293b66",
|
|
1365
|
+
"--fibery-color-colorBgButtonSoftNeutralDefault": "rgb(36,36,36)",
|
|
1366
|
+
"--fibery-color-colorBgButtonSoftNeutralHover": "rgb(61,61,61)",
|
|
1367
|
+
"--fibery-color-colorBgButtonSoftDestructiveDefault": "rgb(80,21,27)",
|
|
1368
|
+
"--fibery-color-colorBgButtonSoftDestructiveHover": "rgb(104,33,39)",
|
|
1369
|
+
"--fibery-color-colorTextButtonSoftAccent": "#97b1ed",
|
|
1370
|
+
"--fibery-color-colorTextButtonSoftAccentActive": "rgba(151, 177, 237, 0.8)",
|
|
1371
|
+
"--fibery-color-colorTextButtonSoftNeutral": "rgb(161,161,161)",
|
|
1372
|
+
"--fibery-color-colorTextButtonSoftNeutralActive": "rgba(161, 161, 161, 0.8)",
|
|
1373
|
+
"--fibery-color-colorTextButtonSoftDestructive": "rgb(244,146,148)",
|
|
1374
|
+
"--fibery-color-colorTextButtonSoftDestructiveActive": "rgba(244, 146, 148, 0.8)",
|
|
1375
|
+
"--fibery-color-colorIconButtonSoftAccent": "#97b1ed",
|
|
1376
|
+
"--fibery-color-colorIconButtonSoftNeutral": "rgb(161,161,161)",
|
|
1377
|
+
"--fibery-color-colorIconButtonSoftDestructive": "rgb(244,146,148)",
|
|
1378
|
+
"--fibery-color-colorBgButtonGhostAccentDefault": "rgba(255, 255, 255, 0)",
|
|
1379
|
+
"--fibery-color-colorBgButtonGhostAccentHover": "rgba(28, 43, 79, 0.8)",
|
|
1380
|
+
"--fibery-color-colorBgButtonGhostNeutralDefault": "rgba(255, 255, 255, 0)",
|
|
1381
|
+
"--fibery-color-colorBgButtonGhostNeutralHover": "rgba(51, 51, 51, 0.8)",
|
|
1382
|
+
"--fibery-color-colorBgButtonGhostDestructiveDefault": "rgba(255, 255, 255, 0)",
|
|
1383
|
+
"--fibery-color-colorBgButtonGhostDestructiveHover": "rgb(80,21,27)",
|
|
1384
|
+
"--fibery-color-colorTextButtonGhostAccent": "#97b1ed",
|
|
1385
|
+
"--fibery-color-colorTextButtonGhostAccentActive": "rgba(151, 177, 237, 0.8)",
|
|
1386
|
+
"--fibery-color-colorTextButtonGhostNeutral": "rgb(161,161,161)",
|
|
1387
|
+
"--fibery-color-colorTextButtonGhostNeutralActive": "rgba(161, 161, 161, 0.8)",
|
|
1388
|
+
"--fibery-color-colorTextButtonGhostDestructive": "rgb(244,146,148)",
|
|
1389
|
+
"--fibery-color-colorTextButtonGhostDestructiveActive": "rgba(244, 146, 148, 0.8)",
|
|
1390
|
+
"--fibery-color-colorIconButtonGhostAccent": "#97b1ed",
|
|
1391
|
+
"--fibery-color-colorIconButtonGhostNeutral": "rgb(161,161,161)",
|
|
1392
|
+
"--fibery-color-colorIconButtonGhostDestructive": "rgb(244,146,148)",
|
|
1393
|
+
"--fibery-color-colorBorderAccentFocusRing": "rgba(73, 120, 212, 0.3)",
|
|
1394
|
+
"--fibery-color-colorBorderNeutralFocusRing": "rgba(158, 158, 158, 0.3)",
|
|
1395
|
+
"--fibery-color-colorBorderDestructiveFocusRing": "rgba(211, 62, 78, 0.3)",
|
|
1396
|
+
"--fibery-color-colorBgReactionsDefault": "rgb(28,28,28)",
|
|
1397
|
+
"--fibery-color-colorBgReactionsHover": "rgb(51,51,51)",
|
|
1398
|
+
"--fibery-color-colorBorderReactionsHover": "rgb(112,112,112)",
|
|
1399
|
+
"--fibery-color-colorBgReactionsSelectedDefault": "#3258ae",
|
|
1400
|
+
"--fibery-color-colorBorderReactionsSelectedDefault": "#3258ae",
|
|
1401
|
+
"--fibery-color-colorBgReactionsSelectedHover": "#3869cc",
|
|
1402
|
+
"--fibery-color-colorBorderReactionsSelectedHover": "#3869cc",
|
|
1403
|
+
"--fibery-color-colorTextReactionsSelected": "rgb(237,237,237)",
|
|
1404
|
+
"--fibery-color-colorBgToastDefault": "rgb(23,23,23)",
|
|
1405
|
+
"--fibery-color-colorBgDbTabHover": "rgb(41,41,41)",
|
|
1406
|
+
"--fibery-color-colorBgDbTabFocus": "rgb(51,51,51)",
|
|
1407
|
+
"--fibery-color-colorBgTabHover": "rgba(161, 161, 161, 0.1)",
|
|
1408
|
+
"--fibery-color-colorBgMessageContainer": "rgb(36,36,36)",
|
|
1409
|
+
"--fibery-color-colorBgMessageContainerHover": "rgb(41,41,41)",
|
|
1410
|
+
"--fibery-color-colorBgEntityAvatarDefault": "#131720",
|
|
1411
|
+
"--fibery-color-colorBgEntityAvatarHover": "#1a2642",
|
|
1412
|
+
"--fibery-color-colorTextEntityAvatarDefault": "#3258ae",
|
|
1413
|
+
"--fibery-color-colorTextEntityAvatarHover": "#4b74d2",
|
|
1414
|
+
"--fibery-color-colorBgMessageHighlighted": "rgb(28,28,28)",
|
|
1415
|
+
"--fibery-color-colorBgEditorImageZoomed": "rgb(51,51,51)",
|
|
1416
|
+
"--fibery-color-colorMermaidPrimaryColor": "rgb(82,82,82)",
|
|
1417
|
+
"--fibery-color-colorMermaidPrimaryBorderColor": "rgb(112,112,112)",
|
|
1418
|
+
"--fibery-color-colorMermaidLineColor": "rgb(112,112,112)",
|
|
1419
|
+
"--fibery-color-colorBgWhiteboard": "rgb(23,23,23)",
|
|
1420
|
+
"--fibery-color-colorGridDotWhiteboard": "rgb(51,51,51)",
|
|
1421
|
+
"--fibery-color-colorSelectionWhiteboardBorderEnabled": "#3258ae",
|
|
1422
|
+
"--fibery-color-colorHighlightWhiteboardSelection": "#3258ae",
|
|
1423
|
+
"--fibery-color-colorHighlightWhiteboardSelectionLocked": "rgba(112, 112, 112, 0.5)",
|
|
1424
|
+
"--fibery-color-colorSelectionWhiteboardBorderDisabled": "rgba(112, 112, 112, 0.5)",
|
|
1425
|
+
"--fibery-color-colorPlaceholderWhiteboardDefault": "rgba(50, 88, 174, 0.2)",
|
|
1426
|
+
"--fibery-color-colorLinkPointWhiteboardDefault": "#3258ae",
|
|
1427
|
+
"--fibery-color-colorLinkPointWhiteboardFillDefault": "#0D0D0D",
|
|
1428
|
+
"--fibery-color-colorMapWhiteboardPreviewDefault": "rgba(50, 88, 174, 0.4)",
|
|
1429
|
+
"--fibery-color-colorCardWhiteboardShadowDefault": "rgba(161, 161, 161, 0.05)",
|
|
1430
|
+
"--fibery-color-colorCardWhiteboardBgDefault": "rgb(46,46,46)",
|
|
1431
|
+
"--fibery-color-colorCardWhiteboardBorderDefault": "rgba(237, 237, 237, 0.2)",
|
|
1432
|
+
"--fibery-color-colorUnitHeaderWhiteboardDefault": "rgba(237, 237, 237, 0.6)",
|
|
1433
|
+
"--fibery-color-colorUnitWhiteboardBgDefault": "rgb(51,51,51)",
|
|
1434
|
+
"--fibery-color-colorUnitWhiteboardBorderDefault": "rgba(237, 237, 237, 0.25)",
|
|
1435
|
+
"--fibery-color-colorSectionWhiteboardBgInactive": "rgb(28,28,28)",
|
|
1436
|
+
"--fibery-color-colorSectionWhiteboardBorderInactive": "rgb(51,51,51)",
|
|
1437
|
+
"--fibery-color-colorEmbedWhiteboardEditBorder": "rgba(0, 112, 99, 0.9)",
|
|
1438
|
+
"--fibery-color-colorTextWhiteboardDefault": "rgb(237,237,237)",
|
|
1439
|
+
"--fibery-color-colorTextWhiteboardDisabled": "rgb(112,112,112)",
|
|
1440
|
+
"--fibery-color-colorTextWhiteboardAccent": "rgba(23, 23, 23, 0.6)",
|
|
1441
|
+
"--fibery-color-colorTextWhiteboardInversedDefault": "rgb(255,255,255)",
|
|
1442
|
+
"--fibery-color-instrumentsMenuBg": "rgb(41,41,41)",
|
|
1443
|
+
"--fibery-color-instrumentsMenuShadow":
|
|
1444
|
+
"0 0 1px 0 rgb(51,51,51), 0 4px 6px 0 rgba(23, 23, 23, 0.05), 0 3px 12px 0 rgba(23, 23, 23, 0.15)",
|
|
1445
|
+
"--fibery-color-commentBubbleBg": "rgb(51,51,51)",
|
|
1446
|
+
"--fibery-color-commentsPanelShadow":
|
|
1447
|
+
"0 0 1px 0 rgb(51,51,51), 0 4px 6px 0 rgba(23, 23, 23, 0.05), 0 3px 12px 0 rgba(23, 23, 23, 0.15)",
|
|
1448
|
+
"--fibery-color-searchFiltersBg": "rgb(28,28,28)",
|
|
1449
|
+
"--fibery-color-selectedColorBorder": "rgba(227, 227, 227, 0.25)",
|
|
1450
|
+
"--fibery-color-colorBgSegmentedControlDefault": "rgb(23,23,23)",
|
|
1451
|
+
"--fibery-color-colorBgSegmentedControlActive": "rgb(51,51,51)",
|
|
1452
|
+
"--fibery-color-colorBgSegmentedControlHover": "rgb(41,41,41)",
|
|
1453
|
+
"--fibery-color-colorBorderSegmentedControlDefault": "rgb(61,61,61)",
|
|
1454
|
+
"--fibery-color-colorBgBannerNeutral": "rgb(36,36,36)",
|
|
1455
|
+
"--fibery-color-colorBgBannerPrimary": "#1a2642",
|
|
1456
|
+
"--fibery-color-colorBgBannerWarning": "rgb(42,36,0)",
|
|
1457
|
+
"--fibery-color-colorBgBannerError": "rgb(67,22,25)",
|
|
1458
|
+
"--fibery-color-colorBgBannerSuccess": "rgb(10,46,41)",
|
|
1459
|
+
"--fibery-color-colorIconBannerNeutral": "rgb(237,237,237)",
|
|
1460
|
+
"--fibery-color-colorIconBannerAccent": "#97b1ed",
|
|
1461
|
+
"--fibery-color-colorIconBannerWarning": "rgb(225,199,0)",
|
|
1462
|
+
"--fibery-color-colorIconBannerError": "rgb(244,146,148)",
|
|
1463
|
+
"--fibery-color-colorIconBannerSuccess": "rgb(127,192,182)",
|
|
1464
|
+
"--fibery-color-colorTextBannerNeutral": "rgb(237,237,237)",
|
|
1465
|
+
"--fibery-color-colorTextBannerAccent": "#97b1ed",
|
|
1466
|
+
"--fibery-color-colorTextBannerWarning": "rgb(225,199,0)",
|
|
1467
|
+
"--fibery-color-colorTextBannerError": "rgb(244,146,148)",
|
|
1468
|
+
"--fibery-color-colorTextBannerSuccess": "rgb(127,192,182)",
|
|
1469
|
+
"--fibery-color-colorBgChargebeeInfoBox": "rgb(23,23,23)",
|
|
1470
|
+
"--fibery-color-newCommentHorizontalRulerColor": "rgb(237,150,151)",
|
|
1471
|
+
"--fibery-color-colorBgErrorMessage": "rgb(237,150,151)",
|
|
1472
|
+
"--fibery-color-colorBorderLogoGrid": "rgb(41,41,41)",
|
|
1473
|
+
"--fibery-color-colorBorderLogoGridSubtle": "rgb(41,41,41)",
|
|
1474
|
+
"--fibery-color-colorBorderLogoGridMedium": "rgb(41,41,41)",
|
|
1475
|
+
"--fibery-color-colorStrokeLogoDashed": "rgb(82,82,82)",
|
|
1476
|
+
"--fibery-color-colorBgLogoCardTransparent": "rgb(28,28,28)",
|
|
1477
|
+
"--fibery-color-colorBgLogoCardDark": "rgb(82,82,82)",
|
|
1478
|
+
"--fibery-color-colorBgLogoCardMedium": "rgb(41,41,41)",
|
|
1479
|
+
"--fibery-color-colorBgSkeletonFrom": "rgba(0, 0, 0, 0.05)",
|
|
1480
|
+
"--fibery-color-colorBgSkeletonTo": "rgba(0, 0, 0, 0.1)",
|
|
1481
|
+
"--fibery-color-colorShadowInsetEdge": "rgba(0, 0, 0, 0.05)",
|
|
1482
|
+
"--fibery-color-colorShadowBorder": "rgba(0, 0, 0, 0.1)",
|
|
1483
|
+
"--fibery-color-colorShadowElevation": "rgba(255, 255, 255, 0.1)",
|
|
1484
|
+
"--fibery-color-colorShadowOutline": "rgba(255, 255, 255, 0.2)",
|
|
1485
|
+
"--fibery-color-colorPlaceholder": "rgba(0, 0, 0, 0.4)",
|
|
1486
|
+
"--fibery-color-colorPlaceholderSubtle": "rgba(0, 0, 0, 0.25)",
|
|
1487
|
+
"--fibery-color-colorBgSubtleLight": "rgba(0, 0, 0, 0.05)",
|
|
1488
|
+
"--fibery-color-colorStrokeSurface": "rgb(0,0,0)",
|
|
1489
|
+
"--fibery-color-colorTextMilestone": "rgba(255, 255, 255, 0.5)",
|
|
1490
|
+
"--fibery-color-colorSpinnerIcon": "rgba(255, 255, 255, 0.9)",
|
|
1491
|
+
"--fibery-color-colorSpinnerBg": "rgba(255, 255, 255, 0.1)",
|
|
1492
|
+
"--fibery-color-colorBgLaneSubtle": "rgba(255, 255, 255, 0.05)",
|
|
1493
|
+
"--fibery-color-opacity15": "0.15",
|
|
1494
|
+
"--fibery-color-opacity20": "0.2",
|
|
1495
|
+
"--fibery-color-opacity25": "0.25",
|
|
1496
|
+
"--fibery-color-opacity30": "0.3",
|
|
1497
|
+
"--fibery-color-opacity40": "0.4",
|
|
1498
|
+
"--fibery-color-opacity50": "0.5",
|
|
1499
|
+
"--fibery-color-opacity60": "0.6",
|
|
1500
|
+
"--fibery-color-opacity65": "0.65",
|
|
1501
|
+
"--fibery-color-opacity70": "0.7",
|
|
1502
|
+
"--fibery-color-opacity75": "0.75",
|
|
1503
|
+
"--fibery-color-opacity80": "0.8",
|
|
1504
|
+
"--fibery-color-opacity85": "0.85",
|
|
1505
|
+
"--fibery-color-opacity90": "0.9",
|
|
1506
|
+
"--fibery-color-whiteA10": "rgba(0, 0, 0, 0.1)",
|
|
1507
|
+
"--fibery-color-whiteA40": "rgba(0, 0, 0, 0.4)",
|
|
1508
|
+
"--fibery-color-whiteA100": "rgb(0,0,0)",
|
|
1509
|
+
"--fibery-color-colorBgFileOverlay": "rgba(0, 0, 0, 0.6)",
|
|
1510
|
+
"--fibery-color-colorBgScrollFade": "rgba(0, 0, 0, 0.15)",
|
|
1511
|
+
"--fibery-color-colorStrokeSelectedOutline": "rgba(255, 255, 255, 0.75)",
|
|
1512
|
+
"--fibery-color-scrollbar": "rgba(61, 61, 61, 0.5)",
|
|
1513
|
+
},
|
|
1514
|
+
} as const;
|
|
1515
|
+
export const warmStyles = {
|
|
1516
|
+
light: {
|
|
1517
|
+
"--fibery-color-surfaceElevationS": "0 2px 4px 0 rgba(0,0,0,0.05)",
|
|
1518
|
+
"--fibery-color-surfaceElevationM": "0 4px 8px 0 rgba(0,0,0,0.09)",
|
|
1519
|
+
"--fibery-color-surfaceElevationL": "0 8px 12px 0 rgba(0,0,0,0.09)",
|
|
1520
|
+
"--fibery-color-shadow50": "0 0 0 1px rgba(27, 22, 17, 0.05)",
|
|
1521
|
+
"--fibery-color-shadow100": "0 1px 4px 0 rgba(27, 22, 17, 0.05)",
|
|
1522
|
+
"--fibery-color-shadow200": "0 2px 6px 0 rgba(27, 22, 17, 0.05)",
|
|
1523
|
+
"--fibery-color-shadow300": "0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15)",
|
|
1524
|
+
"--fibery-color-shadow400": "0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15)",
|
|
1525
|
+
"--fibery-color-shadow500": "0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15)",
|
|
1526
|
+
"--fibery-color-shadow600": "0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2)",
|
|
1527
|
+
"--fibery-color-actionMenuShadow":
|
|
1528
|
+
"0 0 2px 0 rgba(99, 94, 87, 0.3), 0 4px 6px 0 rgba(99, 94, 87, 0.05), 0 10px 26px 0 rgba(99, 94, 87, 0.15)",
|
|
1529
|
+
"--fibery-color-shadowPopup":
|
|
1530
|
+
"0 0 2px 0 rgba(99, 94, 87, 0.3), 0 4px 6px 0 rgba(99, 94, 87, 0.05), 0 10px 26px 0 rgba(99, 94, 87, 0.15)",
|
|
1531
|
+
"--fibery-color-shadowSidebar": "-3px 0 10px 0 rgba(125, 119, 112, 0.1)",
|
|
1532
|
+
"--fibery-color-highlightBgYellow": "rgb(254, 234, 191)",
|
|
1533
|
+
"--fibery-color-highlightFgYellow": "rgb(156, 125, 38)",
|
|
1534
|
+
"--fibery-color-highlightFgOnBgYellow": "rgb(130, 104, 30)",
|
|
1535
|
+
"--fibery-color-highlightBgGreen": "rgb(218, 245, 202)",
|
|
1536
|
+
"--fibery-color-highlightFgGreen": "rgb(93, 143, 39)",
|
|
1537
|
+
"--fibery-color-highlightFgOnBgGreen": "rgb(76, 119, 31)",
|
|
1538
|
+
"--fibery-color-highlightBgAquamarine": "rgb(196, 247, 221)",
|
|
1539
|
+
"--fibery-color-highlightFgAquamarine": "rgb(55, 145, 100)",
|
|
1540
|
+
"--fibery-color-highlightFgOnBgAquamarine": "rgb(43, 120, 82)",
|
|
1541
|
+
"--fibery-color-highlightBgAqua": "rgb(186, 248, 238)",
|
|
1542
|
+
"--fibery-color-highlightFgAqua": "rgb(46, 144, 127)",
|
|
1543
|
+
"--fibery-color-highlightFgOnBgAqua": "rgb(36, 119, 105)",
|
|
1544
|
+
"--fibery-color-highlightBgBlue": "rgb(223, 237, 255)",
|
|
1545
|
+
"--fibery-color-highlightFgBlue": "rgb(76, 129, 213)",
|
|
1546
|
+
"--fibery-color-highlightFgOnBgBlue": "rgb(60, 107, 177)",
|
|
1547
|
+
"--fibery-color-highlightBgPurple": "rgb(244, 231, 255)",
|
|
1548
|
+
"--fibery-color-highlightFgPurple": "rgb(176, 89, 226)",
|
|
1549
|
+
"--fibery-color-highlightFgOnBgPurple": "rgb(151, 63, 199)",
|
|
1550
|
+
"--fibery-color-highlightBgPink": "rgb(255, 229, 242)",
|
|
1551
|
+
"--fibery-color-highlightFgPink": "rgb(212, 73, 166)",
|
|
1552
|
+
"--fibery-color-highlightFgOnBgPink": "rgb(178, 56, 139)",
|
|
1553
|
+
"--fibery-color-highlightBgRed": "rgb(254, 230, 227)",
|
|
1554
|
+
"--fibery-color-highlightFgRed": "rgb(227, 70, 74)",
|
|
1555
|
+
"--fibery-color-highlightFgOnBgRed": "rgb(191, 50, 55)",
|
|
1556
|
+
"--fibery-color-highlightBgGrey": "rgb(236, 235, 235)",
|
|
1557
|
+
"--fibery-color-highlightFgGrey": "rgb(135, 128, 128)",
|
|
1558
|
+
"--fibery-color-highlightFgOnBgGrey": "rgb(111, 105, 104)",
|
|
1559
|
+
"--fibery-color-colorPickerCssFilter": "none",
|
|
1560
|
+
"--fibery-color-mode": "light",
|
|
1561
|
+
"--fibery-color-colorAccentBgSubtle": "rgba(0, 138, 169, 0.1)",
|
|
1562
|
+
"--fibery-color-colorAccentBgMild": "rgba(0, 138, 169, 0.15)",
|
|
1563
|
+
"--fibery-color-colorAccentBgMedium": "rgba(0, 138, 169, 0.2)",
|
|
1564
|
+
"--fibery-color-colorAccentBgStrong": "rgba(0, 138, 169, 0.3)",
|
|
1565
|
+
"--fibery-color-colorAccentBgBold": "rgba(0, 138, 169, 0.35)",
|
|
1566
|
+
"--fibery-color-colorAccentBgVivid": "rgba(0, 138, 169, 0.6)",
|
|
1567
|
+
"--fibery-color-colorAccentStroke": "rgba(0, 138, 169, 0.25)",
|
|
1568
|
+
"--fibery-color-colorAccentStrokeHover": "rgba(0, 138, 169, 0.4)",
|
|
1569
|
+
"--fibery-color-colorAccentStrokeFocus": "rgba(0, 138, 169, 0.5)",
|
|
1570
|
+
"--fibery-color-colorAccentSolid": "rgba(0, 138, 169, 0.8)",
|
|
1571
|
+
"--fibery-color-colorAccent": "rgb(0,138,169)",
|
|
1572
|
+
"--fibery-color-darkenPrimary": "rgb(46, 107, 126)",
|
|
1573
|
+
"--fibery-color-whiteColor": "rgb(255,253,250)",
|
|
1574
|
+
"--fibery-color-blackColor": "#1F1A18",
|
|
1575
|
+
"--fibery-color-mainBg": "rgb(250,244,236)",
|
|
1576
|
+
"--fibery-color-panelBg": "rgb(255,253,250)",
|
|
1577
|
+
"--fibery-color-panelContentBg": "rgb(253,246,239)",
|
|
1578
|
+
"--fibery-color-colorBgRelationContainer": "rgb(253,246,239)",
|
|
1579
|
+
"--fibery-color-colorAI": "#9B6FC1",
|
|
1580
|
+
"--fibery-color-colorBgAI": "rgba(155, 111, 193, 0.1)",
|
|
1581
|
+
"--fibery-color-colorBgAIFloatingLauncher": "rgb(255,251,244)",
|
|
1582
|
+
"--fibery-color-colorBgAIFloatingPanelContent": "rgb(255,251,244)",
|
|
1583
|
+
"--fibery-color-colorBgAISidebarContent": "rgb(255,251,244)",
|
|
1584
|
+
"--fibery-color-pageContentBg": "rgb(255,253,250)",
|
|
1585
|
+
"--fibery-color-colorBgPopup": "rgb(255,253,250)",
|
|
1586
|
+
"--fibery-color-menuBg": "rgb(250,244,236)",
|
|
1587
|
+
"--fibery-color-menuTextColor": "rgb(27,22,17)",
|
|
1588
|
+
"--fibery-color-menuItemHoverColor": "rgb(237,231,224)",
|
|
1589
|
+
"--fibery-color-menuSelectedTextColor": "rgb(253,246,239)",
|
|
1590
|
+
"--fibery-color-menuIconColor": "rgba(27, 22, 17, 0.7)",
|
|
1591
|
+
"--fibery-color-textColor": "rgb(27,22,17)",
|
|
1592
|
+
"--fibery-color-textSelectionColor": "rgba(0, 138, 169, 0.2)",
|
|
1593
|
+
"--fibery-color-accentTextColor": "rgb(125,119,112)",
|
|
1594
|
+
"--fibery-color-disabledTextColor": "rgb(163,157,150)",
|
|
1595
|
+
"--fibery-color-inversedTextColor": "rgb(250,244,236)",
|
|
1596
|
+
"--fibery-color-colorTextSecondary": "rgba(27, 22, 17, 0.7)",
|
|
1597
|
+
"--fibery-color-linkColor": "#5371B4",
|
|
1598
|
+
"--fibery-color-linkBorder": "0.5px solid rgba(83, 113, 180, 0.4)",
|
|
1599
|
+
"--fibery-color-linkHoverColor": "#5371B4",
|
|
1600
|
+
"--fibery-color-linkBorderHover": "0.5px solid rgba(83, 113, 180, 0.75)",
|
|
1601
|
+
"--fibery-color-codeColor": "rgb(211,62,75)",
|
|
1602
|
+
"--fibery-color-codeBgColor": "rgb(250,244,236)",
|
|
1603
|
+
"--fibery-color-codeBlockBgColor": "rgb(250,244,236)",
|
|
1604
|
+
"--fibery-color-addedDiffTextColor": "rgb(0,144,126)",
|
|
1605
|
+
"--fibery-color-removedDiffTextColor": "rgb(175,36,54)",
|
|
1606
|
+
"--fibery-color-entityNodeColor": "rgb(39,35,33)",
|
|
1607
|
+
"--fibery-color-entityNodeBorder": "0.5px solid rgba(39, 35, 33, 0.3)",
|
|
1608
|
+
"--fibery-color-entityNodeHoverColor": "rgb(65,60,58)",
|
|
1609
|
+
"--fibery-color-entityNodeBorderHover": "0.5px solid rgba(99, 94, 87, 0.8)",
|
|
1610
|
+
"--fibery-color-entityNodeBgColor": "rgb(253,246,239)",
|
|
1611
|
+
"--fibery-color-shortcutTextColor": "rgb(163,157,150)",
|
|
1612
|
+
"--fibery-color-shortcutBorder": "1px solid rgba(204, 198, 191, 0.5)",
|
|
1613
|
+
"--fibery-color-shortcutBorderColor": "rgba(204, 198, 191, 0.5)",
|
|
1614
|
+
"--fibery-color-inputBgColor": "rgb(255,253,250)",
|
|
1615
|
+
"--fibery-color-inputDisabledBgColor": "rgba(232, 226, 219, 0.3)",
|
|
1616
|
+
"--fibery-color-inputDisabledBorderColor": "0 0 0 1px rgba(232, 226, 219, 0.2)",
|
|
1617
|
+
"--fibery-color-inputCopyBgColor": "rgb(250,244,236)",
|
|
1618
|
+
"--fibery-color-inputBorderColor": "0 0 0 1px rgba(232, 226, 219, 0.7)",
|
|
1619
|
+
"--fibery-color-inputBorderHoverColor": "0 0 0 1px rgb(225,218,211)",
|
|
1620
|
+
"--fibery-color-inputBorderFocusColor": "0 0 0 1px rgb(204,198,191)",
|
|
1621
|
+
"--fibery-color-inputBorderBlendMode": "multiply",
|
|
1622
|
+
"--fibery-color-inputPlaceholderTextColor": "rgb(163,157,150)",
|
|
1623
|
+
"--fibery-color-inputErrorBorderColor": "0 0 0 1px rgb(175,36,54)",
|
|
1624
|
+
"--fibery-color-inputErrorBorderHoverColor": "0 0 0 1px rgba(175, 36, 54, 0.4)",
|
|
1625
|
+
"--fibery-color-inputErrorBorderFocusColor": "0 0 0 1px rgba(175, 36, 54, 0.25)",
|
|
1626
|
+
"--fibery-color-inputErrorBorderFocusShadow": "0 0 0 3px rgba(175, 36, 54, 0.25)",
|
|
1627
|
+
"--fibery-color-inputBorderWarningColor": "0 0 0 1px rgb(247,217,0)",
|
|
1628
|
+
"--fibery-color-buttonPrimaryColor": "rgb(0,138,169)",
|
|
1629
|
+
"--fibery-color-buttonColor": "rgb(125,119,112)",
|
|
1630
|
+
"--fibery-color-buttonPrimaryTextColor": "rgb(253,246,239)",
|
|
1631
|
+
"--fibery-color-checkboxColor": "rgba(27, 22, 17, 0.7)",
|
|
1632
|
+
"--fibery-color-colorBorderBlockQuote": "rgb(99,94,87)",
|
|
1633
|
+
"--fibery-color-colorBgActionsMenu": "rgb(255,253,250)",
|
|
1634
|
+
"--fibery-color-colorBgActionsMenuItemHover": "rgb(243,236,229)",
|
|
1635
|
+
"--fibery-color-colorBgActionsMenuItemSelected": "rgba(228, 241, 246, 0.8)",
|
|
1636
|
+
"--fibery-color-colorBgActionsMenuItemSelectedHover": "rgba(213, 233, 240, 0.8)",
|
|
1637
|
+
"--fibery-color-colorBgActionsMenuItemDangerHover": "rgba(211, 62, 75, 0.1)",
|
|
1638
|
+
"--fibery-color-colorBgActionsMenuItemDangerActive": "rgba(211, 62, 75, 0.8)",
|
|
1639
|
+
"--fibery-color-actionMenuBg": "rgb(255,253,250)",
|
|
1640
|
+
"--fibery-color-actionMenuInnerBg": "rgb(255,253,250)",
|
|
1641
|
+
"--fibery-color-actionMenuHover": "rgb(243,236,229)",
|
|
1642
|
+
"--fibery-color-actionMenuInnerHover": "rgb(243,236,229)",
|
|
1643
|
+
"--fibery-color-actionMenuButtonColor": "rgb(255,253,250)",
|
|
1644
|
+
"--fibery-color-actionMenuButtonHoverColor": "rgb(255,251,244)",
|
|
1645
|
+
"--fibery-color-actionMenuButtonShadow":
|
|
1646
|
+
"0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2)",
|
|
1647
|
+
"--fibery-color-actionMenuSeparatorColor": "rgba(31, 26, 24, 0.1)",
|
|
1648
|
+
"--fibery-color-separatorColor": "rgba(31, 26, 24, 0.1)",
|
|
1649
|
+
"--fibery-color-separatorColorDimmed": "rgba(31, 26, 24, 0.05)",
|
|
1650
|
+
"--fibery-color-separatorBreadcrumbsColor": "rgb(204,198,191)",
|
|
1651
|
+
"--fibery-color-borderSeparatorDimmed": "0.5px solid rgba(31, 26, 24, 0.05)",
|
|
1652
|
+
"--fibery-color-borderSeparator": "0.5px solid rgba(31, 26, 24, 0.1)",
|
|
1653
|
+
"--fibery-color-borderSeparatorMedium": "0.5px solid rgba(31, 26, 24, 0.15)",
|
|
1654
|
+
"--fibery-color-borderSeparatorStrong": "0.5px solid rgba(31, 26, 24, 0.25)",
|
|
1655
|
+
"--fibery-color-borderMedia": "0.5px solid rgba(0,0,0,0.14)",
|
|
1656
|
+
"--fibery-color-borderSolidSeparator": "1px solid rgba(31, 26, 24, 0.1)",
|
|
1657
|
+
"--fibery-color-borderSolidSeparatorDimmed": "1px solid rgba(31, 26, 24, 0.05)",
|
|
1658
|
+
"--fibery-color-borderSolidFilterGroup": "1px solid rgba(0,0,0,0.05)",
|
|
1659
|
+
"--fibery-color-borderSolidGrid": "1px solid rgb(237,231,224)",
|
|
1660
|
+
"--fibery-color-borderSolidOutlineNeutral": "1px solid rgb(204,198,191)",
|
|
1661
|
+
"--fibery-color-borderSolidMedia": "1px solid rgba(0,0,0,0.14)",
|
|
1662
|
+
"--fibery-color-borderSolidCommentBubble": "1px solid rgb(255,253,250)",
|
|
1663
|
+
"--fibery-color-borderBlockQuote": "3px solid rgb(99,94,87)",
|
|
1664
|
+
"--fibery-color-shadowCardDefault": "0 0 0 1px rgba(232, 226, 219, 0.7), 0 1px 4px 0 rgba(27, 22, 17, 0.05)",
|
|
1665
|
+
"--fibery-color-shadowCardHover": "0 0 0 1px rgba(232, 226, 219, 0.7), 0 2px 6px 0 rgba(27, 22, 17, 0.05)",
|
|
1666
|
+
"--fibery-color-shadowCardInset": "inset 0 0 0 1px rgba(232, 226, 219, 0.7)",
|
|
1667
|
+
"--fibery-color-iconColor": "rgba(27, 22, 17, 0.7)",
|
|
1668
|
+
"--fibery-color-appIconColor": "rgba(253, 246, 239, 0.9)",
|
|
1669
|
+
"--fibery-color-appIconBgColor": "rgba(255, 251, 244, 0.9)",
|
|
1670
|
+
"--fibery-color-mentionBgColor": "rgba(225, 218, 211, 0.3)",
|
|
1671
|
+
"--fibery-color-colorBgSelectMenu": "rgb(255,251,244)",
|
|
1672
|
+
"--fibery-color-shadowSelectMenu":
|
|
1673
|
+
"0 0 2px 0 rgba(99, 94, 87, 0.3), 0 4px 6px 0 rgba(99, 94, 87, 0.05), 0 10px 26px 0 rgba(99, 94, 87, 0.15)",
|
|
1674
|
+
"--fibery-color-colorBgListItemGeneral": "rgba(255, 255, 255, 0)",
|
|
1675
|
+
"--fibery-color-colorBgListItemGeneralHover": "rgb(250,244,236)",
|
|
1676
|
+
"--fibery-color-colorBgListItemGeneralFocus": "rgb(243,236,229)",
|
|
1677
|
+
"--fibery-color-colorBgListItemGeneralSelected": "rgb(238,247,249)",
|
|
1678
|
+
"--fibery-color-colorBgListItemGeneralSelectedHover": "rgb(228,241,246)",
|
|
1679
|
+
"--fibery-color-colorBgListItemGeneralSelectedFocus": "rgb(228,241,246)",
|
|
1680
|
+
"--fibery-color-colorBgListItemGeneralDisabled": "rgba(255, 255, 255, 0)",
|
|
1681
|
+
"--fibery-color-colorTextListItemGeneralDisabled": "rgb(163,157,150)",
|
|
1682
|
+
"--fibery-color-colorBgListItemGeneralSelectedDisabled": "rgb(213,233,240)",
|
|
1683
|
+
"--fibery-color-opacityListItemGeneralDisabled": "0.4",
|
|
1684
|
+
"--fibery-color-colorSearchSubtitle": "rgb(163,157,150)",
|
|
1685
|
+
"--fibery-color-colorBgSearchRowHover": "rgb(243,236,229)",
|
|
1686
|
+
"--fibery-color-colorBgSearchRowCreateHover": "rgb(228,241,246)",
|
|
1687
|
+
"--fibery-color-opacitySearchItemDone": "0.4",
|
|
1688
|
+
"--fibery-color-colorBgEntityBoxDefault": "rgb(255,253,250)",
|
|
1689
|
+
"--fibery-color-shadowStrokeEntityBoxDefault": "0 0 0 1px rgb(237,231,224)",
|
|
1690
|
+
"--fibery-color-shadowEntityBoxDefault": "0 2px 4px 0 rgba(27, 22, 17, 0.05)",
|
|
1691
|
+
"--fibery-color-colorBgEntityBoxDefaultHover": "rgb(255,253,250)",
|
|
1692
|
+
"--fibery-color-shadowEntityBoxDefaultHover": "0 4px 8px 0 rgba(27, 22, 17, 0.1)",
|
|
1693
|
+
"--fibery-color-colorBgEntityBoxDefaultFocus": "rgb(255,253,250)",
|
|
1694
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocus": "rgb(0,138,169)",
|
|
1695
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocus": "0 0 0 2px rgba(0, 138, 169, 0.4)",
|
|
1696
|
+
"--fibery-color-colorBgEntityBoxDefaultFocusHover": "rgb(255,253,250)",
|
|
1697
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocusHover": "rgb(0,138,169)",
|
|
1698
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocusHover": "0 0 0 2px rgba(0, 138, 169, 0.6)",
|
|
1699
|
+
"--fibery-color-opacityEntityBoxDefaultDrag": "0.4",
|
|
1700
|
+
"--fibery-color-shadowEntityBoxDefaultDrag": "0 8px 12px 0 rgba(27, 22, 17, 0.1)",
|
|
1701
|
+
"--fibery-color-colorBgEntityBoxSelected": "rgb(249,252,253)",
|
|
1702
|
+
"--fibery-color-shadowStrokeEntityBoxSelected":
|
|
1703
|
+
"0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4)",
|
|
1704
|
+
"--fibery-color-colorBgEntityBoxSelectedHover": "rgb(238,247,249)",
|
|
1705
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedHover":
|
|
1706
|
+
"0 0 0 1px rgba(0, 138, 169, 0.6), 0 0 0 3px rgba(0, 138, 169, 0.4)",
|
|
1707
|
+
"--fibery-color-colorBgEntityBoxSelectedDrag": "rgb(238,247,249)",
|
|
1708
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedDrag":
|
|
1709
|
+
"0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4)",
|
|
1710
|
+
"--fibery-color-opacityEntityBoxDisabled": "0.65",
|
|
1711
|
+
"--fibery-color-opacityEntityBoxDisabledHover": "0.75",
|
|
1712
|
+
"--fibery-color-opacityEntityBoxDisabledFocus": "0.75",
|
|
1713
|
+
"--fibery-color-opacityEntityBoxDisabledDrag": "0.4",
|
|
1714
|
+
"--fibery-color-entityCardBgColor": "rgb(255,253,250)",
|
|
1715
|
+
"--fibery-color-entityCardSelectedColor": "rgba(253, 246, 239, 0.8)",
|
|
1716
|
+
"--fibery-color-entityCardHoverColor": "rgba(253, 246, 239, 0.8)",
|
|
1717
|
+
"--fibery-color-entityCardDoneColor": "rgba(243, 236, 229, 0.3)",
|
|
1718
|
+
"--fibery-color-entityCardShadow": "0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2)",
|
|
1719
|
+
"--fibery-color-entityCardShadowHover":
|
|
1720
|
+
"0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2)",
|
|
1721
|
+
"--fibery-color-colorBgSegmentedControl": "rgba(237, 231, 224, 0.8)",
|
|
1722
|
+
"--fibery-color-colorBgMenuHeaderAvatar": "rgb(255,253,250)",
|
|
1723
|
+
"--fibery-color-shadowMenuHeaderAvatar": "0 1px 4px 0 rgba(99, 94, 87, 0.1), 0 0 0 0.5px rgba(237, 231, 224, 0.5)",
|
|
1724
|
+
"--fibery-color-opacityMenuItemDragged": "0.4",
|
|
1725
|
+
"--fibery-color-colorBgMenuItemSelectedDragged": "rgb(194,222,232)",
|
|
1726
|
+
"--fibery-color-colorTextMenuItem": "rgba(27, 22, 17, 0.9)",
|
|
1727
|
+
"--fibery-color-colorBgMenuItem": "rgba(255, 255, 255, 0)",
|
|
1728
|
+
"--fibery-color-colorBgMenuItemHover": "rgb(237,231,224)",
|
|
1729
|
+
"--fibery-color-colorBgMenuItemFocus": "rgb(232,226,219)",
|
|
1730
|
+
"--fibery-color-colorBgMenuItemSelected": "rgba(213, 233, 240, 0.8)",
|
|
1731
|
+
"--fibery-color-colorBgMenuItemSelectedHover": "rgba(194, 222, 232, 0.7)",
|
|
1732
|
+
"--fibery-color-colorBgPinnedFieldsLabel": "rgb(99,94,87)",
|
|
1733
|
+
"--fibery-color-colorBgObjectEditorSeparator": "rgb(27,22,17)",
|
|
1734
|
+
"--fibery-color-colorBgMenuItemSelectedFocused": "rgb(194,222,232)",
|
|
1735
|
+
"--fibery-color-colorBgFieldEditorContainer": "rgb(253,246,239)",
|
|
1736
|
+
"--fibery-color-colorBgFieldEditorLinkEqualSign": "rgb(232,226,219)",
|
|
1737
|
+
"--fibery-color-allowedDropColor": "rgb(243,236,229)",
|
|
1738
|
+
"--fibery-color-relationViewBgColor": "rgb(253,246,239)",
|
|
1739
|
+
"--fibery-color-mySpaceIconColor": "rgb(129, 133, 137)",
|
|
1740
|
+
"--fibery-color-mySpaceIconBg": "rgba(112, 132, 153, 0.2)",
|
|
1741
|
+
"--fibery-color-privateIconColor": "rgb(116, 168, 101)",
|
|
1742
|
+
"--fibery-color-privateIconBg": "rgba(116, 168, 101, 0.2)",
|
|
1743
|
+
"--fibery-color-favoritesIconColor": "rgb(235, 169, 68)",
|
|
1744
|
+
"--fibery-color-favoritesIconBg": "rgba(235, 169, 68, 0.2)",
|
|
1745
|
+
"--fibery-color-swatchDefault": "#1FBED3",
|
|
1746
|
+
"--fibery-color-unitBg": "rgb(250,244,236)",
|
|
1747
|
+
"--fibery-color-unitBgHover": "rgb(243,236,229)",
|
|
1748
|
+
"--fibery-color-colorBgBadgeNeutral": "rgba(237, 231, 224, 0.7)",
|
|
1749
|
+
"--fibery-color-colorBgBadgeAccent": "rgba(213, 233, 240, 0.7)",
|
|
1750
|
+
"--fibery-color-colorBgBadgeSuccess": "rgb(214,234,230)",
|
|
1751
|
+
"--fibery-color-colorBgBadgeWarning": "rgb(255,242,160)",
|
|
1752
|
+
"--fibery-color-colorBgBadgeError": "rgb(253,220,219)",
|
|
1753
|
+
"--fibery-color-colorTextBadgeNeutral": "rgb(99,94,87)",
|
|
1754
|
+
"--fibery-color-colorTextBadgeAccent": "rgb(0,111,139)",
|
|
1755
|
+
"--fibery-color-colorTextBadgeSuccess": "rgb(0,116,101)",
|
|
1756
|
+
"--fibery-color-colorTextBadgeWarning": "rgb(130,113,0)",
|
|
1757
|
+
"--fibery-color-colorTextBadgeError": "rgb(175,36,54)",
|
|
1758
|
+
"--fibery-color-badgeBgColor": "rgba(121, 118, 113, 0.2)",
|
|
1759
|
+
"--fibery-color-tooltipBgColor": "rgb(50,45,43)",
|
|
1760
|
+
"--fibery-color-todayMarkerColor": "rgb(237,150,150)",
|
|
1761
|
+
"--fibery-color-viewBgOverlayColor": "rgba(204, 198, 191, 0.2)",
|
|
1762
|
+
"--fibery-color-floatEditorMenuBg": "rgb(255,251,244)",
|
|
1763
|
+
"--fibery-color-floatEditorActiveColor": "rgb(0,111,139)",
|
|
1764
|
+
"--fibery-color-commentColor": "rgba(248, 231, 135, 0.6)",
|
|
1765
|
+
"--fibery-color-cellBackgroundColor": "rgb(253,246,239)",
|
|
1766
|
+
"--fibery-color-cellBackgroundHoverColor": "rgba(232, 226, 219, 0.3)",
|
|
1767
|
+
"--fibery-color-cellBorderColor": "rgba(204, 198, 191, 0.5)",
|
|
1768
|
+
"--fibery-color-cellPinnedBorderColor": "rgba(204, 198, 191, 0.7)",
|
|
1769
|
+
"--fibery-color-tableRowWarningColor": "rgba(248, 231, 135, 0.6)",
|
|
1770
|
+
"--fibery-color-errorBgColor": "rgba(211, 62, 75, 0.2)",
|
|
1771
|
+
"--fibery-color-errorTextColor": "rgb(175,36,54)",
|
|
1772
|
+
"--fibery-color-errorButtonColor": "rgb(211,62,75)",
|
|
1773
|
+
"--fibery-color-warningBgColor": "rgba(248, 231, 135, 0.6)",
|
|
1774
|
+
"--fibery-color-warningButtonColor": "rgb(130,113,0)",
|
|
1775
|
+
"--fibery-color-infoBox": "rgba(255, 247, 185, 0.5)",
|
|
1776
|
+
"--fibery-color-appCardBgColor": "rgb(255,253,250)",
|
|
1777
|
+
"--fibery-color-appCardHoverColor": "rgba(255, 251, 244, 0.95)",
|
|
1778
|
+
"--fibery-color-modalBg": "rgba(99, 94, 87, 0.2)",
|
|
1779
|
+
"--fibery-color-modalContentBg": "rgb(255,253,250)",
|
|
1780
|
+
"--fibery-color-progressIconBg": "rgba(0,0,0,0.14)",
|
|
1781
|
+
"--fibery-color-progressIconFill": "rgba(0,0,0,0.57)",
|
|
1782
|
+
"--fibery-color-formBg": "rgb(253,246,239)",
|
|
1783
|
+
"--fibery-color-formHeaderShadow": "0 0 6px 0 rgba(125, 119, 112, 0.1)",
|
|
1784
|
+
"--fibery-color-formEditorFieldBg": "rgb(250,244,236)",
|
|
1785
|
+
"--fibery-color-filterGroup1Bg": "rgb(253,246,239)",
|
|
1786
|
+
"--fibery-color-filterGroup2Bg": "rgb(250,244,236)",
|
|
1787
|
+
"--fibery-color-filterGroupBorder": "rgba(0,0,0,0.05)",
|
|
1788
|
+
"--fibery-color-colorBgNotificationHover": "rgb(250,244,236)",
|
|
1789
|
+
"--fibery-color-colorBgNotificationSelected": "rgb(238,247,249)",
|
|
1790
|
+
"--fibery-color-colorBgNotificationSelectedHover": "rgb(228,241,246)",
|
|
1791
|
+
"--fibery-color-disabledInversedTextColor": "rgba(31, 26, 24, 0.25)",
|
|
1792
|
+
"--fibery-color-success": "rgb(0,144,126)",
|
|
1793
|
+
"--fibery-color-danger": "rgb(211,62,75)",
|
|
1794
|
+
"--fibery-color-active": "rgb(211,62,75)",
|
|
1795
|
+
"--fibery-color-warning": "rgb(247,217,0)",
|
|
1796
|
+
"--fibery-color-cardBg": "rgb(255,253,250)",
|
|
1797
|
+
"--fibery-color-selectedImageBorder": "rgba(0,0,0,0.22)",
|
|
1798
|
+
"--fibery-color-transparent": "rgba(255, 255, 255, 0)",
|
|
1799
|
+
"--fibery-color-progressBg": "rgb(243,236,229)",
|
|
1800
|
+
"--fibery-color-progressText": "rgb(99,94,87)",
|
|
1801
|
+
"--fibery-color-progressFillBg": "rgb(99,94,87)",
|
|
1802
|
+
"--fibery-color-progressFillText": "rgb(255,253,250)",
|
|
1803
|
+
"--fibery-color-progressBarFillNeutral": "rgba(163, 157, 150, 0.2)",
|
|
1804
|
+
"--fibery-color-progressBarFill": "rgb(0,138,169)",
|
|
1805
|
+
"--fibery-color-progressBarBg": "rgba(0, 138, 169, 0.25)",
|
|
1806
|
+
"--fibery-color-colorPickerSwatchBorder": "rgba(0,0,0,0.14)",
|
|
1807
|
+
"--fibery-color-colorBorderRichTextMedia": "rgba(0,0,0,0.14)",
|
|
1808
|
+
"--fibery-color-richTextTableBorder": "rgba(0,0,0,0.09)",
|
|
1809
|
+
"--fibery-color-colorBgDropLine": "rgb(132,188,206)",
|
|
1810
|
+
"--fibery-color-viewBg": "rgb(255,251,244)",
|
|
1811
|
+
"--fibery-color-viewSecondaryBg": "rgb(253,246,239)",
|
|
1812
|
+
"--fibery-color-viewHighlightBg": "rgb(238,247,249)",
|
|
1813
|
+
"--fibery-color-boardBg": "rgb(255,251,244)",
|
|
1814
|
+
"--fibery-color-boardBgWithOpacity80": "rgba(255, 251, 244, 0.8)",
|
|
1815
|
+
"--fibery-color-boardAxisBgHover": "rgb(243,236,229)",
|
|
1816
|
+
"--fibery-color-gridHeaderBgColor": "rgb(253,246,239)",
|
|
1817
|
+
"--fibery-color-gridHeaderHoverBgColor": "rgb(250,244,236)",
|
|
1818
|
+
"--fibery-color-gridHeaderTextColor": "rgb(125,119,112)",
|
|
1819
|
+
"--fibery-color-gridCellBgColor": "rgb(255,253,250)",
|
|
1820
|
+
"--fibery-color-gridCellBorderColor": "rgb(237,231,224)",
|
|
1821
|
+
"--fibery-color-gridDisabledCellBgColor": "rgb(253,246,239)",
|
|
1822
|
+
"--fibery-color-gridSelectedCellBgColor": "rgb(238,247,249)",
|
|
1823
|
+
"--fibery-color-gridHighlightedCellBgColor": "rgb(228,241,246)",
|
|
1824
|
+
"--fibery-color-gridSelectedCellBorderColor": "rgb(194,222,232)",
|
|
1825
|
+
"--fibery-color-gridSelectedPinnedCellBorderColor": "rgb(166,206,219)",
|
|
1826
|
+
"--fibery-color-gridDisabledSelectedCellBgColor": "rgb(228,241,246)",
|
|
1827
|
+
"--fibery-color-gridActiveCellBorderColor": "rgb(132,188,206)",
|
|
1828
|
+
"--fibery-color-timelineEntityHandleColor": "rgb(166,206,219)",
|
|
1829
|
+
"--fibery-color-timelineDependencyHoverBgColor": "rgb(132,188,206)",
|
|
1830
|
+
"--fibery-color-timelineDependencyOverlapBgColor": "rgb(211,62,75)",
|
|
1831
|
+
"--fibery-color-timelineDependencyOverlapHoverBgColor": "rgb(175,36,54)",
|
|
1832
|
+
"--fibery-color-timelineCellBgColor": "rgb(255,251,244)",
|
|
1833
|
+
"--fibery-color-timelineCellWeekendBgColor": "rgb(253,246,239)",
|
|
1834
|
+
"--fibery-color-timelineCellTodayBgColor": "rgb(228,241,246)",
|
|
1835
|
+
"--fibery-color-timelineCreateEntityPlaceholderBgColor": "rgba(99, 94, 87, 0.2)",
|
|
1836
|
+
"--fibery-color-colorBgButtonSolidAccentDefault": "rgb(0,138,169)",
|
|
1837
|
+
"--fibery-color-colorBgButtonSolidAccentHover": "rgb(0,111,139)",
|
|
1838
|
+
"--fibery-color-colorBgButtonSolidNeutralDefault": "rgb(27,22,17)",
|
|
1839
|
+
"--fibery-color-colorBgButtonSolidNeutralHover": "rgba(27, 22, 17, 0.85)",
|
|
1840
|
+
"--fibery-color-colorBgButtonSolidDestructiveDefault": "rgb(211,62,75)",
|
|
1841
|
+
"--fibery-color-colorBgButtonSolidDestructiveHover": "rgb(175,36,54)",
|
|
1842
|
+
"--fibery-color-colorTextButtonSolidAccent": "rgb(255,253,250)",
|
|
1843
|
+
"--fibery-color-colorTextButtonSolidAccentActive": "rgba(255, 253, 250, 0.8)",
|
|
1844
|
+
"--fibery-color-colorTextButtonSolidNeutral": "rgb(255,253,250)",
|
|
1845
|
+
"--fibery-color-colorTextButtonSolidNeutralActive": "rgb(255,253,250)",
|
|
1846
|
+
"--fibery-color-colorTextButtonSolidDestructive": "rgb(255,253,250)",
|
|
1847
|
+
"--fibery-color-colorTextButtonSolidDestructiveActive": "rgba(255, 253, 250, 0.8)",
|
|
1848
|
+
"--fibery-color-colorIconButtonSolidAccent": "rgb(255,253,250)",
|
|
1849
|
+
"--fibery-color-colorIconButtonSolidNeutral": "rgb(255,253,250)",
|
|
1850
|
+
"--fibery-color-colorIconButtonSolidDestructive": "rgb(255,253,250)",
|
|
1851
|
+
"--fibery-color-colorBorderButtonOutlineAccentDefault": "rgb(132,188,206)",
|
|
1852
|
+
"--fibery-color-colorBorderButtonOutlineNeutralDefault": "rgb(204,198,191)",
|
|
1853
|
+
"--fibery-color-colorBorderButtonOutlineDestructiveDefault": "rgb(244,179,178)",
|
|
1854
|
+
"--fibery-color-colorBgButtonOutlineAccentDefault": "rgb(255,253,250)",
|
|
1855
|
+
"--fibery-color-colorBgButtonOutlineAccentHover": "rgb(238,247,249)",
|
|
1856
|
+
"--fibery-color-colorBgButtonOutlineNeutralDefault": "rgb(255,253,250)",
|
|
1857
|
+
"--fibery-color-colorBgButtonOutlineNeutralHover": "rgb(243,236,229)",
|
|
1858
|
+
"--fibery-color-colorBgButtonOutlineDestructiveDefault": "rgb(255,253,250)",
|
|
1859
|
+
"--fibery-color-colorBgButtonOutlineDestructiveHover": "rgb(255,232,231)",
|
|
1860
|
+
"--fibery-color-colorTextButtonOutlineAccent": "rgb(0,111,139)",
|
|
1861
|
+
"--fibery-color-colorTextButtonOutlineAccentActive": "rgba(0, 111, 139, 0.8)",
|
|
1862
|
+
"--fibery-color-colorTextButtonOutlineNeutral": "rgb(99,94,87)",
|
|
1863
|
+
"--fibery-color-colorTextButtonOutlineNeutralActive": "rgba(27, 22, 17, 0.8)",
|
|
1864
|
+
"--fibery-color-colorTextButtonOutlineDestructive": "rgb(175,36,54)",
|
|
1865
|
+
"--fibery-color-colorTextButtonOutlineDestructiveActive": "rgba(175, 36, 54, 0.8)",
|
|
1866
|
+
"--fibery-color-colorIconButtonOutlineAccent": "rgb(0,111,139)",
|
|
1867
|
+
"--fibery-color-colorIconButtonOutlineNeutral": "rgb(99,94,87)",
|
|
1868
|
+
"--fibery-color-colorIconButtonOutlineDestructive": "rgb(175,36,54)",
|
|
1869
|
+
"--fibery-color-colorBgButtonSoftAccentDefault": "rgb(238,247,249)",
|
|
1870
|
+
"--fibery-color-colorBgButtonSoftAccentHover": "rgb(213,233,240)",
|
|
1871
|
+
"--fibery-color-colorBgButtonSoftNeutralDefault": "rgb(250,244,236)",
|
|
1872
|
+
"--fibery-color-colorBgButtonSoftNeutralHover": "rgb(225,218,211)",
|
|
1873
|
+
"--fibery-color-colorBgButtonSoftDestructiveDefault": "rgb(255,232,231)",
|
|
1874
|
+
"--fibery-color-colorBgButtonSoftDestructiveHover": "rgb(250,203,202)",
|
|
1875
|
+
"--fibery-color-colorTextButtonSoftAccent": "rgb(0,111,139)",
|
|
1876
|
+
"--fibery-color-colorTextButtonSoftAccentActive": "rgba(0, 111, 139, 0.8)",
|
|
1877
|
+
"--fibery-color-colorTextButtonSoftNeutral": "rgb(99,94,87)",
|
|
1878
|
+
"--fibery-color-colorTextButtonSoftNeutralActive": "rgba(99, 94, 87, 0.8)",
|
|
1879
|
+
"--fibery-color-colorTextButtonSoftDestructive": "rgb(175,36,54)",
|
|
1880
|
+
"--fibery-color-colorTextButtonSoftDestructiveActive": "rgba(175, 36, 54, 0.8)",
|
|
1881
|
+
"--fibery-color-colorIconButtonSoftAccent": "rgb(0,111,139)",
|
|
1882
|
+
"--fibery-color-colorIconButtonSoftNeutral": "rgb(99,94,87)",
|
|
1883
|
+
"--fibery-color-colorIconButtonSoftDestructive": "rgb(175,36,54)",
|
|
1884
|
+
"--fibery-color-colorBgButtonGhostAccentDefault": "rgba(255, 255, 255, 0)",
|
|
1885
|
+
"--fibery-color-colorBgButtonGhostAccentHover": "rgba(228, 241, 246, 0.8)",
|
|
1886
|
+
"--fibery-color-colorBgButtonGhostNeutralDefault": "rgba(255, 255, 255, 0)",
|
|
1887
|
+
"--fibery-color-colorBgButtonGhostNeutralHover": "rgba(225, 218, 211, 0.5)",
|
|
1888
|
+
"--fibery-color-colorBgButtonGhostDestructiveDefault": "rgba(255, 255, 255, 0)",
|
|
1889
|
+
"--fibery-color-colorBgButtonGhostDestructiveHover": "rgb(255,232,231)",
|
|
1890
|
+
"--fibery-color-colorTextButtonGhostAccent": "rgb(0,111,139)",
|
|
1891
|
+
"--fibery-color-colorTextButtonGhostAccentActive": "rgba(0, 111, 139, 0.8)",
|
|
1892
|
+
"--fibery-color-colorTextButtonGhostNeutral": "rgb(99,94,87)",
|
|
1893
|
+
"--fibery-color-colorTextButtonGhostNeutralActive": "rgba(99, 94, 87, 0.8)",
|
|
1894
|
+
"--fibery-color-colorTextButtonGhostDestructive": "rgb(175,36,54)",
|
|
1895
|
+
"--fibery-color-colorTextButtonGhostDestructiveActive": "rgba(175, 36, 54, 0.8)",
|
|
1896
|
+
"--fibery-color-colorIconButtonGhostAccent": "rgb(0,111,139)",
|
|
1897
|
+
"--fibery-color-colorIconButtonGhostNeutral": "rgb(99,94,87)",
|
|
1898
|
+
"--fibery-color-colorIconButtonGhostDestructive": "rgb(175,36,54)",
|
|
1899
|
+
"--fibery-color-colorBorderAccentFocusRing": "rgba(0, 138, 169, 0.3)",
|
|
1900
|
+
"--fibery-color-colorBorderNeutralFocusRing": "rgba(163, 157, 150, 0.3)",
|
|
1901
|
+
"--fibery-color-colorBorderDestructiveFocusRing": "rgba(211, 62, 75, 0.3)",
|
|
1902
|
+
"--fibery-color-colorBgReactionsDefault": "rgb(255,253,250)",
|
|
1903
|
+
"--fibery-color-colorBgReactionsHover": "rgb(250,244,236)",
|
|
1904
|
+
"--fibery-color-colorBorderReactionsHover": "rgb(204,198,191)",
|
|
1905
|
+
"--fibery-color-colorBgReactionsSelectedDefault": "rgb(238,247,249)",
|
|
1906
|
+
"--fibery-color-colorBorderReactionsSelectedDefault": "rgb(132,188,206)",
|
|
1907
|
+
"--fibery-color-colorBgReactionsSelectedHover": "rgb(249,252,253)",
|
|
1908
|
+
"--fibery-color-colorBorderReactionsSelectedHover": "rgb(0,138,169)",
|
|
1909
|
+
"--fibery-color-colorTextReactionsSelected": "rgb(0,126,159)",
|
|
1910
|
+
"--fibery-color-colorBgToastDefault": "rgb(255,251,244)",
|
|
1911
|
+
"--fibery-color-colorBgDbTabHover": "rgb(250,244,236)",
|
|
1912
|
+
"--fibery-color-colorBgDbTabFocus": "rgb(232,226,219)",
|
|
1913
|
+
"--fibery-color-colorBgTabHover": "rgba(99, 94, 87, 0.1)",
|
|
1914
|
+
"--fibery-color-colorBgMessageContainer": "rgb(250,244,236)",
|
|
1915
|
+
"--fibery-color-colorBgMessageContainerHover": "rgb(243,236,229)",
|
|
1916
|
+
"--fibery-color-colorBgEntityAvatarDefault": "rgb(250,252,253)",
|
|
1917
|
+
"--fibery-color-colorBgEntityAvatarHover": "rgb(238,247,249)",
|
|
1918
|
+
"--fibery-color-colorTextEntityAvatarDefault": "rgb(132,188,206)",
|
|
1919
|
+
"--fibery-color-colorTextEntityAvatarHover": "rgb(0,138,169)",
|
|
1920
|
+
"--fibery-color-colorBgMessageHighlighted": "rgb(255,253,250)",
|
|
1921
|
+
"--fibery-color-colorBgEditorImageZoomed": "rgb(250,244,236)",
|
|
1922
|
+
"--fibery-color-colorMermaidPrimaryColor": "rgb(253,246,239)",
|
|
1923
|
+
"--fibery-color-colorMermaidPrimaryBorderColor": "rgb(163,157,150)",
|
|
1924
|
+
"--fibery-color-colorMermaidLineColor": "rgb(125,119,112)",
|
|
1925
|
+
"--fibery-color-colorBgWhiteboard": "rgb(255,253,250)",
|
|
1926
|
+
"--fibery-color-colorGridDotWhiteboard": "rgb(232,226,219)",
|
|
1927
|
+
"--fibery-color-colorSelectionWhiteboardBorderEnabled": "rgb(132,188,206)",
|
|
1928
|
+
"--fibery-color-colorHighlightWhiteboardSelection": "rgb(132,188,206)",
|
|
1929
|
+
"--fibery-color-colorHighlightWhiteboardSelectionLocked": "rgba(163, 157, 150, 0.5)",
|
|
1930
|
+
"--fibery-color-colorSelectionWhiteboardBorderDisabled": "rgba(163, 157, 150, 0.5)",
|
|
1931
|
+
"--fibery-color-colorPlaceholderWhiteboardDefault": "rgba(132, 188, 206, 0.2)",
|
|
1932
|
+
"--fibery-color-colorLinkPointWhiteboardDefault": "rgb(132,188,206)",
|
|
1933
|
+
"--fibery-color-colorLinkPointWhiteboardFillDefault": "rgb(255,253,250)",
|
|
1934
|
+
"--fibery-color-colorMapWhiteboardPreviewDefault": "rgba(132, 188, 206, 0.4)",
|
|
1935
|
+
"--fibery-color-colorCardWhiteboardShadowDefault": "rgba(99, 94, 87, 0.05)",
|
|
1936
|
+
"--fibery-color-colorCardWhiteboardBgDefault": "rgb(255,253,250)",
|
|
1937
|
+
"--fibery-color-colorCardWhiteboardBorderDefault": "rgba(27, 22, 17, 0.2)",
|
|
1938
|
+
"--fibery-color-colorUnitHeaderWhiteboardDefault": "rgba(27, 22, 17, 0.6)",
|
|
1939
|
+
"--fibery-color-colorUnitWhiteboardBgDefault": "rgb(250,244,236)",
|
|
1940
|
+
"--fibery-color-colorUnitWhiteboardBorderDefault": "rgba(27, 22, 17, 0.2)",
|
|
1941
|
+
"--fibery-color-colorSectionWhiteboardBgInactive": "rgb(253,246,239)",
|
|
1942
|
+
"--fibery-color-colorSectionWhiteboardBorderInactive": "rgb(232,226,219)",
|
|
1943
|
+
"--fibery-color-colorEmbedWhiteboardEditBorder": "rgba(135, 191, 179, 0.9)",
|
|
1944
|
+
"--fibery-color-colorTextWhiteboardDefault": "rgb(27,22,17)",
|
|
1945
|
+
"--fibery-color-colorTextWhiteboardDisabled": "rgb(163,157,150)",
|
|
1946
|
+
"--fibery-color-colorTextWhiteboardAccent": "rgba(27, 22, 17, 0.6)",
|
|
1947
|
+
"--fibery-color-colorTextWhiteboardInversedDefault": "rgb(255,253,250)",
|
|
1948
|
+
"--fibery-color-instrumentsMenuBg": "rgb(255,253,250)",
|
|
1949
|
+
"--fibery-color-instrumentsMenuShadow":
|
|
1950
|
+
"0 0 1px 0 rgba(99, 94, 87, 0.2), 0 4px 6px 0 rgba(99, 94, 87, 0.05), 0 3px 12px 0 rgba(99, 94, 87, 0.1)",
|
|
1951
|
+
"--fibery-color-commentBubbleBg": "rgb(255,253,250)",
|
|
1952
|
+
"--fibery-color-commentsPanelShadow":
|
|
1953
|
+
"0 0 1px 0 rgba(99, 94, 87, 0.2), 0 4px 6px 0 rgba(99, 94, 87, 0.05), 0 3px 12px 0 rgba(99, 94, 87, 0.1)",
|
|
1954
|
+
"--fibery-color-searchFiltersBg": "rgb(255,251,244)",
|
|
1955
|
+
"--fibery-color-selectedColorBorder": "rgba(232, 226, 219, 0.25)",
|
|
1956
|
+
"--fibery-color-colorBgSegmentedControlDefault": "rgb(250,244,236)",
|
|
1957
|
+
"--fibery-color-colorBgSegmentedControlActive": "rgb(255,251,244)",
|
|
1958
|
+
"--fibery-color-colorBgSegmentedControlHover": "rgb(237,231,224)",
|
|
1959
|
+
"--fibery-color-colorBorderSegmentedControlDefault": "rgb(232,226,219)",
|
|
1960
|
+
"--fibery-color-colorBgBannerNeutral": "rgb(250,244,236)",
|
|
1961
|
+
"--fibery-color-colorBgBannerPrimary": "rgb(238,247,249)",
|
|
1962
|
+
"--fibery-color-colorBgBannerWarning": "rgb(255,250,207)",
|
|
1963
|
+
"--fibery-color-colorBgBannerError": "rgb(255,241,240)",
|
|
1964
|
+
"--fibery-color-colorBgBannerSuccess": "rgb(239,247,245)",
|
|
1965
|
+
"--fibery-color-colorIconBannerNeutral": "rgb(27,22,17)",
|
|
1966
|
+
"--fibery-color-colorIconBannerAccent": "rgb(0,111,139)",
|
|
1967
|
+
"--fibery-color-colorIconBannerWarning": "rgb(130,113,0)",
|
|
1968
|
+
"--fibery-color-colorIconBannerError": "rgb(175,36,54)",
|
|
1969
|
+
"--fibery-color-colorIconBannerSuccess": "rgb(0,116,101)",
|
|
1970
|
+
"--fibery-color-colorTextBannerNeutral": "rgb(27,22,17)",
|
|
1971
|
+
"--fibery-color-colorTextBannerAccent": "rgb(0,111,139)",
|
|
1972
|
+
"--fibery-color-colorTextBannerWarning": "rgb(130,113,0)",
|
|
1973
|
+
"--fibery-color-colorTextBannerError": "rgb(175,36,54)",
|
|
1974
|
+
"--fibery-color-colorTextBannerSuccess": "rgb(0,116,101)",
|
|
1975
|
+
"--fibery-color-colorBgChargebeeInfoBox": "rgb(250,244,236)",
|
|
1976
|
+
"--fibery-color-newCommentHorizontalRulerColor": "rgb(237,150,150)",
|
|
1977
|
+
"--fibery-color-colorBgErrorMessage": "rgb(237,150,150)",
|
|
1978
|
+
"--fibery-color-colorBorderLogoGrid": "rgb(243,236,229)",
|
|
1979
|
+
"--fibery-color-colorBorderLogoGridSubtle": "rgba(243, 236, 229, 0.2)",
|
|
1980
|
+
"--fibery-color-colorBorderLogoGridMedium": "rgba(243, 236, 229, 0.4)",
|
|
1981
|
+
"--fibery-color-colorStrokeLogoDashed": "rgb(232,226,219)",
|
|
1982
|
+
"--fibery-color-colorBgLogoCardTransparent": "rgb(255,253,250)",
|
|
1983
|
+
"--fibery-color-colorBgLogoCardDark": "rgb(204,198,191)",
|
|
1984
|
+
"--fibery-color-colorBgLogoCardMedium": "rgb(243,236,229)",
|
|
1985
|
+
"--fibery-color-colorBgSkeletonFrom": "rgba(255, 253, 250, 0.05)",
|
|
1986
|
+
"--fibery-color-colorBgSkeletonTo": "rgba(255, 253, 250, 0.1)",
|
|
1987
|
+
"--fibery-color-colorShadowInsetEdge": "rgba(255, 253, 250, 0.05)",
|
|
1988
|
+
"--fibery-color-colorShadowBorder": "rgba(255, 253, 250, 0.1)",
|
|
1989
|
+
"--fibery-color-colorShadowElevation": "rgba(31, 26, 24, 0.1)",
|
|
1990
|
+
"--fibery-color-colorShadowOutline": "rgba(31, 26, 24, 0.2)",
|
|
1991
|
+
"--fibery-color-colorPlaceholder": "rgba(255, 253, 250, 0.4)",
|
|
1992
|
+
"--fibery-color-colorPlaceholderSubtle": "rgba(255, 253, 250, 0.25)",
|
|
1993
|
+
"--fibery-color-colorBgSubtleLight": "rgba(255, 253, 250, 0.05)",
|
|
1994
|
+
"--fibery-color-colorStrokeSurface": "rgb(255,253,250)",
|
|
1995
|
+
"--fibery-color-colorTextMilestone": "rgba(31, 26, 24, 0.5)",
|
|
1996
|
+
"--fibery-color-colorSpinnerIcon": "rgba(31, 26, 24, 0.9)",
|
|
1997
|
+
"--fibery-color-colorSpinnerBg": "rgba(31, 26, 24, 0.1)",
|
|
1998
|
+
"--fibery-color-colorBgLaneSubtle": "rgba(31, 26, 24, 0.05)",
|
|
1999
|
+
"--fibery-color-opacity15": "0.15",
|
|
2000
|
+
"--fibery-color-opacity20": "0.2",
|
|
2001
|
+
"--fibery-color-opacity25": "0.25",
|
|
2002
|
+
"--fibery-color-opacity30": "0.3",
|
|
2003
|
+
"--fibery-color-opacity40": "0.4",
|
|
2004
|
+
"--fibery-color-opacity50": "0.5",
|
|
2005
|
+
"--fibery-color-opacity60": "0.6",
|
|
2006
|
+
"--fibery-color-opacity65": "0.65",
|
|
2007
|
+
"--fibery-color-opacity70": "0.7",
|
|
2008
|
+
"--fibery-color-opacity75": "0.75",
|
|
2009
|
+
"--fibery-color-opacity80": "0.8",
|
|
2010
|
+
"--fibery-color-opacity85": "0.85",
|
|
2011
|
+
"--fibery-color-opacity90": "0.9",
|
|
2012
|
+
"--fibery-color-whiteA10": "rgba(255, 253, 250, 0.1)",
|
|
2013
|
+
"--fibery-color-whiteA40": "rgba(255, 253, 250, 0.4)",
|
|
2014
|
+
"--fibery-color-whiteA100": "rgb(255,253,250)",
|
|
2015
|
+
"--fibery-color-colorBgFileOverlay": "rgba(31, 26, 24, 0.6)",
|
|
2016
|
+
"--fibery-color-colorBgScrollFade": "rgba(255, 253, 250, 0.15)",
|
|
2017
|
+
"--fibery-color-colorStrokeSelectedOutline": "rgba(31, 26, 24, 0.75)",
|
|
2018
|
+
"--fibery-color-scrollbar": "rgba(163, 157, 150, 0.5)",
|
|
2019
|
+
},
|
|
2020
|
+
dark: {
|
|
2021
|
+
"--fibery-color-surfaceElevationS": "0 2px 4px 0 rgba(255,255,254,0.03)",
|
|
2022
|
+
"--fibery-color-surfaceElevationM": "0 4px 8px 0 rgba(255,255,254,0.09)",
|
|
2023
|
+
"--fibery-color-surfaceElevationL": "0 8px 12px 0 rgba(255,255,254,0.09)",
|
|
2024
|
+
"--fibery-color-shadow50": "0 0 0 1px rgba(224, 212, 206, 0.1)",
|
|
2025
|
+
"--fibery-color-shadow100": "0 1px 4px 0 rgba(27, 22, 17, 0.1)",
|
|
2026
|
+
"--fibery-color-shadow200": "0 2px 6px 0 rgba(27, 22, 17, 0.1)",
|
|
2027
|
+
"--fibery-color-shadow300": "0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15)",
|
|
2028
|
+
"--fibery-color-shadow400": "0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15)",
|
|
2029
|
+
"--fibery-color-shadow500": "0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15)",
|
|
2030
|
+
"--fibery-color-shadow600": "0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2)",
|
|
2031
|
+
"--fibery-color-actionMenuShadow":
|
|
2032
|
+
"0 0 0 1px rgb(55,50,48), 0 4px 6px 0 rgba(26, 22, 20, 0.05), 0 10px 26px 0 rgba(26, 22, 20, 0.15)",
|
|
2033
|
+
"--fibery-color-shadowPopup":
|
|
2034
|
+
"0 0 0 1px rgb(55,50,48), 0 4px 6px 0 rgba(26, 22, 20, 0.05), 0 10px 26px 0 rgba(26, 22, 20, 0.15)",
|
|
2035
|
+
"--fibery-color-shadowSidebar": "-3px 0 10px 0 rgba(26, 22, 20, 0.8)",
|
|
2036
|
+
"--fibery-color-highlightBgYellow": "rgb(78, 64, 26)",
|
|
2037
|
+
"--fibery-color-highlightFgYellow": "rgb(215, 184, 106)",
|
|
2038
|
+
"--fibery-color-highlightFgOnBgYellow": "rgb(232, 200, 119)",
|
|
2039
|
+
"--fibery-color-highlightBgGreen": "rgb(53, 71, 39)",
|
|
2040
|
+
"--fibery-color-highlightFgGreen": "rgb(160, 199, 130)",
|
|
2041
|
+
"--fibery-color-highlightFgOnBgGreen": "rgb(175, 216, 146)",
|
|
2042
|
+
"--fibery-color-highlightBgAquamarine": "rgb(41, 80, 60)",
|
|
2043
|
+
"--fibery-color-highlightFgAquamarine": "rgb(124, 205, 160)",
|
|
2044
|
+
"--fibery-color-highlightFgOnBgAquamarine": "rgb(140, 225, 180)",
|
|
2045
|
+
"--fibery-color-highlightBgAqua": "rgb(18, 73, 64)",
|
|
2046
|
+
"--fibery-color-highlightFgAqua": "rgb(98, 205, 183)",
|
|
2047
|
+
"--fibery-color-highlightFgOnBgAqua": "rgb(112, 222, 200)",
|
|
2048
|
+
"--fibery-color-highlightBgBlue": "rgb(47, 66, 94)",
|
|
2049
|
+
"--fibery-color-highlightFgBlue": "rgb(152, 189, 243)",
|
|
2050
|
+
"--fibery-color-highlightFgOnBgBlue": "rgb(175, 206, 248)",
|
|
2051
|
+
"--fibery-color-highlightBgPurple": "rgb(77, 58, 89)",
|
|
2052
|
+
"--fibery-color-highlightFgPurple": "rgb(211, 172, 239)",
|
|
2053
|
+
"--fibery-color-highlightFgOnBgPurple": "rgb(224, 190, 250)",
|
|
2054
|
+
"--fibery-color-highlightBgPink": "rgb(88, 55, 75)",
|
|
2055
|
+
"--fibery-color-highlightFgPink": "rgb(237, 167, 207)",
|
|
2056
|
+
"--fibery-color-highlightFgOnBgPink": "rgb(249, 184, 221)",
|
|
2057
|
+
"--fibery-color-highlightBgRed": "rgb(93, 55, 53)",
|
|
2058
|
+
"--fibery-color-highlightFgRed": "rgb(240, 170, 164)",
|
|
2059
|
+
"--fibery-color-highlightFgOnBgRed": "rgb(246, 190, 185)",
|
|
2060
|
+
"--fibery-color-highlightBgGrey": "rgb(70, 64, 64)",
|
|
2061
|
+
"--fibery-color-highlightFgGrey": "rgb(193, 186, 186)",
|
|
2062
|
+
"--fibery-color-highlightFgOnBgGrey": "rgb(208, 202, 202)",
|
|
2063
|
+
"--fibery-color-colorPickerCssFilter": "none",
|
|
2064
|
+
"--fibery-color-mode": "dark",
|
|
2065
|
+
"--fibery-color-colorAccentBgSubtle": "rgba(0, 138, 169, 0.1)",
|
|
2066
|
+
"--fibery-color-colorAccentBgMild": "rgba(0, 138, 169, 0.15)",
|
|
2067
|
+
"--fibery-color-colorAccentBgMedium": "rgba(0, 138, 169, 0.2)",
|
|
2068
|
+
"--fibery-color-colorAccentBgStrong": "rgba(0, 138, 169, 0.3)",
|
|
2069
|
+
"--fibery-color-colorAccentBgBold": "rgba(0, 138, 169, 0.35)",
|
|
2070
|
+
"--fibery-color-colorAccentBgVivid": "rgba(0, 138, 169, 0.6)",
|
|
2071
|
+
"--fibery-color-colorAccentStroke": "rgba(0, 138, 169, 0.25)",
|
|
2072
|
+
"--fibery-color-colorAccentStrokeHover": "rgba(0, 138, 169, 0.4)",
|
|
2073
|
+
"--fibery-color-colorAccentStrokeFocus": "rgba(0, 138, 169, 0.5)",
|
|
2074
|
+
"--fibery-color-colorAccentSolid": "rgba(0, 138, 169, 0.8)",
|
|
2075
|
+
"--fibery-color-colorAccent": "rgb(0,136,170)",
|
|
2076
|
+
"--fibery-color-darkenPrimary": "rgb(46, 107, 126)",
|
|
2077
|
+
"--fibery-color-whiteColor": "rgb(255,253,250)",
|
|
2078
|
+
"--fibery-color-blackColor": "#1F1A18",
|
|
2079
|
+
"--fibery-color-mainBg": "#2D2623",
|
|
2080
|
+
"--fibery-color-panelBg": "rgb(26,22,20)",
|
|
2081
|
+
"--fibery-color-panelContentBg": "rgb(26,22,20)",
|
|
2082
|
+
"--fibery-color-colorBgRelationContainer": "rgb(26,22,20)",
|
|
2083
|
+
"--fibery-color-colorAI": "#8056A3",
|
|
2084
|
+
"--fibery-color-colorBgAI": "rgba(128, 86, 163, 0.1)",
|
|
2085
|
+
"--fibery-color-colorBgAIFloatingLauncher": "rgb(45,40,38)",
|
|
2086
|
+
"--fibery-color-colorBgAIFloatingPanelContent": "rgb(39,35,33)",
|
|
2087
|
+
"--fibery-color-colorBgAISidebarContent": "rgb(26,22,20)",
|
|
2088
|
+
"--fibery-color-pageContentBg": "rgb(32,27,25)",
|
|
2089
|
+
"--fibery-color-colorBgPopup": "rgb(45,40,38)",
|
|
2090
|
+
"--fibery-color-menuBg": "#2D2623",
|
|
2091
|
+
"--fibery-color-menuTextColor": "rgb(224,212,206)",
|
|
2092
|
+
"--fibery-color-menuItemHoverColor": "rgb(55,50,48)",
|
|
2093
|
+
"--fibery-color-menuSelectedTextColor": "rgb(253,246,239)",
|
|
2094
|
+
"--fibery-color-menuIconColor": "rgba(224, 212, 206, 0.7)",
|
|
2095
|
+
"--fibery-color-textColor": "rgb(224,212,206)",
|
|
2096
|
+
"--fibery-color-textSelectionColor": "rgba(0, 136, 170, 0.4)",
|
|
2097
|
+
"--fibery-color-accentTextColor": "rgb(132,126,124)",
|
|
2098
|
+
"--fibery-color-disabledTextColor": "rgb(117,111,109)",
|
|
2099
|
+
"--fibery-color-inversedTextColor": "rgb(55,50,48)",
|
|
2100
|
+
"--fibery-color-colorTextSecondary": "rgba(224, 212, 206, 0.65)",
|
|
2101
|
+
"--fibery-color-linkColor": "#A6B7E3",
|
|
2102
|
+
"--fibery-color-linkBorder": "0.5px solid rgba(166, 183, 227, 0.4)",
|
|
2103
|
+
"--fibery-color-linkHoverColor": "#A6B7E3",
|
|
2104
|
+
"--fibery-color-linkBorderHover": "0.5px solid rgba(166, 183, 227, 0.75)",
|
|
2105
|
+
"--fibery-color-codeColor": "rgb(237,150,150)",
|
|
2106
|
+
"--fibery-color-codeBgColor": "rgb(45,40,38)",
|
|
2107
|
+
"--fibery-color-codeBlockBgColor": "rgb(45,40,38)",
|
|
2108
|
+
"--fibery-color-addedDiffTextColor": "rgb(128,192,180)",
|
|
2109
|
+
"--fibery-color-removedDiffTextColor": "rgb(244,146,147)",
|
|
2110
|
+
"--fibery-color-entityNodeColor": "rgb(204,198,191)",
|
|
2111
|
+
"--fibery-color-entityNodeBorder": "0.5px solid rgba(204, 198, 191, 0.4)",
|
|
2112
|
+
"--fibery-color-entityNodeHoverColor": "rgb(225,218,211)",
|
|
2113
|
+
"--fibery-color-entityNodeBorderHover": "0.5px solid rgba(225, 218, 211, 0.8)",
|
|
2114
|
+
"--fibery-color-entityNodeBgColor": "rgb(39,35,33)",
|
|
2115
|
+
"--fibery-color-shortcutTextColor": "rgb(166,159,157)",
|
|
2116
|
+
"--fibery-color-shortcutBorder": "1px solid rgba(132, 126, 124, 0.2)",
|
|
2117
|
+
"--fibery-color-shortcutBorderColor": "rgba(132, 126, 124, 0.2)",
|
|
2118
|
+
"--fibery-color-inputBgColor": "rgb(32,27,25)",
|
|
2119
|
+
"--fibery-color-inputDisabledBgColor": "rgba(55, 50, 48, 0.3)",
|
|
2120
|
+
"--fibery-color-inputDisabledBorderColor": "0 0 0 1px rgba(86, 80, 78, 0.2)",
|
|
2121
|
+
"--fibery-color-inputCopyBgColor": "rgb(45,40,38)",
|
|
2122
|
+
"--fibery-color-inputBorderColor": "0 0 0 1px rgba(86, 80, 78, 0.7)",
|
|
2123
|
+
"--fibery-color-inputBorderHoverColor": "0 0 0 1px rgb(86,80,78)",
|
|
2124
|
+
"--fibery-color-inputBorderFocusColor": "0 0 0 1px rgb(117,111,109)",
|
|
2125
|
+
"--fibery-color-inputBorderBlendMode": "lighten",
|
|
2126
|
+
"--fibery-color-inputPlaceholderTextColor": "rgb(117,111,109)",
|
|
2127
|
+
"--fibery-color-inputErrorBorderColor": "0 0 0 1px rgb(244,179,178)",
|
|
2128
|
+
"--fibery-color-inputErrorBorderHoverColor": "0 0 0 1px rgba(244, 179, 178, 0.4)",
|
|
2129
|
+
"--fibery-color-inputErrorBorderFocusColor": "0 0 0 1px rgba(244, 179, 178, 0.25)",
|
|
2130
|
+
"--fibery-color-inputErrorBorderFocusShadow": "0 0 0 3px rgba(244, 179, 178, 0.25)",
|
|
2131
|
+
"--fibery-color-inputBorderWarningColor": "0 0 0 1px rgb(110,95,0)",
|
|
2132
|
+
"--fibery-color-buttonPrimaryColor": "rgb(0,136,170)",
|
|
2133
|
+
"--fibery-color-buttonColor": "rgb(132,126,124)",
|
|
2134
|
+
"--fibery-color-buttonPrimaryTextColor": "rgb(232,226,219)",
|
|
2135
|
+
"--fibery-color-checkboxColor": "rgba(224, 212, 206, 0.7)",
|
|
2136
|
+
"--fibery-color-colorBorderBlockQuote": "rgb(166,159,157)",
|
|
2137
|
+
"--fibery-color-colorBgActionsMenu": "rgb(39,35,33)",
|
|
2138
|
+
"--fibery-color-colorBgActionsMenuItemHover": "rgb(50,45,43)",
|
|
2139
|
+
"--fibery-color-colorBgActionsMenuItemSelected": "rgba(1, 51, 63, 0.8)",
|
|
2140
|
+
"--fibery-color-colorBgActionsMenuItemSelectedHover": "rgba(7, 68, 83, 0.8)",
|
|
2141
|
+
"--fibery-color-colorBgActionsMenuItemDangerHover": "rgba(225, 78, 91, 0.1)",
|
|
2142
|
+
"--fibery-color-colorBgActionsMenuItemDangerActive": "rgba(225, 78, 91, 0.8)",
|
|
2143
|
+
"--fibery-color-actionMenuBg": "rgb(39,35,33)",
|
|
2144
|
+
"--fibery-color-actionMenuInnerBg": "rgb(45,40,38)",
|
|
2145
|
+
"--fibery-color-actionMenuHover": "rgb(50,45,43)",
|
|
2146
|
+
"--fibery-color-actionMenuInnerHover": "rgba(55, 50, 48, 0.5)",
|
|
2147
|
+
"--fibery-color-actionMenuButtonColor": "rgb(32,27,25)",
|
|
2148
|
+
"--fibery-color-actionMenuButtonHoverColor": "rgb(39,35,33)",
|
|
2149
|
+
"--fibery-color-actionMenuButtonShadow": "0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2)",
|
|
2150
|
+
"--fibery-color-actionMenuSeparatorColor": "rgba(255, 253, 250, 0.15)",
|
|
2151
|
+
"--fibery-color-separatorColor": "rgba(255, 253, 250, 0.1)",
|
|
2152
|
+
"--fibery-color-separatorColorDimmed": "rgba(255, 253, 250, 0.05)",
|
|
2153
|
+
"--fibery-color-separatorBreadcrumbsColor": "rgb(86,80,78)",
|
|
2154
|
+
"--fibery-color-borderSeparatorDimmed": "0.5px solid rgba(255, 253, 250, 0.05)",
|
|
2155
|
+
"--fibery-color-borderSeparator": "0.5px solid rgba(255, 253, 250, 0.1)",
|
|
2156
|
+
"--fibery-color-borderSeparatorMedium": "0.5px solid rgba(255, 253, 250, 0.15)",
|
|
2157
|
+
"--fibery-color-borderSeparatorStrong": "0.5px solid rgba(255, 253, 250, 0.25)",
|
|
2158
|
+
"--fibery-color-borderMedia": "0.5px solid rgba(0,0,0,0.14)",
|
|
2159
|
+
"--fibery-color-borderSolidSeparator": "1px solid rgba(255, 253, 250, 0.1)",
|
|
2160
|
+
"--fibery-color-borderSolidSeparatorDimmed": "1px solid rgba(255, 253, 250, 0.05)",
|
|
2161
|
+
"--fibery-color-borderSolidFilterGroup": "1px solid rgba(255,255,254,0.03)",
|
|
2162
|
+
"--fibery-color-borderSolidGrid": "1px solid rgb(55,50,48)",
|
|
2163
|
+
"--fibery-color-borderSolidOutlineNeutral": "1px solid rgb(65,60,58)",
|
|
2164
|
+
"--fibery-color-borderSolidMedia": "1px solid rgba(0,0,0,0.14)",
|
|
2165
|
+
"--fibery-color-borderSolidCommentBubble": "1px solid rgb(55,50,48)",
|
|
2166
|
+
"--fibery-color-borderBlockQuote": "3px solid rgb(166,159,157)",
|
|
2167
|
+
"--fibery-color-shadowCardDefault": "0 0 0 1px rgba(86, 80, 78, 0.7), 0 1px 4px 0 rgba(27, 22, 17, 0.1)",
|
|
2168
|
+
"--fibery-color-shadowCardHover": "0 0 0 1px rgba(86, 80, 78, 0.7), 0 2px 6px 0 rgba(27, 22, 17, 0.1)",
|
|
2169
|
+
"--fibery-color-shadowCardInset": "inset 0 0 0 1px rgba(86, 80, 78, 0.7)",
|
|
2170
|
+
"--fibery-color-iconColor": "rgba(224, 212, 206, 0.7)",
|
|
2171
|
+
"--fibery-color-appIconColor": "rgba(253, 246, 239, 0.7)",
|
|
2172
|
+
"--fibery-color-appIconBgColor": "rgba(253, 246, 239, 0.5)",
|
|
2173
|
+
"--fibery-color-mentionBgColor": "rgba(65, 60, 58, 0.4)",
|
|
2174
|
+
"--fibery-color-colorBgSelectMenu": "rgb(39,35,33)",
|
|
2175
|
+
"--fibery-color-shadowSelectMenu":
|
|
2176
|
+
"0 0 0 1px rgb(55,50,48), 0 4px 6px 0 rgba(26, 22, 20, 0.05), 0 10px 26px 0 rgba(26, 22, 20, 0.15)",
|
|
2177
|
+
"--fibery-color-colorBgListItemGeneral": "rgba(255, 255, 255, 0)",
|
|
2178
|
+
"--fibery-color-colorBgListItemGeneralHover": "rgb(45,40,38)",
|
|
2179
|
+
"--fibery-color-colorBgListItemGeneralFocus": "rgb(55,50,48)",
|
|
2180
|
+
"--fibery-color-colorBgListItemGeneralSelected": "rgb(1,51,63)",
|
|
2181
|
+
"--fibery-color-colorBgListItemGeneralSelectedHover": "rgb(7,68,83)",
|
|
2182
|
+
"--fibery-color-colorBgListItemGeneralSelectedFocus": "rgb(7,68,83)",
|
|
2183
|
+
"--fibery-color-colorBgListItemGeneralDisabled": "rgba(255, 255, 255, 0)",
|
|
2184
|
+
"--fibery-color-colorTextListItemGeneralDisabled": "rgb(117,111,109)",
|
|
2185
|
+
"--fibery-color-colorBgListItemGeneralSelectedDisabled": "rgb(4,58,72)",
|
|
2186
|
+
"--fibery-color-opacityListItemGeneralDisabled": "0.4",
|
|
2187
|
+
"--fibery-color-colorSearchSubtitle": "rgb(117,111,109)",
|
|
2188
|
+
"--fibery-color-colorBgSearchRowHover": "rgb(50,45,43)",
|
|
2189
|
+
"--fibery-color-colorBgSearchRowCreateHover": "rgb(1,51,63)",
|
|
2190
|
+
"--fibery-color-opacitySearchItemDone": "0.4",
|
|
2191
|
+
"--fibery-color-colorBgEntityBoxDefault": "rgb(39,35,33)",
|
|
2192
|
+
"--fibery-color-shadowStrokeEntityBoxDefault": "0 0 0 1px rgb(50,45,43)",
|
|
2193
|
+
"--fibery-color-shadowEntityBoxDefault": "0 2px 4px 0 rgba(26, 22, 20, 0.05)",
|
|
2194
|
+
"--fibery-color-colorBgEntityBoxDefaultHover": "rgb(45,40,38)",
|
|
2195
|
+
"--fibery-color-shadowEntityBoxDefaultHover": "0 4px 8px 0 rgba(26, 22, 20, 0.1)",
|
|
2196
|
+
"--fibery-color-colorBgEntityBoxDefaultFocus": "rgb(39,35,33)",
|
|
2197
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocus": "rgb(0,136,170)",
|
|
2198
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocus": "0 0 0 2px rgba(0, 136, 170, 0.4)",
|
|
2199
|
+
"--fibery-color-colorBgEntityBoxDefaultFocusHover": "rgb(45,40,38)",
|
|
2200
|
+
"--fibery-color-colorOverlayEntityBoxDefaultFocusHover": "rgb(0,136,170)",
|
|
2201
|
+
"--fibery-color-shadowStrokeEntityBoxDefaultFocusHover": "0 0 0 2px rgba(0, 136, 170, 0.6)",
|
|
2202
|
+
"--fibery-color-opacityEntityBoxDefaultDrag": "0.4",
|
|
2203
|
+
"--fibery-color-shadowEntityBoxDefaultDrag": "0 8px 12px 0 rgba(26, 22, 20, 0.1)",
|
|
2204
|
+
"--fibery-color-colorBgEntityBoxSelected": "rgb(8,44,54)",
|
|
2205
|
+
"--fibery-color-shadowStrokeEntityBoxSelected": "0 0 0 1px rgb(0,136,170), 0 0 0 3px rgba(0, 136, 170, 0.4)",
|
|
2206
|
+
"--fibery-color-colorBgEntityBoxSelectedHover": "rgb(8,44,54)",
|
|
2207
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedHover": "0 0 0 1px rgb(0,136,170), 0 0 0 3px rgba(0, 136, 170, 0.4)",
|
|
2208
|
+
"--fibery-color-colorBgEntityBoxSelectedDrag": "rgb(8,44,54)",
|
|
2209
|
+
"--fibery-color-shadowStrokeEntityBoxSelectedDrag": "0 0 0 1px rgb(0,136,170), 0 0 0 3px rgba(0, 136, 170, 0.4)",
|
|
2210
|
+
"--fibery-color-opacityEntityBoxDisabled": "0.65",
|
|
2211
|
+
"--fibery-color-opacityEntityBoxDisabledHover": "0.75",
|
|
2212
|
+
"--fibery-color-opacityEntityBoxDisabledFocus": "0.75",
|
|
2213
|
+
"--fibery-color-opacityEntityBoxDisabledDrag": "0.4",
|
|
2214
|
+
"--fibery-color-entityCardBgColor": "rgb(50,45,43)",
|
|
2215
|
+
"--fibery-color-entityCardSelectedColor": "rgba(55, 50, 48, 0.5)",
|
|
2216
|
+
"--fibery-color-entityCardHoverColor": "rgba(55, 50, 48, 0.5)",
|
|
2217
|
+
"--fibery-color-entityCardDoneColor": "rgba(50, 45, 43, 0.3)",
|
|
2218
|
+
"--fibery-color-entityCardShadow": "0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2)",
|
|
2219
|
+
"--fibery-color-entityCardShadowHover": "0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2)",
|
|
2220
|
+
"--fibery-color-colorBgSegmentedControl": "rgba(39, 35, 33, 0.8)",
|
|
2221
|
+
"--fibery-color-colorBgMenuHeaderAvatar": "rgb(32,27,25)",
|
|
2222
|
+
"--fibery-color-shadowMenuHeaderAvatar": "0 0 0 1px rgba(117, 111, 109, 0.2)",
|
|
2223
|
+
"--fibery-color-opacityMenuItemDragged": "0.4",
|
|
2224
|
+
"--fibery-color-colorBgMenuItemSelectedDragged": "rgb(7,68,83)",
|
|
2225
|
+
"--fibery-color-colorTextMenuItem": "rgba(224, 212, 206, 0.9)",
|
|
2226
|
+
"--fibery-color-colorBgMenuItem": "rgba(255, 255, 255, 0)",
|
|
2227
|
+
"--fibery-color-colorBgMenuItemHover": "rgb(32,27,25)",
|
|
2228
|
+
"--fibery-color-colorBgMenuItemFocus": "rgb(50,45,43)",
|
|
2229
|
+
"--fibery-color-colorBgMenuItemSelected": "rgb(8,44,54)",
|
|
2230
|
+
"--fibery-color-colorBgMenuItemSelectedHover": "rgb(4,58,72)",
|
|
2231
|
+
"--fibery-color-colorBgPinnedFieldsLabel": "rgb(166,159,157)",
|
|
2232
|
+
"--fibery-color-colorBgObjectEditorSeparator": "rgb(224,212,206)",
|
|
2233
|
+
"--fibery-color-colorBgMenuItemSelectedFocused": "rgb(4,58,72)",
|
|
2234
|
+
"--fibery-color-colorBgFieldEditorContainer": "rgb(39,35,33)",
|
|
2235
|
+
"--fibery-color-colorBgFieldEditorLinkEqualSign": "rgb(32,27,25)",
|
|
2236
|
+
"--fibery-color-allowedDropColor": "rgb(45,40,38)",
|
|
2237
|
+
"--fibery-color-relationViewBgColor": "rgb(39,35,33)",
|
|
2238
|
+
"--fibery-color-mySpaceIconColor": "rgb(129, 133, 137)",
|
|
2239
|
+
"--fibery-color-mySpaceIconBg": "rgba(112, 132, 153, 0.2)",
|
|
2240
|
+
"--fibery-color-privateIconColor": "rgb(116, 168, 101)",
|
|
2241
|
+
"--fibery-color-privateIconBg": "rgba(116, 168, 101, 0.2)",
|
|
2242
|
+
"--fibery-color-favoritesIconColor": "rgb(235, 169, 68)",
|
|
2243
|
+
"--fibery-color-favoritesIconBg": "rgba(235, 169, 68, 0.2)",
|
|
2244
|
+
"--fibery-color-swatchDefault": "#1FBED3",
|
|
2245
|
+
"--fibery-color-unitBg": "rgb(55,50,48)",
|
|
2246
|
+
"--fibery-color-unitBgHover": "rgb(65,60,58)",
|
|
2247
|
+
"--fibery-color-colorBgBadgeNeutral": "rgba(45, 40, 38, 0.8)",
|
|
2248
|
+
"--fibery-color-colorBgBadgeAccent": "rgba(1, 51, 63, 0.8)",
|
|
2249
|
+
"--fibery-color-colorBgBadgeSuccess": "rgb(8,61,53)",
|
|
2250
|
+
"--fibery-color-colorBgBadgeWarning": "rgb(58,50,0)",
|
|
2251
|
+
"--fibery-color-colorBgBadgeError": "rgb(91,26,32)",
|
|
2252
|
+
"--fibery-color-colorTextBadgeNeutral": "rgb(166,159,157)",
|
|
2253
|
+
"--fibery-color-colorTextBadgeAccent": "rgb(124,189,210)",
|
|
2254
|
+
"--fibery-color-colorTextBadgeSuccess": "rgb(128,192,180)",
|
|
2255
|
+
"--fibery-color-colorTextBadgeWarning": "rgb(227,198,0)",
|
|
2256
|
+
"--fibery-color-colorTextBadgeError": "rgb(244,146,147)",
|
|
2257
|
+
"--fibery-color-badgeBgColor": "rgba(121, 118, 113, 0.2)",
|
|
2258
|
+
"--fibery-color-tooltipBgColor": "rgb(55,50,48)",
|
|
2259
|
+
"--fibery-color-todayMarkerColor": "rgb(104,33,39)",
|
|
2260
|
+
"--fibery-color-viewBgOverlayColor": "rgba(26, 22, 20, 0.6)",
|
|
2261
|
+
"--fibery-color-floatEditorMenuBg": "rgb(55,50,48)",
|
|
2262
|
+
"--fibery-color-floatEditorActiveColor": "rgb(124,189,210)",
|
|
2263
|
+
"--fibery-color-commentColor": "rgba(248, 216, 0, 0.4)",
|
|
2264
|
+
"--fibery-color-cellBackgroundColor": "rgb(32,27,25)",
|
|
2265
|
+
"--fibery-color-cellBackgroundHoverColor": "rgba(55, 50, 48, 0.3)",
|
|
2266
|
+
"--fibery-color-cellBorderColor": "rgba(117, 111, 109, 0.5)",
|
|
2267
|
+
"--fibery-color-cellPinnedBorderColor": "rgba(117, 111, 109, 0.7)",
|
|
2268
|
+
"--fibery-color-tableRowWarningColor": "rgba(248, 216, 0, 0.4)",
|
|
2269
|
+
"--fibery-color-errorBgColor": "rgba(213, 50, 71, 0.6)",
|
|
2270
|
+
"--fibery-color-errorTextColor": "rgb(244,179,178)",
|
|
2271
|
+
"--fibery-color-errorButtonColor": "rgb(225,78,91)",
|
|
2272
|
+
"--fibery-color-warningBgColor": "rgba(110, 95, 0, 0.6)",
|
|
2273
|
+
"--fibery-color-warningButtonColor": "rgb(227,198,0)",
|
|
2274
|
+
"--fibery-color-infoBox": "rgba(248, 216, 0, 0.2)",
|
|
2275
|
+
"--fibery-color-appCardBgColor": "rgb(32,27,25)",
|
|
2276
|
+
"--fibery-color-appCardHoverColor": "rgb(32,27,25)",
|
|
2277
|
+
"--fibery-color-modalBg": "rgba(32, 27, 25, 0.5)",
|
|
2278
|
+
"--fibery-color-modalContentBg": "rgb(39,35,33)",
|
|
2279
|
+
"--fibery-color-progressIconBg": "rgba(255,255,254,0.18)",
|
|
2280
|
+
"--fibery-color-progressIconFill": "rgba(255,255,254,0.59)",
|
|
2281
|
+
"--fibery-color-formBg": "rgb(32,27,25)",
|
|
2282
|
+
"--fibery-color-formHeaderShadow": "0 0 6px 0 rgba(26, 22, 20, 0.4)",
|
|
2283
|
+
"--fibery-color-formEditorFieldBg": "rgb(45,40,38)",
|
|
2284
|
+
"--fibery-color-filterGroup1Bg": "rgb(55,50,48)",
|
|
2285
|
+
"--fibery-color-filterGroup2Bg": "rgb(65,60,58)",
|
|
2286
|
+
"--fibery-color-filterGroupBorder": "rgba(255,255,254,0.03)",
|
|
2287
|
+
"--fibery-color-colorBgNotificationHover": "rgb(45,40,38)",
|
|
2288
|
+
"--fibery-color-colorBgNotificationSelected": "rgb(1,51,63)",
|
|
2289
|
+
"--fibery-color-colorBgNotificationSelectedHover": "rgb(7,68,83)",
|
|
2290
|
+
"--fibery-color-disabledInversedTextColor": "rgba(255, 253, 250, 0.25)",
|
|
2291
|
+
"--fibery-color-success": "rgb(0,143,125)",
|
|
2292
|
+
"--fibery-color-danger": "rgb(225,78,91)",
|
|
2293
|
+
"--fibery-color-active": "rgb(225,78,91)",
|
|
2294
|
+
"--fibery-color-warning": "rgb(110,95,0)",
|
|
2295
|
+
"--fibery-color-cardBg": "rgb(55,50,48)",
|
|
2296
|
+
"--fibery-color-selectedImageBorder": "rgba(255,255,254,0.59)",
|
|
2297
|
+
"--fibery-color-transparent": "rgba(255, 255, 255, 0)",
|
|
2298
|
+
"--fibery-color-progressBg": "rgb(243,236,229)",
|
|
2299
|
+
"--fibery-color-progressText": "rgb(99,94,87)",
|
|
2300
|
+
"--fibery-color-progressFillBg": "rgb(99,94,87)",
|
|
2301
|
+
"--fibery-color-progressFillText": "rgb(255,253,250)",
|
|
2302
|
+
"--fibery-color-progressBarFillNeutral": "rgba(117, 111, 109, 0.2)",
|
|
2303
|
+
"--fibery-color-progressBarFill": "rgb(22,152,183)",
|
|
2304
|
+
"--fibery-color-progressBarBg": "rgba(22, 152, 183, 0.25)",
|
|
2305
|
+
"--fibery-color-colorPickerSwatchBorder": "rgba(0,0,0,0.14)",
|
|
2306
|
+
"--fibery-color-colorBorderRichTextMedia": "rgba(0,0,0,0.14)",
|
|
2307
|
+
"--fibery-color-richTextTableBorder": "rgba(255,255,254,0.18)",
|
|
2308
|
+
"--fibery-color-colorBgDropLine": "rgb(0,106,135)",
|
|
2309
|
+
"--fibery-color-viewBg": "rgb(26,22,20)",
|
|
2310
|
+
"--fibery-color-viewSecondaryBg": "rgb(32,27,25)",
|
|
2311
|
+
"--fibery-color-viewHighlightBg": "rgb(8,44,54)",
|
|
2312
|
+
"--fibery-color-boardBg": "rgb(26,22,20)",
|
|
2313
|
+
"--fibery-color-boardBgWithOpacity80": "rgba(26, 22, 20, 0.8)",
|
|
2314
|
+
"--fibery-color-boardAxisBgHover": "rgb(45,40,38)",
|
|
2315
|
+
"--fibery-color-gridHeaderBgColor": "rgb(39,35,33)",
|
|
2316
|
+
"--fibery-color-gridHeaderHoverBgColor": "rgb(45,40,38)",
|
|
2317
|
+
"--fibery-color-gridHeaderTextColor": "rgb(166,159,157)",
|
|
2318
|
+
"--fibery-color-gridCellBgColor": "rgb(32,27,25)",
|
|
2319
|
+
"--fibery-color-gridCellBorderColor": "rgb(55,50,48)",
|
|
2320
|
+
"--fibery-color-gridDisabledCellBgColor": "rgb(39,35,33)",
|
|
2321
|
+
"--fibery-color-gridSelectedCellBgColor": "rgb(8,44,54)",
|
|
2322
|
+
"--fibery-color-gridHighlightedCellBgColor": "rgb(4,58,72)",
|
|
2323
|
+
"--fibery-color-gridSelectedCellBorderColor": "rgb(0,85,107)",
|
|
2324
|
+
"--fibery-color-gridSelectedPinnedCellBorderColor": "rgb(0,85,107)",
|
|
2325
|
+
"--fibery-color-gridDisabledSelectedCellBgColor": "rgb(4,58,72)",
|
|
2326
|
+
"--fibery-color-gridActiveCellBorderColor": "rgb(0,136,170)",
|
|
2327
|
+
"--fibery-color-timelineEntityHandleColor": "rgb(0,85,107)",
|
|
2328
|
+
"--fibery-color-timelineDependencyHoverBgColor": "rgb(0,106,135)",
|
|
2329
|
+
"--fibery-color-timelineDependencyOverlapBgColor": "rgb(213,50,71)",
|
|
2330
|
+
"--fibery-color-timelineDependencyOverlapHoverBgColor": "rgb(244,146,147)",
|
|
2331
|
+
"--fibery-color-timelineCellBgColor": "rgb(26,22,20)",
|
|
2332
|
+
"--fibery-color-timelineCellWeekendBgColor": "rgb(32,27,25)",
|
|
2333
|
+
"--fibery-color-timelineCellTodayBgColor": "rgb(13,32,38)",
|
|
2334
|
+
"--fibery-color-timelineCreateEntityPlaceholderBgColor": "rgb(65,60,58)",
|
|
2335
|
+
"--fibery-color-colorBgButtonSolidAccentDefault": "rgb(0,136,170)",
|
|
2336
|
+
"--fibery-color-colorBgButtonSolidAccentHover": "rgb(22,152,183)",
|
|
2337
|
+
"--fibery-color-colorBgButtonSolidNeutralDefault": "rgb(224,212,206)",
|
|
2338
|
+
"--fibery-color-colorBgButtonSolidNeutralHover": "rgb(255,253,250)",
|
|
2339
|
+
"--fibery-color-colorBgButtonSolidDestructiveDefault": "rgb(213,50,71)",
|
|
2340
|
+
"--fibery-color-colorBgButtonSolidDestructiveHover": "rgb(225,78,91)",
|
|
2341
|
+
"--fibery-color-colorTextButtonSolidAccent": "rgb(255,253,250)",
|
|
2342
|
+
"--fibery-color-colorTextButtonSolidAccentActive": "rgba(255, 253, 250, 0.8)",
|
|
2343
|
+
"--fibery-color-colorTextButtonSolidNeutral": "rgb(32,27,25)",
|
|
2344
|
+
"--fibery-color-colorTextButtonSolidNeutralActive": "rgba(32, 27, 25, 0.8)",
|
|
2345
|
+
"--fibery-color-colorTextButtonSolidDestructive": "rgb(255,253,250)",
|
|
2346
|
+
"--fibery-color-colorTextButtonSolidDestructiveActive": "rgba(255, 253, 250, 0.8)",
|
|
2347
|
+
"--fibery-color-colorIconButtonSolidAccent": "rgb(255,253,250)",
|
|
2348
|
+
"--fibery-color-colorIconButtonSolidNeutral": "rgb(86,80,78)",
|
|
2349
|
+
"--fibery-color-colorIconButtonSolidDestructive": "rgb(255,253,250)",
|
|
2350
|
+
"--fibery-color-colorBorderButtonOutlineAccentDefault": "rgb(0,106,135)",
|
|
2351
|
+
"--fibery-color-colorBorderButtonOutlineNeutralDefault": "rgb(65,60,58)",
|
|
2352
|
+
"--fibery-color-colorBorderButtonOutlineDestructiveDefault": "rgb(136,27,42)",
|
|
2353
|
+
"--fibery-color-colorBgButtonOutlineAccentDefault": "rgb(26,22,20)",
|
|
2354
|
+
"--fibery-color-colorBgButtonOutlineAccentHover": "rgb(8,44,54)",
|
|
2355
|
+
"--fibery-color-colorBgButtonOutlineNeutralDefault": "rgb(26,22,20)",
|
|
2356
|
+
"--fibery-color-colorBgButtonOutlineNeutralHover": "rgb(45,40,38)",
|
|
2357
|
+
"--fibery-color-colorBgButtonOutlineDestructiveDefault": "rgb(26,22,20)",
|
|
2358
|
+
"--fibery-color-colorBgButtonOutlineDestructiveHover": "rgb(80,21,27)",
|
|
2359
|
+
"--fibery-color-colorTextButtonOutlineAccent": "rgb(124,189,210)",
|
|
2360
|
+
"--fibery-color-colorTextButtonOutlineAccentActive": "rgba(124, 189, 210, 0.8)",
|
|
2361
|
+
"--fibery-color-colorTextButtonOutlineNeutral": "rgb(166,159,157)",
|
|
2362
|
+
"--fibery-color-colorTextButtonOutlineNeutralActive": "rgba(224, 212, 206, 0.8)",
|
|
2363
|
+
"--fibery-color-colorTextButtonOutlineDestructive": "rgb(244,146,147)",
|
|
2364
|
+
"--fibery-color-colorTextButtonOutlineDestructiveActive": "rgba(244, 146, 147, 0.8)",
|
|
2365
|
+
"--fibery-color-colorIconButtonOutlineAccent": "rgb(124,189,210)",
|
|
2366
|
+
"--fibery-color-colorIconButtonOutlineNeutral": "rgb(166,159,157)",
|
|
2367
|
+
"--fibery-color-colorIconButtonOutlineDestructive": "rgb(244,146,147)",
|
|
2368
|
+
"--fibery-color-colorBgButtonSoftAccentDefault": "rgb(1,51,63)",
|
|
2369
|
+
"--fibery-color-colorBgButtonSoftAccentHover": "rgb(7,68,83)",
|
|
2370
|
+
"--fibery-color-colorBgButtonSoftNeutralDefault": "rgb(39,35,33)",
|
|
2371
|
+
"--fibery-color-colorBgButtonSoftNeutralHover": "rgb(65,60,58)",
|
|
2372
|
+
"--fibery-color-colorBgButtonSoftDestructiveDefault": "rgb(80,21,27)",
|
|
2373
|
+
"--fibery-color-colorBgButtonSoftDestructiveHover": "rgb(104,33,39)",
|
|
2374
|
+
"--fibery-color-colorTextButtonSoftAccent": "rgb(124,189,210)",
|
|
2375
|
+
"--fibery-color-colorTextButtonSoftAccentActive": "rgba(124, 189, 210, 0.8)",
|
|
2376
|
+
"--fibery-color-colorTextButtonSoftNeutral": "rgb(166,159,157)",
|
|
2377
|
+
"--fibery-color-colorTextButtonSoftNeutralActive": "rgba(166, 159, 157, 0.8)",
|
|
2378
|
+
"--fibery-color-colorTextButtonSoftDestructive": "rgb(244,146,147)",
|
|
2379
|
+
"--fibery-color-colorTextButtonSoftDestructiveActive": "rgba(244, 146, 147, 0.8)",
|
|
2380
|
+
"--fibery-color-colorIconButtonSoftAccent": "rgb(124,189,210)",
|
|
2381
|
+
"--fibery-color-colorIconButtonSoftNeutral": "rgb(166,159,157)",
|
|
2382
|
+
"--fibery-color-colorIconButtonSoftDestructive": "rgb(244,146,147)",
|
|
2383
|
+
"--fibery-color-colorBgButtonGhostAccentDefault": "rgba(255, 255, 255, 0)",
|
|
2384
|
+
"--fibery-color-colorBgButtonGhostAccentHover": "rgba(1, 51, 63, 0.8)",
|
|
2385
|
+
"--fibery-color-colorBgButtonGhostNeutralDefault": "rgba(255, 255, 255, 0)",
|
|
2386
|
+
"--fibery-color-colorBgButtonGhostNeutralHover": "rgba(55, 50, 48, 0.8)",
|
|
2387
|
+
"--fibery-color-colorBgButtonGhostDestructiveDefault": "rgba(255, 255, 255, 0)",
|
|
2388
|
+
"--fibery-color-colorBgButtonGhostDestructiveHover": "rgb(80,21,27)",
|
|
2389
|
+
"--fibery-color-colorTextButtonGhostAccent": "rgb(124,189,210)",
|
|
2390
|
+
"--fibery-color-colorTextButtonGhostAccentActive": "rgba(124, 189, 210, 0.8)",
|
|
2391
|
+
"--fibery-color-colorTextButtonGhostNeutral": "rgb(166,159,157)",
|
|
2392
|
+
"--fibery-color-colorTextButtonGhostNeutralActive": "rgba(166, 159, 157, 0.8)",
|
|
2393
|
+
"--fibery-color-colorTextButtonGhostDestructive": "rgb(244,146,147)",
|
|
2394
|
+
"--fibery-color-colorTextButtonGhostDestructiveActive": "rgba(244, 146, 147, 0.8)",
|
|
2395
|
+
"--fibery-color-colorIconButtonGhostAccent": "rgb(124,189,210)",
|
|
2396
|
+
"--fibery-color-colorIconButtonGhostNeutral": "rgb(166,159,157)",
|
|
2397
|
+
"--fibery-color-colorIconButtonGhostDestructive": "rgb(244,146,147)",
|
|
2398
|
+
"--fibery-color-colorBorderAccentFocusRing": "rgba(0, 138, 169, 0.3)",
|
|
2399
|
+
"--fibery-color-colorBorderNeutralFocusRing": "rgba(163, 157, 150, 0.3)",
|
|
2400
|
+
"--fibery-color-colorBorderDestructiveFocusRing": "rgba(211, 62, 75, 0.3)",
|
|
2401
|
+
"--fibery-color-colorBgReactionsDefault": "rgb(32,27,25)",
|
|
2402
|
+
"--fibery-color-colorBgReactionsHover": "rgb(55,50,48)",
|
|
2403
|
+
"--fibery-color-colorBorderReactionsHover": "rgb(117,111,109)",
|
|
2404
|
+
"--fibery-color-colorBgReactionsSelectedDefault": "rgb(0,106,135)",
|
|
2405
|
+
"--fibery-color-colorBorderReactionsSelectedDefault": "rgb(0,106,135)",
|
|
2406
|
+
"--fibery-color-colorBgReactionsSelectedHover": "rgb(0,126,159)",
|
|
2407
|
+
"--fibery-color-colorBorderReactionsSelectedHover": "rgb(0,126,159)",
|
|
2408
|
+
"--fibery-color-colorTextReactionsSelected": "rgb(224,212,206)",
|
|
2409
|
+
"--fibery-color-colorBgToastDefault": "rgb(26,22,20)",
|
|
2410
|
+
"--fibery-color-colorBgDbTabHover": "rgb(45,40,38)",
|
|
2411
|
+
"--fibery-color-colorBgDbTabFocus": "rgb(55,50,48)",
|
|
2412
|
+
"--fibery-color-colorBgTabHover": "rgba(166, 159, 157, 0.1)",
|
|
2413
|
+
"--fibery-color-colorBgMessageContainer": "rgb(39,35,33)",
|
|
2414
|
+
"--fibery-color-colorBgMessageContainerHover": "rgb(45,40,38)",
|
|
2415
|
+
"--fibery-color-colorBgEntityAvatarDefault": "rgb(16,25,28)",
|
|
2416
|
+
"--fibery-color-colorBgEntityAvatarHover": "rgb(8,44,54)",
|
|
2417
|
+
"--fibery-color-colorTextEntityAvatarDefault": "rgb(0,106,135)",
|
|
2418
|
+
"--fibery-color-colorTextEntityAvatarHover": "rgb(0,136,170)",
|
|
2419
|
+
"--fibery-color-colorBgMessageHighlighted": "rgb(32,27,25)",
|
|
2420
|
+
"--fibery-color-colorBgEditorImageZoomed": "rgb(55,50,48)",
|
|
2421
|
+
"--fibery-color-colorMermaidPrimaryColor": "rgb(86,80,78)",
|
|
2422
|
+
"--fibery-color-colorMermaidPrimaryBorderColor": "rgb(117,111,109)",
|
|
2423
|
+
"--fibery-color-colorMermaidLineColor": "rgb(117,111,109)",
|
|
2424
|
+
"--fibery-color-colorBgWhiteboard": "rgb(26,22,20)",
|
|
2425
|
+
"--fibery-color-colorGridDotWhiteboard": "rgb(55,50,48)",
|
|
2426
|
+
"--fibery-color-colorSelectionWhiteboardBorderEnabled": "rgb(0,106,135)",
|
|
2427
|
+
"--fibery-color-colorHighlightWhiteboardSelection": "rgb(0,106,135)",
|
|
2428
|
+
"--fibery-color-colorHighlightWhiteboardSelectionLocked": "rgba(117, 111, 109, 0.5)",
|
|
2429
|
+
"--fibery-color-colorSelectionWhiteboardBorderDisabled": "rgba(117, 111, 109, 0.5)",
|
|
2430
|
+
"--fibery-color-colorPlaceholderWhiteboardDefault": "rgba(0, 106, 135, 0.2)",
|
|
2431
|
+
"--fibery-color-colorLinkPointWhiteboardDefault": "rgb(0,106,135)",
|
|
2432
|
+
"--fibery-color-colorLinkPointWhiteboardFillDefault": "#2D2623",
|
|
2433
|
+
"--fibery-color-colorMapWhiteboardPreviewDefault": "rgba(0, 106, 135, 0.4)",
|
|
2434
|
+
"--fibery-color-colorCardWhiteboardShadowDefault": "rgba(166, 159, 157, 0.05)",
|
|
2435
|
+
"--fibery-color-colorCardWhiteboardBgDefault": "rgb(50,45,43)",
|
|
2436
|
+
"--fibery-color-colorCardWhiteboardBorderDefault": "rgba(224, 212, 206, 0.2)",
|
|
2437
|
+
"--fibery-color-colorUnitHeaderWhiteboardDefault": "rgba(224, 212, 206, 0.6)",
|
|
2438
|
+
"--fibery-color-colorUnitWhiteboardBgDefault": "rgb(55,50,48)",
|
|
2439
|
+
"--fibery-color-colorUnitWhiteboardBorderDefault": "rgba(224, 212, 206, 0.25)",
|
|
2440
|
+
"--fibery-color-colorSectionWhiteboardBgInactive": "rgb(32,27,25)",
|
|
2441
|
+
"--fibery-color-colorSectionWhiteboardBorderInactive": "rgb(55,50,48)",
|
|
2442
|
+
"--fibery-color-colorEmbedWhiteboardEditBorder": "rgba(0, 112, 97, 0.9)",
|
|
2443
|
+
"--fibery-color-colorTextWhiteboardDefault": "rgb(224,212,206)",
|
|
2444
|
+
"--fibery-color-colorTextWhiteboardDisabled": "rgb(117,111,109)",
|
|
2445
|
+
"--fibery-color-colorTextWhiteboardAccent": "rgba(26, 22, 20, 0.6)",
|
|
2446
|
+
"--fibery-color-colorTextWhiteboardInversedDefault": "rgb(255,253,250)",
|
|
2447
|
+
"--fibery-color-instrumentsMenuBg": "rgb(45,40,38)",
|
|
2448
|
+
"--fibery-color-instrumentsMenuShadow":
|
|
2449
|
+
"0 0 1px 0 rgb(55,50,48), 0 4px 6px 0 rgba(26, 22, 20, 0.05), 0 3px 12px 0 rgba(26, 22, 20, 0.15)",
|
|
2450
|
+
"--fibery-color-commentBubbleBg": "rgb(55,50,48)",
|
|
2451
|
+
"--fibery-color-commentsPanelShadow":
|
|
2452
|
+
"0 0 1px 0 rgb(55,50,48), 0 4px 6px 0 rgba(26, 22, 20, 0.05), 0 3px 12px 0 rgba(26, 22, 20, 0.15)",
|
|
2453
|
+
"--fibery-color-searchFiltersBg": "rgb(32,27,25)",
|
|
2454
|
+
"--fibery-color-selectedColorBorder": "rgba(232, 226, 219, 0.25)",
|
|
2455
|
+
"--fibery-color-colorBgSegmentedControlDefault": "rgb(26,22,20)",
|
|
2456
|
+
"--fibery-color-colorBgSegmentedControlActive": "rgb(55,50,48)",
|
|
2457
|
+
"--fibery-color-colorBgSegmentedControlHover": "rgb(45,40,38)",
|
|
2458
|
+
"--fibery-color-colorBorderSegmentedControlDefault": "rgb(65,60,58)",
|
|
2459
|
+
"--fibery-color-colorBgBannerNeutral": "rgb(39,35,33)",
|
|
2460
|
+
"--fibery-color-colorBgBannerPrimary": "rgb(8,44,54)",
|
|
2461
|
+
"--fibery-color-colorBgBannerWarning": "rgb(43,36,0)",
|
|
2462
|
+
"--fibery-color-colorBgBannerError": "rgb(67,22,25)",
|
|
2463
|
+
"--fibery-color-colorBgBannerSuccess": "rgb(11,46,40)",
|
|
2464
|
+
"--fibery-color-colorIconBannerNeutral": "rgb(224,212,206)",
|
|
2465
|
+
"--fibery-color-colorIconBannerAccent": "rgb(124,189,210)",
|
|
2466
|
+
"--fibery-color-colorIconBannerWarning": "rgb(227,198,0)",
|
|
2467
|
+
"--fibery-color-colorIconBannerError": "rgb(244,146,147)",
|
|
2468
|
+
"--fibery-color-colorIconBannerSuccess": "rgb(128,192,180)",
|
|
2469
|
+
"--fibery-color-colorTextBannerNeutral": "rgb(224,212,206)",
|
|
2470
|
+
"--fibery-color-colorTextBannerAccent": "rgb(124,189,210)",
|
|
2471
|
+
"--fibery-color-colorTextBannerWarning": "rgb(227,198,0)",
|
|
2472
|
+
"--fibery-color-colorTextBannerError": "rgb(244,146,147)",
|
|
2473
|
+
"--fibery-color-colorTextBannerSuccess": "rgb(128,192,180)",
|
|
2474
|
+
"--fibery-color-colorBgChargebeeInfoBox": "rgb(26,22,20)",
|
|
2475
|
+
"--fibery-color-newCommentHorizontalRulerColor": "rgb(237,150,150)",
|
|
2476
|
+
"--fibery-color-colorBgErrorMessage": "rgb(237,150,150)",
|
|
2477
|
+
"--fibery-color-colorBorderLogoGrid": "rgb(45,40,38)",
|
|
2478
|
+
"--fibery-color-colorBorderLogoGridSubtle": "rgb(45,40,38)",
|
|
2479
|
+
"--fibery-color-colorBorderLogoGridMedium": "rgb(45,40,38)",
|
|
2480
|
+
"--fibery-color-colorStrokeLogoDashed": "rgb(86,80,78)",
|
|
2481
|
+
"--fibery-color-colorBgLogoCardTransparent": "rgb(32,27,25)",
|
|
2482
|
+
"--fibery-color-colorBgLogoCardDark": "rgb(86,80,78)",
|
|
2483
|
+
"--fibery-color-colorBgLogoCardMedium": "rgb(45,40,38)",
|
|
2484
|
+
"--fibery-color-colorBgSkeletonFrom": "rgba(31, 26, 24, 0.05)",
|
|
2485
|
+
"--fibery-color-colorBgSkeletonTo": "rgba(31, 26, 24, 0.1)",
|
|
2486
|
+
"--fibery-color-colorShadowInsetEdge": "rgba(31, 26, 24, 0.05)",
|
|
2487
|
+
"--fibery-color-colorShadowBorder": "rgba(31, 26, 24, 0.1)",
|
|
2488
|
+
"--fibery-color-colorShadowElevation": "rgba(255, 253, 250, 0.1)",
|
|
2489
|
+
"--fibery-color-colorShadowOutline": "rgba(255, 253, 250, 0.2)",
|
|
2490
|
+
"--fibery-color-colorPlaceholder": "rgba(31, 26, 24, 0.4)",
|
|
2491
|
+
"--fibery-color-colorPlaceholderSubtle": "rgba(31, 26, 24, 0.25)",
|
|
2492
|
+
"--fibery-color-colorBgSubtleLight": "rgba(31, 26, 24, 0.05)",
|
|
2493
|
+
"--fibery-color-colorStrokeSurface": "#1F1A18",
|
|
2494
|
+
"--fibery-color-colorTextMilestone": "rgba(255, 253, 250, 0.5)",
|
|
2495
|
+
"--fibery-color-colorSpinnerIcon": "rgba(255, 253, 250, 0.9)",
|
|
2496
|
+
"--fibery-color-colorSpinnerBg": "rgba(255, 253, 250, 0.1)",
|
|
2497
|
+
"--fibery-color-colorBgLaneSubtle": "rgba(255, 253, 250, 0.05)",
|
|
2498
|
+
"--fibery-color-opacity15": "0.15",
|
|
2499
|
+
"--fibery-color-opacity20": "0.2",
|
|
2500
|
+
"--fibery-color-opacity25": "0.25",
|
|
2501
|
+
"--fibery-color-opacity30": "0.3",
|
|
2502
|
+
"--fibery-color-opacity40": "0.4",
|
|
2503
|
+
"--fibery-color-opacity50": "0.5",
|
|
2504
|
+
"--fibery-color-opacity60": "0.6",
|
|
2505
|
+
"--fibery-color-opacity65": "0.65",
|
|
2506
|
+
"--fibery-color-opacity70": "0.7",
|
|
2507
|
+
"--fibery-color-opacity75": "0.75",
|
|
2508
|
+
"--fibery-color-opacity80": "0.8",
|
|
2509
|
+
"--fibery-color-opacity85": "0.85",
|
|
2510
|
+
"--fibery-color-opacity90": "0.9",
|
|
2511
|
+
"--fibery-color-whiteA10": "rgba(31, 26, 24, 0.1)",
|
|
2512
|
+
"--fibery-color-whiteA40": "rgba(31, 26, 24, 0.4)",
|
|
2513
|
+
"--fibery-color-whiteA100": "#1F1A18",
|
|
2514
|
+
"--fibery-color-colorBgFileOverlay": "rgba(31, 26, 24, 0.6)",
|
|
2515
|
+
"--fibery-color-colorBgScrollFade": "rgba(31, 26, 24, 0.15)",
|
|
2516
|
+
"--fibery-color-colorStrokeSelectedOutline": "rgba(255, 253, 250, 0.75)",
|
|
2517
|
+
"--fibery-color-scrollbar": "rgba(65, 60, 58, 0.5)",
|
|
2518
|
+
},
|
|
2519
|
+
} as const;
|