@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.
Files changed (1739) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/esfint.config.mjs +17 -0
  3. package/package.json +25 -18
  4. package/scripts/generate-icons.mjs +12 -9
  5. package/src/a11y-color.ts +3 -1
  6. package/src/action-badge.tsx +8 -5
  7. package/src/actions-menu/actions-menu-checkbox-item.tsx +5 -3
  8. package/src/actions-menu/actions-menu-confirmation.tsx +1 -0
  9. package/src/actions-menu/actions-menu-item.tsx +10 -8
  10. package/src/actions-menu/actions-menu-props.tsx +4 -3
  11. package/src/actions-menu/actions-menu-separator.tsx +1 -1
  12. package/src/actions-menu/actions-menu-sub-command-menu.tsx +5 -4
  13. package/src/actions-menu/actions-menu-sub-menu.tsx +5 -5
  14. package/src/actions-menu/actions-menu.tsx +16 -19
  15. package/src/actions-menu/async-actions-menu-item.tsx +3 -1
  16. package/src/actions-menu/context-actions-menu.tsx +9 -7
  17. package/src/actions-menu/contexts/actions-menu-context.tsx +2 -1
  18. package/src/actions-menu/contexts/actions-menu-dangerous-rows.tsx +2 -1
  19. package/src/actions-menu/index.tsx +1 -1
  20. package/src/actions-panel.tsx +3 -1
  21. package/src/ai/max-tokens.tsx +2 -1
  22. package/src/ai/model.tsx +4 -3
  23. package/src/ai/temperature.tsx +4 -3
  24. package/src/animated-height-container.tsx +5 -3
  25. package/src/animated-number.tsx +2 -1
  26. package/src/animations.tsx +2 -1
  27. package/src/antd/ant-modal.tsx +158 -8
  28. package/src/antd/ant-upload.tsx +285 -25
  29. package/src/antd/auto-complete.tsx +145 -0
  30. package/src/antd/auto-width-transparent-textarea.tsx +13 -5
  31. package/src/antd/global-overrides.ts +352 -0
  32. package/src/antd/index.tsx +4 -2
  33. package/src/antd/input-number.tsx +99 -12
  34. package/src/antd/input.tsx +130 -10
  35. package/src/antd/styles.ts +91 -32
  36. package/src/antd/tabs.tsx +174 -0
  37. package/src/antd/utils.tsx +2 -1
  38. package/src/apca.lc-low.test.ts +69 -0
  39. package/src/apca.test.ts +186 -0
  40. package/src/apca.ts +130 -0
  41. package/src/app-icon-with-fallback.tsx +9 -18
  42. package/src/app-icon-wrapper.tsx +4 -2
  43. package/src/app-icon.tsx +6 -20
  44. package/src/app-icons.json +13096 -0
  45. package/src/app-mode.tsx +1 -0
  46. package/src/avatar.tsx +15 -59
  47. package/src/axis-header.tsx +6 -4
  48. package/src/badge.tsx +5 -3
  49. package/src/banner/banner-action.tsx +3 -1
  50. package/src/banner/banner-context.tsx +2 -1
  51. package/src/banner/banner.tsx +23 -17
  52. package/src/beta-badge.tsx +4 -4
  53. package/src/board-table-loader.tsx +3 -2
  54. package/src/box.tsx +14 -7
  55. package/src/breadcrumb.tsx +5 -3
  56. package/src/breakpoints.tsx +2 -1
  57. package/src/button/actions-button-compact.tsx +5 -3
  58. package/src/button/actions-button.tsx +4 -2
  59. package/src/button/add-button.tsx +4 -2
  60. package/src/button/back-button.tsx +4 -2
  61. package/src/button/base-button.tsx +4 -2
  62. package/src/button/button-group.tsx +1 -0
  63. package/src/button/button.tsx +15 -13
  64. package/src/button/icon-button.tsx +5 -3
  65. package/src/button/make-button-colors.ts +10 -9
  66. package/src/button/select-button.tsx +4 -2
  67. package/src/canvas-colors.ts +15 -14
  68. package/src/card-container.tsx +3 -2
  69. package/src/card-hidden-link.tsx +1 -1
  70. package/src/checkbox-multi-select.tsx +6 -5
  71. package/src/checkbox.tsx +61 -17
  72. package/src/collapsible-section.tsx +6 -4
  73. package/src/color-adjuster.ts +128 -0
  74. package/src/color-filter.test.ts +2 -49
  75. package/src/color-filter.ts +42 -66
  76. package/src/color-inspect.ts +76 -0
  77. package/src/color-picker/color-picker-or-loader.tsx +24 -0
  78. package/src/color-picker/index.tsx +97 -17
  79. package/src/color-picker/slider-pointer.tsx +16 -0
  80. package/src/color-picker/swatch.tsx +8 -5
  81. package/src/color-utils.test.ts +6 -274
  82. package/src/color-utils.ts +17 -139
  83. package/src/command-menu/index.tsx +4 -2
  84. package/src/command-menu/nested-command-menu.tsx +9 -7
  85. package/src/comment.tsx +11 -3
  86. package/src/context-menu/index.tsx +1 -0
  87. package/src/count-badge.tsx +13 -3
  88. package/src/country-selector.tsx +2 -1
  89. package/src/date-picker/autocomplete.tsx +2 -1
  90. package/src/date-picker/contexts.ts +1 -1
  91. package/src/date-picker/date-range-input.tsx +8 -6
  92. package/src/date-picker/date-range-picker-popup-content.tsx +27 -23
  93. package/src/date-picker/date-range-picker.tsx +16 -15
  94. package/src/date-picker/day-with-start-end-buttons.tsx +5 -2
  95. package/src/date-picker/fake-date-input.tsx +4 -3
  96. package/src/date-picker/relative-date-picker.tsx +19 -15
  97. package/src/date-picker/single-date-input.tsx +7 -5
  98. package/src/date-picker/single-date-picker-popup-content.tsx +6 -5
  99. package/src/date-picker/single-date-picker.tsx +21 -19
  100. package/src/date-picker/styles.ts +1 -0
  101. package/src/date-picker/types.ts +6 -5
  102. package/src/date-picker/utils.ts +3 -2
  103. package/src/date-picker/with-popup-control.tsx +5 -10
  104. package/src/day-select/day-select.tsx +1 -0
  105. package/src/day-select/iso-week-day-select.tsx +3 -1
  106. package/src/day-select/mount-day-select.tsx +2 -1
  107. package/src/day-select/week-day-select.tsx +4 -2
  108. package/src/delayed.tsx +2 -1
  109. package/src/design-system/alpha.ts +7 -4
  110. package/src/design-system/animation.ts +13 -10
  111. package/src/design-system/colors-callout.neutral-dark.test.ts +78 -0
  112. package/src/design-system/colors-callout.neutral-light.test.ts +78 -0
  113. package/src/design-system/colors-callout.warm-dark.test.ts +78 -0
  114. package/src/design-system/colors-callout.warm-light.test.ts +78 -0
  115. package/src/design-system/colors-css.ts +6 -2
  116. package/src/design-system/colors-enum._.template +22 -0
  117. package/src/design-system/colors-enum.dark.neutral.test.ts +367 -0
  118. package/src/design-system/colors-enum.dark.warm.test.ts +367 -0
  119. package/src/design-system/colors-enum.light.neutral.test.ts +367 -0
  120. package/src/design-system/colors-enum.light.warm.test.ts +367 -0
  121. package/src/design-system/colors-highlight.neutral-dark.test.ts +78 -0
  122. package/src/design-system/colors-highlight.neutral-light.test.ts +78 -0
  123. package/src/design-system/colors-highlight.warm-dark.test.ts +78 -0
  124. package/src/design-system/colors-highlight.warm-light.test.ts +78 -0
  125. package/src/design-system/colors-js.test.ts +25 -169
  126. package/src/design-system/colors-js.ts +16 -24
  127. package/src/design-system/colors-swatches.ts +43 -0
  128. package/src/design-system/colors.test.ts +1 -22
  129. package/src/design-system/colors.ts +56 -134
  130. package/src/design-system/def.ts +21 -13
  131. package/src/design-system/fns.adaptive.test.ts +149 -0
  132. package/src/design-system/fns.badge.dark.neutral.test.ts +152 -0
  133. package/src/design-system/fns.badge.dark.warm.test.ts +152 -0
  134. package/src/design-system/fns.badge.light.neutral.test.ts +152 -0
  135. package/src/design-system/fns.badge.light.warm.test.ts +152 -0
  136. package/src/design-system/fns.deneutralize.test.ts +44 -0
  137. package/src/design-system/fns.enum.green-on-turquoise.test.ts +34 -0
  138. package/src/design-system/fns.enum.ts +79 -0
  139. package/src/design-system/fns.icon.dark.neutral.test.ts +124 -0
  140. package/src/design-system/fns.icon.dark.warm.test.ts +124 -0
  141. package/src/design-system/fns.icon.light.neutral.test.ts +124 -0
  142. package/src/design-system/fns.icon.light.warm.test.ts +124 -0
  143. package/src/design-system/fns.icon.ts +144 -0
  144. package/src/design-system/fns.ts +133 -0
  145. package/src/design-system/theme.test.ts +6 -5
  146. package/src/design-system/theme.ts +11 -13
  147. package/src/design-system/types.ts +20 -4
  148. package/src/design-system/typography.ts +196 -40
  149. package/src/design-system/vars.test.ts +10 -15
  150. package/src/design-system/vars.ts +42 -23
  151. package/src/design-system.ts +16 -3
  152. package/src/dnd.tsx +3 -2
  153. package/src/dot.tsx +4 -2
  154. package/src/double-apply.ts +19 -0
  155. package/src/dropdown-menu/index.tsx +1 -0
  156. package/src/emoji-picker/app-icon-picker.tsx +6 -4
  157. package/src/emoji-picker/emoji-picker-content-with-color.tsx +6 -4
  158. package/src/emoji-picker/emoji-picker-preview-footer.tsx +5 -4
  159. package/src/emoji-picker/emoji-picker.tsx +3 -2
  160. package/src/emoji-picker/emoji.tsx +4 -2
  161. package/src/emoji-picker/icon-emoji-picker.tsx +8 -5
  162. package/src/emoji-picker/primitives/category-label.tsx +4 -5
  163. package/src/emoji-picker/primitives/content.tsx +4 -2
  164. package/src/emoji-picker/primitives/emoji.tsx +4 -3
  165. package/src/emoji-picker/primitives/footer.tsx +1 -0
  166. package/src/emoji-picker/primitives/grid-item.tsx +1 -0
  167. package/src/emoji-picker/primitives/grid.tsx +11 -8
  168. package/src/emoji-picker/primitives/header.tsx +1 -0
  169. package/src/emoji-picker/primitives/preview-provider.tsx +2 -2
  170. package/src/emoji-picker/primitives/root.tsx +6 -5
  171. package/src/emoji-picker/primitives/search-provider.tsx +1 -1
  172. package/src/emoji-picker/primitives/search.tsx +7 -7
  173. package/src/emoji-picker/primitives/skin-provider.tsx +3 -2
  174. package/src/emoji-picker/primitives/skin-tone.tsx +5 -5
  175. package/src/emoji-picker/stores/emoji-data-store.tsx +2 -1
  176. package/src/emoji-picker/stores/lazy-icon-data-store.tsx +5 -3
  177. package/src/emoji-picker/stores/static-emoji-data-store.tsx +3 -1
  178. package/src/emoji-picker/use-emoji-found.tsx +2 -1
  179. package/src/emoji-picker/use-responsive-emoji-size.ts +2 -1
  180. package/src/emoji-picker/utils/emoji-set.ts +2 -1
  181. package/src/emoji-picker/utils/emoji-support.ts +2 -2
  182. package/src/emoji.tsx +1 -0
  183. package/src/empty-state/empty-state-emoji.tsx +1 -0
  184. package/src/empty-state/empty-state.tsx +4 -5
  185. package/src/empty-value.tsx +2 -1
  186. package/src/errors.ts +1 -1
  187. package/src/favorites-icon.tsx +6 -5
  188. package/src/fibermoji-placeholder.tsx +57 -16
  189. package/src/field-container.tsx +9 -9
  190. package/src/field-icon.tsx +3 -2
  191. package/src/field-type-icon.tsx +31 -31
  192. package/src/file-item/file-icon.tsx +7 -7
  193. package/src/file-item/file-menu-items.tsx +9 -8
  194. package/src/file-item/file-preview-actions.tsx +4 -4
  195. package/src/file-item/file-title.tsx +2 -1
  196. package/src/file-item.tsx +9 -7
  197. package/src/flags.ts +4 -2
  198. package/src/form-field-loader.tsx +3 -1
  199. package/src/form-utils.ts +1 -1
  200. package/src/guide-link.tsx +2 -2
  201. package/src/header-layout.tsx +15 -13
  202. package/src/highlight-colors.test.ts +69 -37
  203. package/src/highlight-colors.ts +20 -47
  204. package/src/hint.tsx +6 -4
  205. package/src/hotkey-scope.test.ts +120 -0
  206. package/src/hotkey-scope.tsx +42 -0
  207. package/src/hoverable-via-display.tsx +2 -2
  208. package/src/hoverable.tsx +1 -1
  209. package/src/html-styles.ts +15 -16
  210. package/src/hue-shift.test.ts +1 -1
  211. package/src/icons/ast/error-circle-filled.ts +12 -0
  212. package/src/icons/ast/index.tsx +448 -447
  213. package/src/icons/generate-icon-from-ast.ts +1 -0
  214. package/src/icons/get-paths.ts +1 -1
  215. package/src/icons/get-shift-style.ts +1 -1
  216. package/src/icons/icon.tsx +86 -0
  217. package/src/icons/react/abort.tsx +18 -0
  218. package/src/icons/react/access-template.tsx +18 -0
  219. package/src/icons/react/activity-filled.tsx +18 -0
  220. package/src/icons/react/activity-log.tsx +18 -0
  221. package/src/icons/react/activity.tsx +18 -0
  222. package/src/icons/react/add-after.tsx +18 -0
  223. package/src/icons/react/add-before.tsx +18 -0
  224. package/src/icons/react/add-compact.tsx +18 -0
  225. package/src/icons/react/add-database.tsx +18 -0
  226. package/src/icons/react/add-group.tsx +18 -0
  227. package/src/icons/react/add-integration.tsx +18 -0
  228. package/src/icons/react/add-reactions.tsx +18 -0
  229. package/src/icons/react/add.tsx +18 -0
  230. package/src/icons/react/ai-assistant-filled.tsx +18 -0
  231. package/src/icons/react/ai-assistant.tsx +18 -0
  232. package/src/icons/react/ai-avatar.tsx +18 -0
  233. package/src/icons/react/ai-fibery-build.tsx +18 -0
  234. package/src/icons/react/ai-search.tsx +18 -0
  235. package/src/icons/react/alert-triangle.tsx +18 -0
  236. package/src/icons/react/anthropic.tsx +18 -0
  237. package/src/icons/react/app-details.tsx +18 -0
  238. package/src/icons/react/app-store-one-color.tsx +18 -0
  239. package/src/icons/react/app-store.tsx +18 -0
  240. package/src/icons/react/app-templates.tsx +18 -0
  241. package/src/icons/react/app-webhooks.tsx +18 -0
  242. package/src/icons/react/app-wiki.tsx +18 -0
  243. package/src/icons/react/app.tsx +18 -0
  244. package/src/icons/react/appearance-auto.tsx +18 -0
  245. package/src/icons/react/appearance-dark.tsx +18 -0
  246. package/src/icons/react/appearance-light.tsx +18 -0
  247. package/src/icons/react/apple.tsx +18 -0
  248. package/src/icons/react/arrow-bar-down.tsx +18 -0
  249. package/src/icons/react/arrow-bar-left.tsx +18 -0
  250. package/src/icons/react/arrow-bar-right.tsx +18 -0
  251. package/src/icons/react/arrow-bar-up.tsx +18 -0
  252. package/src/icons/react/arrow-bottom.tsx +18 -0
  253. package/src/icons/react/arrow-collapse-vertical.tsx +18 -0
  254. package/src/icons/react/arrow-collapse.tsx +18 -0
  255. package/src/icons/react/arrow-forward.tsx +18 -0
  256. package/src/icons/react/arrow-left.tsx +18 -0
  257. package/src/icons/react/arrow-right.tsx +18 -0
  258. package/src/icons/react/arrow-top.tsx +18 -0
  259. package/src/icons/react/arrow-up-circle.tsx +18 -0
  260. package/src/icons/react/arrows-right-left.tsx +18 -0
  261. package/src/icons/react/ask-for-input.tsx +18 -0
  262. package/src/icons/react/asterisk.tsx +18 -0
  263. package/src/icons/react/atom.tsx +18 -0
  264. package/src/icons/react/automations-cancelled.tsx +18 -0
  265. package/src/icons/react/automations-disabled.tsx +18 -0
  266. package/src/icons/react/automations-error.tsx +18 -0
  267. package/src/icons/react/automations-in-progress.tsx +18 -0
  268. package/src/icons/react/automations-not-started.tsx +18 -0
  269. package/src/icons/react/automations-success.tsx +18 -0
  270. package/src/icons/react/back.tsx +18 -0
  271. package/src/icons/react/backlog-icon.tsx +18 -0
  272. package/src/icons/react/batch-actions-icon.tsx +18 -0
  273. package/src/icons/react/bell-circle.tsx +18 -0
  274. package/src/icons/react/bell-filled.tsx +18 -0
  275. package/src/icons/react/bell-off.tsx +18 -0
  276. package/src/icons/react/bell-ringing.tsx +18 -0
  277. package/src/icons/react/bell-x.tsx +18 -0
  278. package/src/icons/react/bolt.tsx +18 -0
  279. package/src/icons/react/bring-forward.tsx +18 -0
  280. package/src/icons/react/bring-to-front.tsx +18 -0
  281. package/src/icons/react/cards.tsx +18 -0
  282. package/src/icons/react/chat-ai.tsx +18 -0
  283. package/src/icons/react/chat-bubble.tsx +18 -0
  284. package/src/icons/react/chat-float.tsx +18 -0
  285. package/src/icons/react/chat-sidebar.tsx +18 -0
  286. package/src/icons/react/chat.tsx +18 -0
  287. package/src/icons/react/check-circle-filled.tsx +18 -0
  288. package/src/icons/react/check-circle.tsx +18 -0
  289. package/src/icons/react/checked.tsx +18 -0
  290. package/src/icons/react/clean.tsx +18 -0
  291. package/src/icons/react/clear-input-filled.tsx +18 -0
  292. package/src/icons/react/clear-value.tsx +18 -0
  293. package/src/icons/react/clear.tsx +18 -0
  294. package/src/icons/react/clock-alarm.tsx +18 -0
  295. package/src/icons/react/clock-forward.tsx +18 -0
  296. package/src/icons/react/clock.tsx +18 -0
  297. package/src/icons/react/close.tsx +18 -0
  298. package/src/icons/react/collapse-all-horizontal.tsx +18 -0
  299. package/src/icons/react/collapse-all.tsx +18 -0
  300. package/src/icons/react/color-coding-filled.tsx +18 -0
  301. package/src/icons/react/color-coding.tsx +18 -0
  302. package/src/icons/react/columns-2.tsx +18 -0
  303. package/src/icons/react/columns-4.tsx +18 -0
  304. package/src/icons/react/columns.tsx +18 -0
  305. package/src/icons/react/comment-bubble.tsx +18 -0
  306. package/src/icons/react/copy.tsx +18 -0
  307. package/src/icons/react/create.tsx +18 -0
  308. package/src/icons/react/credits-filled.tsx +18 -0
  309. package/src/icons/react/cross-circle.tsx +18 -0
  310. package/src/icons/react/crosshair.tsx +18 -0
  311. package/src/icons/react/csv.tsx +18 -0
  312. package/src/icons/react/database-off.tsx +18 -0
  313. package/src/icons/react/database-stroke.tsx +18 -0
  314. package/src/icons/react/database.tsx +18 -0
  315. package/src/icons/react/date-range.tsx +18 -0
  316. package/src/icons/react/delete.tsx +18 -0
  317. package/src/icons/react/demo.tsx +18 -0
  318. package/src/icons/react/dependency.tsx +18 -0
  319. package/src/icons/react/dividers.tsx +18 -0
  320. package/src/icons/react/document.tsx +18 -0
  321. package/src/icons/react/double-arrow-left.tsx +18 -0
  322. package/src/icons/react/double-arrow-right.tsx +18 -0
  323. package/src/icons/react/double-line.tsx +18 -0
  324. package/src/icons/react/drag-block-handle-single.tsx +18 -0
  325. package/src/icons/react/drag-block-handle.tsx +18 -0
  326. package/src/icons/react/drag-handle.tsx +18 -0
  327. package/src/icons/react/duplicate.tsx +18 -0
  328. package/src/icons/react/dynamic-filter-value.tsx +18 -0
  329. package/src/icons/react/edit-value.tsx +18 -0
  330. package/src/icons/react/email.tsx +18 -0
  331. package/src/icons/react/emoji-delete.tsx +18 -0
  332. package/src/icons/react/entity-create-filled.tsx +18 -0
  333. package/src/icons/react/entity-create.tsx +18 -0
  334. package/src/icons/react/entity-merge.tsx +18 -0
  335. package/src/icons/react/equation.tsx +18 -0
  336. package/src/icons/react/error-circle-filled.tsx +18 -0
  337. package/src/icons/react/expand-all-horizontal.tsx +18 -0
  338. package/src/icons/react/expand-all.tsx +18 -0
  339. package/src/icons/react/export.tsx +18 -0
  340. package/src/icons/react/extension-assignments.tsx +18 -0
  341. package/src/icons/react/extension-avatar.tsx +18 -0
  342. package/src/icons/react/extension-comments.tsx +18 -0
  343. package/src/icons/react/extension-files.tsx +18 -0
  344. package/src/icons/react/extension-references.tsx +18 -0
  345. package/src/icons/react/extension-workflow.tsx +18 -0
  346. package/src/icons/react/eye.tsx +18 -0
  347. package/src/icons/react/favorites-checked.tsx +18 -0
  348. package/src/icons/react/favorites-off.tsx +18 -0
  349. package/src/icons/react/favorites.tsx +18 -0
  350. package/src/icons/react/fibery-desktop-app.tsx +18 -0
  351. package/src/icons/react/fibery-mono.tsx +18 -0
  352. package/src/icons/react/field-unit.tsx +18 -0
  353. package/src/icons/react/fields.tsx +18 -0
  354. package/src/icons/react/figma.tsx +18 -0
  355. package/src/icons/react/file-archive.tsx +18 -0
  356. package/src/icons/react/file-broken.tsx +18 -0
  357. package/src/icons/react/file-counter.tsx +18 -0
  358. package/src/icons/react/file-document.tsx +18 -0
  359. package/src/icons/react/file-download.tsx +18 -0
  360. package/src/icons/react/file-image.tsx +18 -0
  361. package/src/icons/react/file-multiple.tsx +18 -0
  362. package/src/icons/react/file-other.tsx +18 -0
  363. package/src/icons/react/file-presentation.tsx +18 -0
  364. package/src/icons/react/file-table.tsx +18 -0
  365. package/src/icons/react/file-upload.tsx +18 -0
  366. package/src/icons/react/file-video.tsx +18 -0
  367. package/src/icons/react/filter.tsx +18 -0
  368. package/src/icons/react/fit-to-screen.tsx +18 -0
  369. package/src/icons/react/focus-mode-off.tsx +18 -0
  370. package/src/icons/react/focus-mode.tsx +18 -0
  371. package/src/icons/react/folder-favorite.tsx +18 -0
  372. package/src/icons/react/folder.tsx +18 -0
  373. package/src/icons/react/form-with-cover.tsx +18 -0
  374. package/src/icons/react/form-without-cover.tsx +18 -0
  375. package/src/icons/react/fullscreen-mode-off-icon.tsx +18 -0
  376. package/src/icons/react/fullscreen-mode-on-icon.tsx +18 -0
  377. package/src/icons/react/fullscreen-mode-on.tsx +18 -0
  378. package/src/icons/react/gift.tsx +18 -0
  379. package/src/icons/react/github.tsx +18 -0
  380. package/src/icons/react/gitlab.tsx +18 -0
  381. package/src/icons/react/globe-simple.tsx +18 -0
  382. package/src/icons/react/globe-unpublish.tsx +18 -0
  383. package/src/icons/react/globe.tsx +18 -0
  384. package/src/icons/react/go-to.tsx +18 -0
  385. package/src/icons/react/google-drive.tsx +18 -0
  386. package/src/icons/react/google-map.tsx +18 -0
  387. package/src/icons/react/graduation-cap-filled.tsx +18 -0
  388. package/src/icons/react/headphones-ai.tsx +18 -0
  389. package/src/icons/react/headphones.tsx +18 -0
  390. package/src/icons/react/hide.tsx +18 -0
  391. package/src/icons/react/highlights.tsx +18 -0
  392. package/src/icons/react/hint.tsx +18 -0
  393. package/src/icons/react/home-filled.tsx +18 -0
  394. package/src/icons/react/home.tsx +18 -0
  395. package/src/icons/react/image-xmark.tsx +18 -0
  396. package/src/icons/react/import-filled.tsx +18 -0
  397. package/src/icons/react/import.tsx +18 -0
  398. package/src/icons/react/index.tsx +448 -447
  399. package/src/icons/react/info-circle-filled.tsx +18 -0
  400. package/src/icons/react/info-circle.tsx +18 -0
  401. package/src/icons/react/integration.tsx +18 -0
  402. package/src/icons/react/integrations-filled.tsx +18 -0
  403. package/src/icons/react/integrations-integration-discourse-color.tsx +18 -0
  404. package/src/icons/react/integrations-integration-intercom-color.tsx +18 -0
  405. package/src/icons/react/integrations-integration-slack-color.tsx +18 -0
  406. package/src/icons/react/integrations-integration-zendesk-color.tsx +18 -0
  407. package/src/icons/react/intercom.tsx +18 -0
  408. package/src/icons/react/invite-people.tsx +18 -0
  409. package/src/icons/react/items-timeline.tsx +18 -0
  410. package/src/icons/react/items.tsx +18 -0
  411. package/src/icons/react/jira.tsx +18 -0
  412. package/src/icons/react/key.tsx +18 -0
  413. package/src/icons/react/keyboard-hide-down.tsx +18 -0
  414. package/src/icons/react/lab.tsx +18 -0
  415. package/src/icons/react/layout-double.tsx +18 -0
  416. package/src/icons/react/layout-multiple.tsx +18 -0
  417. package/src/icons/react/layout-single.tsx +18 -0
  418. package/src/icons/react/left-panel.tsx +18 -0
  419. package/src/icons/react/level-plus.tsx +18 -0
  420. package/src/icons/react/levels.tsx +18 -0
  421. package/src/icons/react/line-divider.tsx +18 -0
  422. package/src/icons/react/line-jump.tsx +18 -0
  423. package/src/icons/react/link.tsx +18 -0
  424. package/src/icons/react/location-edit.tsx +18 -0
  425. package/src/icons/react/lock-outline.tsx +18 -0
  426. package/src/icons/react/lock.tsx +18 -0
  427. package/src/icons/react/logout.tsx +18 -0
  428. package/src/icons/react/loom.tsx +18 -0
  429. package/src/icons/react/loupe-zoom-in.tsx +18 -0
  430. package/src/icons/react/loupe-zoom-out.tsx +18 -0
  431. package/src/icons/react/loupe-zoom.tsx +18 -0
  432. package/src/icons/react/many-people.tsx +18 -0
  433. package/src/icons/react/map-mode.tsx +18 -0
  434. package/src/icons/react/markdown.tsx +18 -0
  435. package/src/icons/react/menu-collapser.tsx +18 -0
  436. package/src/icons/react/mermaid.tsx +18 -0
  437. package/src/icons/react/message-plus-square.tsx +18 -0
  438. package/src/icons/react/message-plus.tsx +18 -0
  439. package/src/icons/react/milestones.tsx +18 -0
  440. package/src/icons/react/minus.tsx +18 -0
  441. package/src/icons/react/miro.tsx +18 -0
  442. package/src/icons/react/mirror-off.tsx +18 -0
  443. package/src/icons/react/mirror-on.tsx +18 -0
  444. package/src/icons/react/mixpanel.tsx +18 -0
  445. package/src/icons/react/monitor.tsx +18 -0
  446. package/src/icons/react/more-compact.tsx +18 -0
  447. package/src/icons/react/more.tsx +18 -0
  448. package/src/icons/react/move-bottom.tsx +18 -0
  449. package/src/icons/react/move-left.tsx +18 -0
  450. package/src/icons/react/move-right.tsx +18 -0
  451. package/src/icons/react/move-space.tsx +18 -0
  452. package/src/icons/react/move-top.tsx +18 -0
  453. package/src/icons/react/network-add.tsx +18 -0
  454. package/src/icons/react/network.tsx +18 -0
  455. package/src/icons/react/no-border.tsx +18 -0
  456. package/src/icons/react/no-fill.tsx +18 -0
  457. package/src/icons/react/notifications.tsx +18 -0
  458. package/src/icons/react/obj-child.tsx +18 -0
  459. package/src/icons/react/obj-m2m.tsx +18 -0
  460. package/src/icons/react/obj-o2o.tsx +18 -0
  461. package/src/icons/react/obj-parent.tsx +18 -0
  462. package/src/icons/react/obj-self.tsx +18 -0
  463. package/src/icons/react/on-schedule.tsx +18 -0
  464. package/src/icons/react/open-ai.tsx +18 -0
  465. package/src/icons/react/open-as-page.tsx +18 -0
  466. package/src/icons/react/page-regular-mode.tsx +18 -0
  467. package/src/icons/react/page-wide-mode.tsx +18 -0
  468. package/src/icons/react/panel-add.tsx +18 -0
  469. package/src/icons/react/pencil.tsx +18 -0
  470. package/src/icons/react/people-check.tsx +18 -0
  471. package/src/icons/react/people.tsx +18 -0
  472. package/src/icons/react/photo.tsx +18 -0
  473. package/src/icons/react/pin-filled.tsx +18 -0
  474. package/src/icons/react/pin.tsx +18 -0
  475. package/src/icons/react/popup.tsx +18 -0
  476. package/src/icons/react/posts.tsx +18 -0
  477. package/src/icons/react/present-play.tsx +18 -0
  478. package/src/icons/react/present-stop.tsx +18 -0
  479. package/src/icons/react/print.tsx +18 -0
  480. package/src/icons/react/private-items.tsx +18 -0
  481. package/src/icons/react/question.tsx +18 -0
  482. package/src/icons/react/quick-filter-personal.tsx +18 -0
  483. package/src/icons/react/quick-filter.tsx +18 -0
  484. package/src/icons/react/read-only.tsx +18 -0
  485. package/src/icons/react/refresh.tsx +18 -0
  486. package/src/icons/react/remove-people.tsx +18 -0
  487. package/src/icons/react/remove.tsx +18 -0
  488. package/src/icons/react/reply.tsx +18 -0
  489. package/src/icons/react/reset-password.tsx +18 -0
  490. package/src/icons/react/restore.tsx +18 -0
  491. package/src/icons/react/richeditor-actions-more.tsx +18 -0
  492. package/src/icons/react/richeditor-block-callout.tsx +18 -0
  493. package/src/icons/react/richeditor-block-code.tsx +18 -0
  494. package/src/icons/react/richeditor-block-embed.tsx +18 -0
  495. package/src/icons/react/richeditor-block-entity.tsx +18 -0
  496. package/src/icons/react/richeditor-block-file.tsx +18 -0
  497. package/src/icons/react/richeditor-block-h1.tsx +18 -0
  498. package/src/icons/react/richeditor-block-h2.tsx +18 -0
  499. package/src/icons/react/richeditor-block-h3.tsx +18 -0
  500. package/src/icons/react/richeditor-block-h4.tsx +18 -0
  501. package/src/icons/react/richeditor-block-mention.tsx +18 -0
  502. package/src/icons/react/richeditor-block-paragraph.tsx +18 -0
  503. package/src/icons/react/richeditor-block-quote.tsx +18 -0
  504. package/src/icons/react/richeditor-checklist-create.tsx +18 -0
  505. package/src/icons/react/richeditor-comment-create.tsx +18 -0
  506. package/src/icons/react/richeditor-entity-link-create.tsx +18 -0
  507. package/src/icons/react/richeditor-history-redo.tsx +18 -0
  508. package/src/icons/react/richeditor-history-undo.tsx +18 -0
  509. package/src/icons/react/richeditor-image-align-center.tsx +18 -0
  510. package/src/icons/react/richeditor-image-align-left.tsx +18 -0
  511. package/src/icons/react/richeditor-image-align-right.tsx +18 -0
  512. package/src/icons/react/richeditor-image-upload.tsx +18 -0
  513. package/src/icons/react/richeditor-image-wrap-center.tsx +18 -0
  514. package/src/icons/react/richeditor-image-wrap-left.tsx +18 -0
  515. package/src/icons/react/richeditor-image-wrap-right.tsx +18 -0
  516. package/src/icons/react/richeditor-image-zoom.tsx +18 -0
  517. package/src/icons/react/richeditor-link-create.tsx +18 -0
  518. package/src/icons/react/richeditor-linkedhighlight-create.tsx +18 -0
  519. package/src/icons/react/richeditor-list-bullet.tsx +18 -0
  520. package/src/icons/react/richeditor-list-indent.tsx +18 -0
  521. package/src/icons/react/richeditor-list-ordered.tsx +18 -0
  522. package/src/icons/react/richeditor-list-unindent.tsx +18 -0
  523. package/src/icons/react/richeditor-mark-code.tsx +18 -0
  524. package/src/icons/react/richeditor-mark-em.tsx +18 -0
  525. package/src/icons/react/richeditor-mark-highlight.tsx +18 -0
  526. package/src/icons/react/richeditor-mark-strike.tsx +18 -0
  527. package/src/icons/react/richeditor-mark-strong.tsx +18 -0
  528. package/src/icons/react/richeditor-mark-text-background-color.tsx +18 -0
  529. package/src/icons/react/richeditor-mark-underline.tsx +18 -0
  530. package/src/icons/react/richeditor-open-link.tsx +18 -0
  531. package/src/icons/react/richeditor-table-create.tsx +18 -0
  532. package/src/icons/react/richeditor-unlink.tsx +18 -0
  533. package/src/icons/react/richeditor-video-upload.tsx +18 -0
  534. package/src/icons/react/right-panel.tsx +18 -0
  535. package/src/icons/react/rows.tsx +18 -0
  536. package/src/icons/react/rule-scheduled.tsx +18 -0
  537. package/src/icons/react/search-add.tsx +18 -0
  538. package/src/icons/react/search-filled.tsx +18 -0
  539. package/src/icons/react/search-remove.tsx +18 -0
  540. package/src/icons/react/search.tsx +18 -0
  541. package/src/icons/react/self-reference-off.tsx +18 -0
  542. package/src/icons/react/self-reference-on.tsx +18 -0
  543. package/src/icons/react/send-arrow.tsx +18 -0
  544. package/src/icons/react/send-backward.tsx +18 -0
  545. package/src/icons/react/send-to-back.tsx +18 -0
  546. package/src/icons/react/settings-filled.tsx +18 -0
  547. package/src/icons/react/settings-off.tsx +18 -0
  548. package/src/icons/react/settings.tsx +18 -0
  549. package/src/icons/react/share.tsx +18 -0
  550. package/src/icons/react/shared.tsx +18 -0
  551. package/src/icons/react/shield-keyhole.tsx +18 -0
  552. package/src/icons/react/show-author.tsx +18 -0
  553. package/src/icons/react/sidebar-fields-opened.tsx +18 -0
  554. package/src/icons/react/sidebar-fields.tsx +18 -0
  555. package/src/icons/react/sidebar.tsx +18 -0
  556. package/src/icons/react/simple-compass.tsx +18 -0
  557. package/src/icons/react/slack-icon.tsx +18 -0
  558. package/src/icons/react/slack.tsx +18 -0
  559. package/src/icons/react/slide-menu-close.tsx +18 -0
  560. package/src/icons/react/slide-menu-filled.tsx +18 -0
  561. package/src/icons/react/slide-menu-open.tsx +18 -0
  562. package/src/icons/react/slide-menu.tsx +18 -0
  563. package/src/icons/react/smart-folder.tsx +18 -0
  564. package/src/icons/react/sort-on-bottom.tsx +18 -0
  565. package/src/icons/react/sort-on-top.tsx +18 -0
  566. package/src/icons/react/sort.tsx +18 -0
  567. package/src/icons/react/space-app.tsx +18 -0
  568. package/src/icons/react/space-generate.tsx +18 -0
  569. package/src/icons/react/space-list.tsx +18 -0
  570. package/src/icons/react/space-scratch.tsx +18 -0
  571. package/src/icons/react/space-template.tsx +18 -0
  572. package/src/icons/react/spinner.tsx +18 -0
  573. package/src/icons/react/success.tsx +18 -0
  574. package/src/icons/react/suggest-integration.tsx +18 -0
  575. package/src/icons/react/switch-to-mention.tsx +18 -0
  576. package/src/icons/react/switch-to-text.tsx +18 -0
  577. package/src/icons/react/switch-to-widget.tsx +18 -0
  578. package/src/icons/react/table-layout.tsx +18 -0
  579. package/src/icons/react/template.tsx +18 -0
  580. package/src/icons/react/templates-filled.tsx +18 -0
  581. package/src/icons/react/templates.tsx +18 -0
  582. package/src/icons/react/terminal.tsx +18 -0
  583. package/src/icons/react/text-no-wrap.tsx +18 -0
  584. package/src/icons/react/text-tool-align-bottom.tsx +18 -0
  585. package/src/icons/react/text-tool-align-middle.tsx +18 -0
  586. package/src/icons/react/text-tool-align-top.tsx +18 -0
  587. package/src/icons/react/text-wrap.tsx +18 -0
  588. package/src/icons/react/thumbs-down.tsx +18 -0
  589. package/src/icons/react/thumbs-up.tsx +18 -0
  590. package/src/icons/react/toc.tsx +18 -0
  591. package/src/icons/react/twitter.tsx +18 -0
  592. package/src/icons/react/type-boolean.tsx +18 -0
  593. package/src/icons/react/type-button.tsx +18 -0
  594. package/src/icons/react/type-checkbox.tsx +18 -0
  595. package/src/icons/react/type-date.tsx +18 -0
  596. package/src/icons/react/type-email.tsx +18 -0
  597. package/src/icons/react/type-emoji.tsx +18 -0
  598. package/src/icons/react/type-formula.tsx +18 -0
  599. package/src/icons/react/type-function.tsx +18 -0
  600. package/src/icons/react/type-id.tsx +18 -0
  601. package/src/icons/react/type-location.tsx +18 -0
  602. package/src/icons/react/type-lookup.tsx +18 -0
  603. package/src/icons/react/type-money.tsx +18 -0
  604. package/src/icons/react/type-multi-select.tsx +18 -0
  605. package/src/icons/react/type-number.tsx +18 -0
  606. package/src/icons/react/type-percent.tsx +18 -0
  607. package/src/icons/react/type-phone.tsx +18 -0
  608. package/src/icons/react/type-relation.tsx +18 -0
  609. package/src/icons/react/type-rich-text.tsx +18 -0
  610. package/src/icons/react/type-rule.tsx +18 -0
  611. package/src/icons/react/type-single-select.tsx +18 -0
  612. package/src/icons/react/type-text.tsx +18 -0
  613. package/src/icons/react/type-url.tsx +18 -0
  614. package/src/icons/react/units-avatar.tsx +18 -0
  615. package/src/icons/react/units-collection.tsx +18 -0
  616. package/src/icons/react/units-counter.tsx +18 -0
  617. package/src/icons/react/units-date.tsx +18 -0
  618. package/src/icons/react/units-db-badge-abbr.tsx +18 -0
  619. package/src/icons/react/units-db-badge-full.tsx +18 -0
  620. package/src/icons/react/units-db-icon.tsx +18 -0
  621. package/src/icons/react/units-field-icon-button.tsx +18 -0
  622. package/src/icons/react/units-field.tsx +18 -0
  623. package/src/icons/react/units-input.tsx +18 -0
  624. package/src/icons/react/units-progress-bar.tsx +18 -0
  625. package/src/icons/react/units-rich-text.tsx +18 -0
  626. package/src/icons/react/units-snippet.tsx +18 -0
  627. package/src/icons/react/unlink.tsx +18 -0
  628. package/src/icons/react/unlock-filled.tsx +18 -0
  629. package/src/icons/react/unlock-outline.tsx +18 -0
  630. package/src/icons/react/upgrade.tsx +18 -0
  631. package/src/icons/react/usb-flash-drive.tsx +18 -0
  632. package/src/icons/react/user-check.tsx +18 -0
  633. package/src/icons/react/user-group-remove.tsx +18 -0
  634. package/src/icons/react/user-group.tsx +18 -0
  635. package/src/icons/react/user-role.tsx +18 -0
  636. package/src/icons/react/user-x.tsx +18 -0
  637. package/src/icons/react/value-edit.tsx +18 -0
  638. package/src/icons/react/view-ai.tsx +18 -0
  639. package/src/icons/react/view-board.tsx +18 -0
  640. package/src/icons/react/view-calendar.tsx +18 -0
  641. package/src/icons/react/view-canvas.tsx +18 -0
  642. package/src/icons/react/view-chart.tsx +18 -0
  643. package/src/icons/react/view-dashboard.tsx +18 -0
  644. package/src/icons/react/view-details.tsx +18 -0
  645. package/src/icons/react/view-document.tsx +18 -0
  646. package/src/icons/react/view-embed.tsx +18 -0
  647. package/src/icons/react/view-feed.tsx +18 -0
  648. package/src/icons/react/view-form.tsx +18 -0
  649. package/src/icons/react/view-gallery.tsx +18 -0
  650. package/src/icons/react/view-gantt.tsx +18 -0
  651. package/src/icons/react/view-list.tsx +18 -0
  652. package/src/icons/react/view-map.tsx +18 -0
  653. package/src/icons/react/view-page.tsx +18 -0
  654. package/src/icons/react/view-table.tsx +18 -0
  655. package/src/icons/react/view-timeline.tsx +18 -0
  656. package/src/icons/react/views.tsx +18 -0
  657. package/src/icons/react/warning-triangle-filled.tsx +18 -0
  658. package/src/icons/react/warning-triangle.tsx +18 -0
  659. package/src/icons/react/warning.tsx +18 -0
  660. package/src/icons/react/webhooks.tsx +18 -0
  661. package/src/icons/react/windows.tsx +18 -0
  662. package/src/icons/react/workspace-map.tsx +18 -0
  663. package/src/icons/react/youtube.tsx +18 -0
  664. package/src/icons/react/zoom-in.tsx +18 -0
  665. package/src/icons/react/zoom-out.tsx +18 -0
  666. package/src/icons/svg/error-circle-filled.svg +3 -0
  667. package/src/icons/types.ts +2 -2
  668. package/src/images-gallery/images-gallery-fall-through-provider.tsx +4 -2
  669. package/src/images-gallery/images-gallery.tsx +12 -10
  670. package/src/images-gallery/slide-buttons.tsx +17 -16
  671. package/src/images-gallery/zoom.tsx +2 -1
  672. package/src/integration-compact-info-button.tsx +7 -7
  673. package/src/is-in-popup.ts +1 -1
  674. package/src/item.tsx +3 -1
  675. package/src/kbd.tsx +20 -19
  676. package/src/layout-styles.ts +15 -10
  677. package/src/layout.tsx +2 -1
  678. package/src/link-input/components/ant-text-area-with-custom-read-state.tsx +77 -0
  679. package/src/link-input/index.tsx +3 -4
  680. package/src/lists/actions-menu-row-surface.tsx +7 -6
  681. package/src/lists/list-row-surface.tsx +7 -5
  682. package/src/loaders.tsx +7 -5
  683. package/src/loading-sausage.tsx +4 -2
  684. package/src/logo.tsx +2 -1
  685. package/src/media-query-utils.ts +4 -13
  686. package/src/memoize.test.ts +56 -0
  687. package/src/memoize.ts +8 -0
  688. package/src/menu-item-actions.tsx +2 -1
  689. package/src/mobile-keyboard-aware-popup.tsx +5 -3
  690. package/src/modal-menu/modal-menu-checkbox-item.tsx +4 -3
  691. package/src/modal-menu/modal-menu-content.tsx +5 -4
  692. package/src/modal-menu/modal-menu-group.tsx +1 -1
  693. package/src/modal-menu/modal-menu-item.tsx +4 -3
  694. package/src/modal-menu/modal-menu-label.tsx +14 -11
  695. package/src/modal-menu/modal-menu-root.tsx +5 -2
  696. package/src/modal-menu/modal-menu-separator.tsx +1 -0
  697. package/src/modal-menu/modal-menu-trigger.tsx +3 -1
  698. package/src/modal-menu/modal-submenu-content.tsx +3 -2
  699. package/src/modal-menu/modal-submenu-trigger.tsx +5 -4
  700. package/src/modal-menu/modal-submenu.tsx +3 -1
  701. package/src/new-badge.tsx +6 -4
  702. package/src/new-card-placeholder.tsx +6 -3
  703. package/src/notification-dot.tsx +2 -1
  704. package/src/number-input/edit-unit-styles.ts +1 -0
  705. package/src/number-input/number-input-inline-with-autosize.tsx +7 -6
  706. package/src/number-input/number-input-inline.tsx +9 -7
  707. package/src/number-input/number-input.test.tsx +4 -3
  708. package/src/number-input/number-input.tsx +3 -2
  709. package/src/number-input/stack.tsx +1 -1
  710. package/src/number-input/step-button.tsx +3 -2
  711. package/src/number-input/styles.ts +1 -0
  712. package/src/number-input/text-area-auto-sized.tsx +4 -3
  713. package/src/number-input/text-input-auto-sized.tsx +4 -3
  714. package/src/number-input/utils.ts +1 -1
  715. package/src/online-users.tsx +18 -5
  716. package/src/open-popover-tracker.tsx +2 -1
  717. package/src/palette-generator.test.ts +25 -30
  718. package/src/palette-generator.ts +27 -18
  719. package/src/palettes/common.ts +19 -0
  720. package/src/palettes/diff-colors.test.ts +416 -0
  721. package/src/palettes/diff-colors.ts +179 -51
  722. package/src/palettes/inspect.canvas-colors.test.ts +116 -116
  723. package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +1154 -1154
  724. package/src/palettes/inspect.defs.colors.neutral-user.test.ts +1154 -1154
  725. package/src/palettes/inspect.defs.colors.warm-arch.test.ts +1155 -1153
  726. package/src/palettes/inspect.defs.colors.warm-user.test.ts +1155 -1153
  727. package/src/palettes/inspect.neutral-arch.test.ts +152 -147
  728. package/src/palettes/inspect.neutral-user.test.ts +152 -147
  729. package/src/palettes/inspect.warm-arch.test.ts +152 -147
  730. package/src/palettes/inspect.warm-user.test.ts +152 -147
  731. package/src/palettes/neutral-arch.ts +3 -1
  732. package/src/palettes/neutral-user.ts +3 -1
  733. package/src/palettes/neutral.ts +41 -21
  734. package/src/palettes/show-colors.test.ts +131 -0
  735. package/src/palettes/testkit.test.ts +224 -0
  736. package/src/palettes/testkit.ts +227 -0
  737. package/src/palettes/warm-arch.ts +3 -1
  738. package/src/palettes/warm-user.ts +3 -1
  739. package/src/palettes/warm.ts +72 -3
  740. package/src/platform-symbols.ts +18 -5
  741. package/src/popover/index.tsx +21 -19
  742. package/src/popover/mobile-popover-context.tsx +3 -2
  743. package/src/popover/mobile-popover.tsx +16 -13
  744. package/src/popover/modifiers.tsx +5 -4
  745. package/src/popover/popup-modifiers-context.ts +4 -3
  746. package/src/popover/popup-stack-context.tsx +2 -1
  747. package/src/popover/reference.ts +1 -1
  748. package/src/popover/styles.ts +1 -0
  749. package/src/preference-setting.test.ts +12 -12
  750. package/src/progress.tsx +3 -2
  751. package/src/reactions/reaction-button.tsx +10 -8
  752. package/src/reactions/reaction-picker.tsx +6 -4
  753. package/src/reactions/reactions.tsx +6 -4
  754. package/src/reactions/tootltip.tsx +2 -1
  755. package/src/ready-to-scroll-context.tsx +2 -1
  756. package/src/rich-input-loader.tsx +4 -3
  757. package/src/rich-text-embed-error.tsx +3 -2
  758. package/src/root-theme-provider.test.tsx +30 -48
  759. package/src/scale-generator.ts +30 -17
  760. package/src/select/components/clear-indicator.tsx +3 -2
  761. package/src/select/components/drop-down-indicator.tsx +7 -6
  762. package/src/select/components/group-heading.tsx +7 -5
  763. package/src/select/components/menu-list-virtua.tsx +7 -13
  764. package/src/select/components/menu-list-virtualized.tsx +9 -15
  765. package/src/select/components/menu.tsx +4 -2
  766. package/src/select/components/no-option-message.tsx +8 -7
  767. package/src/select/components/option.tsx +7 -4
  768. package/src/select/index.tsx +8 -6
  769. package/src/select/reflection.ts +3 -2
  770. package/src/select/select-control-settings-context.tsx +2 -1
  771. package/src/select/select-in-popover.tsx +48 -72
  772. package/src/select/select-mock-context.tsx +1 -1
  773. package/src/select/select.tsx +13 -11
  774. package/src/select/styles.ts +1 -0
  775. package/src/select/util.ts +3 -2
  776. package/src/static-palettes.ts +1 -1
  777. package/src/tab-nav/tab-nav.tsx +19 -15
  778. package/src/table.tsx +4 -2
  779. package/src/thematic-color-picker.tsx +2 -1
  780. package/src/thematic-constants.tsx +4 -4
  781. package/src/thematic-controls.tsx +5 -1
  782. package/src/thematic-cvd.tsx +4 -3
  783. package/src/thematic-highlights.tsx +14 -34
  784. package/src/thematic-scales.tsx +1 -0
  785. package/src/thematic-state.ts +46 -28
  786. package/src/thematic-swatch-adjust.tsx +77 -0
  787. package/src/thematic.tsx +78 -41
  788. package/src/theme-provider.test.tsx +52 -64
  789. package/src/theme-provider.tsx +63 -63
  790. package/src/theme-settings.ts +4 -68
  791. package/src/theme-snapshots.test.ts +58 -0
  792. package/src/theme-styles.ts +9 -57
  793. package/src/theming.build.ts +33 -0
  794. package/src/theming.generated.css +2000 -0
  795. package/src/theming.generated.ts +2519 -0
  796. package/src/toast/primitives.tsx +9 -7
  797. package/src/toast/toast-action.tsx +6 -3
  798. package/src/toast/toast-provider.tsx +2 -1
  799. package/src/toast/toast-queue.ts +2 -1
  800. package/src/toast/toast.tsx +5 -4
  801. package/src/toast/toaster.tsx +1 -0
  802. package/src/toggle-button/round-toggle-button.tsx +5 -2
  803. package/src/toggle-button/toggle-button-group.tsx +7 -5
  804. package/src/toggle-button/toggle-button.tsx +10 -7
  805. package/src/toggle-on-off.tsx +4 -2
  806. package/src/toggle.tsx +21 -17
  807. package/src/tooltip-if-overflown.tsx +3 -1
  808. package/src/tooltip.tsx +28 -4
  809. package/src/tree-utils.test.ts +15 -14
  810. package/src/tree-utils.ts +1 -1
  811. package/src/type-badge-box.tsx +3 -2
  812. package/src/type-badge.tsx +14 -38
  813. package/src/type-label.tsx +24 -0
  814. package/src/unit/index.tsx +2 -2
  815. package/src/unit/loading-unit-value.tsx +3 -1
  816. package/src/unit/primitive.tsx +5 -4
  817. package/src/unit/styles.ts +7 -3
  818. package/src/unit/types.ts +1 -1
  819. package/src/unit/unit-button-group.tsx +4 -2
  820. package/src/unit/unit-content-layout.tsx +5 -2
  821. package/src/unit/unit-content.tsx +3 -2
  822. package/src/unit/unit-with-tooltip.tsx +3 -2
  823. package/src/use-is-media-query-matched.ts +1 -0
  824. package/src/use-is-phone.tsx +17 -25
  825. package/src/use-long-press.tsx +2 -1
  826. package/src/use-on-screen-keyboard-data.tsx +4 -2
  827. package/src/with-data.tsx +5 -3
  828. package/src/workflow-progress-icon.tsx +3 -2
  829. package/jest.config.cjs +0 -36
  830. package/src/antd/AutoComplete.d.ts +0 -2
  831. package/src/antd/AutoComplete.ts +0 -34
  832. package/src/antd/Tabs.d.ts +0 -5
  833. package/src/antd/Tabs.tsx +0 -61
  834. package/src/appIcons.json +0 -13096
  835. package/src/color-picker/ColorPickerOrLoader.tsx +0 -23
  836. package/src/color-picker/SliderPointer.tsx +0 -15
  837. package/src/heat.ts +0 -8
  838. package/src/icons/Icon.tsx +0 -75
  839. package/src/icons/react/Abort.tsx +0 -18
  840. package/src/icons/react/AccessTemplate.tsx +0 -18
  841. package/src/icons/react/Activity.tsx +0 -18
  842. package/src/icons/react/ActivityFilled.tsx +0 -18
  843. package/src/icons/react/ActivityLog.tsx +0 -18
  844. package/src/icons/react/Add.tsx +0 -18
  845. package/src/icons/react/AddAfter.tsx +0 -18
  846. package/src/icons/react/AddBefore.tsx +0 -18
  847. package/src/icons/react/AddCompact.tsx +0 -18
  848. package/src/icons/react/AddDatabase.tsx +0 -18
  849. package/src/icons/react/AddGroup.tsx +0 -18
  850. package/src/icons/react/AddIntegration.tsx +0 -18
  851. package/src/icons/react/AddReactions.tsx +0 -18
  852. package/src/icons/react/AiAssistant.tsx +0 -18
  853. package/src/icons/react/AiAssistantFilled.tsx +0 -18
  854. package/src/icons/react/AiAvatar.tsx +0 -18
  855. package/src/icons/react/AiFiberyBuild.tsx +0 -18
  856. package/src/icons/react/AiSearch.tsx +0 -18
  857. package/src/icons/react/AlertTriangle.tsx +0 -18
  858. package/src/icons/react/Anthropic.tsx +0 -18
  859. package/src/icons/react/App.tsx +0 -18
  860. package/src/icons/react/AppDetails.tsx +0 -18
  861. package/src/icons/react/AppStore.tsx +0 -18
  862. package/src/icons/react/AppStoreOneColor.tsx +0 -18
  863. package/src/icons/react/AppTemplates.tsx +0 -18
  864. package/src/icons/react/AppWebhooks.tsx +0 -18
  865. package/src/icons/react/AppWiki.tsx +0 -18
  866. package/src/icons/react/AppearanceAuto.tsx +0 -18
  867. package/src/icons/react/AppearanceDark.tsx +0 -18
  868. package/src/icons/react/AppearanceLight.tsx +0 -18
  869. package/src/icons/react/Apple.tsx +0 -18
  870. package/src/icons/react/ArrowBarDown.tsx +0 -18
  871. package/src/icons/react/ArrowBarLeft.tsx +0 -18
  872. package/src/icons/react/ArrowBarRight.tsx +0 -18
  873. package/src/icons/react/ArrowBarUp.tsx +0 -18
  874. package/src/icons/react/ArrowBottom.tsx +0 -18
  875. package/src/icons/react/ArrowCollapse.tsx +0 -18
  876. package/src/icons/react/ArrowCollapseVertical.tsx +0 -18
  877. package/src/icons/react/ArrowForward.tsx +0 -18
  878. package/src/icons/react/ArrowLeft.tsx +0 -18
  879. package/src/icons/react/ArrowRight.tsx +0 -18
  880. package/src/icons/react/ArrowTop.tsx +0 -18
  881. package/src/icons/react/ArrowUpCircle.tsx +0 -18
  882. package/src/icons/react/ArrowsRightLeft.tsx +0 -18
  883. package/src/icons/react/AskForInput.tsx +0 -18
  884. package/src/icons/react/Asterisk.tsx +0 -18
  885. package/src/icons/react/Atom.tsx +0 -18
  886. package/src/icons/react/AutomationsCancelled.tsx +0 -18
  887. package/src/icons/react/AutomationsDisabled.tsx +0 -18
  888. package/src/icons/react/AutomationsError.tsx +0 -18
  889. package/src/icons/react/AutomationsInProgress.tsx +0 -18
  890. package/src/icons/react/AutomationsNotStarted.tsx +0 -18
  891. package/src/icons/react/AutomationsSuccess.tsx +0 -18
  892. package/src/icons/react/Back.tsx +0 -18
  893. package/src/icons/react/BacklogIcon.tsx +0 -18
  894. package/src/icons/react/BatchActionsIcon.tsx +0 -18
  895. package/src/icons/react/BellCircle.tsx +0 -18
  896. package/src/icons/react/BellFilled.tsx +0 -18
  897. package/src/icons/react/BellOff.tsx +0 -18
  898. package/src/icons/react/BellRinging.tsx +0 -18
  899. package/src/icons/react/BellX.tsx +0 -18
  900. package/src/icons/react/Bolt.tsx +0 -18
  901. package/src/icons/react/BringForward.tsx +0 -18
  902. package/src/icons/react/BringToFront.tsx +0 -18
  903. package/src/icons/react/Cards.tsx +0 -18
  904. package/src/icons/react/Chat.tsx +0 -18
  905. package/src/icons/react/ChatAi.tsx +0 -18
  906. package/src/icons/react/ChatBubble.tsx +0 -18
  907. package/src/icons/react/ChatFloat.tsx +0 -18
  908. package/src/icons/react/ChatSidebar.tsx +0 -18
  909. package/src/icons/react/CheckCircle.tsx +0 -18
  910. package/src/icons/react/CheckCircleFilled.tsx +0 -18
  911. package/src/icons/react/Checked.tsx +0 -18
  912. package/src/icons/react/Clean.tsx +0 -18
  913. package/src/icons/react/Clear.tsx +0 -18
  914. package/src/icons/react/ClearInputFilled.tsx +0 -18
  915. package/src/icons/react/ClearValue.tsx +0 -18
  916. package/src/icons/react/Clock.tsx +0 -18
  917. package/src/icons/react/ClockAlarm.tsx +0 -18
  918. package/src/icons/react/ClockForward.tsx +0 -18
  919. package/src/icons/react/Close.tsx +0 -18
  920. package/src/icons/react/CollapseAll.tsx +0 -18
  921. package/src/icons/react/CollapseAllHorizontal.tsx +0 -18
  922. package/src/icons/react/ColorCoding.tsx +0 -18
  923. package/src/icons/react/ColorCodingFilled.tsx +0 -18
  924. package/src/icons/react/Columns.tsx +0 -18
  925. package/src/icons/react/Columns2.tsx +0 -18
  926. package/src/icons/react/Columns4.tsx +0 -18
  927. package/src/icons/react/CommentBubble.tsx +0 -18
  928. package/src/icons/react/Copy.tsx +0 -18
  929. package/src/icons/react/Create.tsx +0 -18
  930. package/src/icons/react/CreditsFilled.tsx +0 -18
  931. package/src/icons/react/CrossCircle.tsx +0 -18
  932. package/src/icons/react/Crosshair.tsx +0 -18
  933. package/src/icons/react/Csv.tsx +0 -18
  934. package/src/icons/react/Database.tsx +0 -18
  935. package/src/icons/react/DatabaseOff.tsx +0 -18
  936. package/src/icons/react/DatabaseStroke.tsx +0 -18
  937. package/src/icons/react/DateRange.tsx +0 -18
  938. package/src/icons/react/Delete.tsx +0 -18
  939. package/src/icons/react/Demo.tsx +0 -18
  940. package/src/icons/react/Dependency.tsx +0 -18
  941. package/src/icons/react/Dividers.tsx +0 -18
  942. package/src/icons/react/Document.tsx +0 -18
  943. package/src/icons/react/DoubleArrowLeft.tsx +0 -18
  944. package/src/icons/react/DoubleArrowRight.tsx +0 -18
  945. package/src/icons/react/DoubleLine.tsx +0 -18
  946. package/src/icons/react/DragBlockHandle.tsx +0 -18
  947. package/src/icons/react/DragBlockHandleSingle.tsx +0 -18
  948. package/src/icons/react/DragHandle.tsx +0 -18
  949. package/src/icons/react/Duplicate.tsx +0 -18
  950. package/src/icons/react/DynamicFilterValue.tsx +0 -18
  951. package/src/icons/react/EditValue.tsx +0 -18
  952. package/src/icons/react/Email.tsx +0 -18
  953. package/src/icons/react/EmojiDelete.tsx +0 -18
  954. package/src/icons/react/EntityCreate.tsx +0 -18
  955. package/src/icons/react/EntityCreateFilled.tsx +0 -18
  956. package/src/icons/react/EntityMerge.tsx +0 -18
  957. package/src/icons/react/Equation.tsx +0 -18
  958. package/src/icons/react/ExpandAll.tsx +0 -18
  959. package/src/icons/react/ExpandAllHorizontal.tsx +0 -18
  960. package/src/icons/react/Export.tsx +0 -18
  961. package/src/icons/react/ExtensionAssignments.tsx +0 -18
  962. package/src/icons/react/ExtensionAvatar.tsx +0 -18
  963. package/src/icons/react/ExtensionComments.tsx +0 -18
  964. package/src/icons/react/ExtensionFiles.tsx +0 -18
  965. package/src/icons/react/ExtensionReferences.tsx +0 -18
  966. package/src/icons/react/ExtensionWorkflow.tsx +0 -18
  967. package/src/icons/react/Eye.tsx +0 -18
  968. package/src/icons/react/Favorites.tsx +0 -18
  969. package/src/icons/react/FavoritesChecked.tsx +0 -18
  970. package/src/icons/react/FavoritesOff.tsx +0 -18
  971. package/src/icons/react/FiberyDesktopApp.tsx +0 -18
  972. package/src/icons/react/FiberyMono.tsx +0 -18
  973. package/src/icons/react/FieldUnit.tsx +0 -18
  974. package/src/icons/react/Fields.tsx +0 -18
  975. package/src/icons/react/Figma.tsx +0 -18
  976. package/src/icons/react/FileArchive.tsx +0 -18
  977. package/src/icons/react/FileBroken.tsx +0 -18
  978. package/src/icons/react/FileCounter.tsx +0 -18
  979. package/src/icons/react/FileDocument.tsx +0 -18
  980. package/src/icons/react/FileDownload.tsx +0 -18
  981. package/src/icons/react/FileImage.tsx +0 -18
  982. package/src/icons/react/FileMultiple.tsx +0 -18
  983. package/src/icons/react/FileOther.tsx +0 -18
  984. package/src/icons/react/FilePresentation.tsx +0 -18
  985. package/src/icons/react/FileTable.tsx +0 -18
  986. package/src/icons/react/FileUpload.tsx +0 -18
  987. package/src/icons/react/FileVideo.tsx +0 -18
  988. package/src/icons/react/Filter.tsx +0 -18
  989. package/src/icons/react/FitToScreen.tsx +0 -18
  990. package/src/icons/react/FocusMode.tsx +0 -18
  991. package/src/icons/react/FocusModeOff.tsx +0 -18
  992. package/src/icons/react/Folder.tsx +0 -18
  993. package/src/icons/react/FolderFavorite.tsx +0 -18
  994. package/src/icons/react/FormWithCover.tsx +0 -18
  995. package/src/icons/react/FormWithoutCover.tsx +0 -18
  996. package/src/icons/react/FullscreenModeOffIcon.tsx +0 -18
  997. package/src/icons/react/FullscreenModeOn.tsx +0 -18
  998. package/src/icons/react/FullscreenModeOnIcon.tsx +0 -18
  999. package/src/icons/react/Gift.tsx +0 -18
  1000. package/src/icons/react/Github.tsx +0 -18
  1001. package/src/icons/react/Gitlab.tsx +0 -18
  1002. package/src/icons/react/Globe.tsx +0 -18
  1003. package/src/icons/react/GlobeSimple.tsx +0 -18
  1004. package/src/icons/react/GlobeUnpublish.tsx +0 -18
  1005. package/src/icons/react/GoTo.tsx +0 -18
  1006. package/src/icons/react/GoogleDrive.tsx +0 -18
  1007. package/src/icons/react/GoogleMap.tsx +0 -18
  1008. package/src/icons/react/GraduationCapFilled.tsx +0 -18
  1009. package/src/icons/react/Headphones.tsx +0 -18
  1010. package/src/icons/react/HeadphonesAi.tsx +0 -18
  1011. package/src/icons/react/Hide.tsx +0 -18
  1012. package/src/icons/react/Highlights.tsx +0 -18
  1013. package/src/icons/react/Hint.tsx +0 -18
  1014. package/src/icons/react/Home.tsx +0 -18
  1015. package/src/icons/react/HomeFilled.tsx +0 -18
  1016. package/src/icons/react/ImageXmark.tsx +0 -18
  1017. package/src/icons/react/Import.tsx +0 -18
  1018. package/src/icons/react/ImportFilled.tsx +0 -18
  1019. package/src/icons/react/InfoCircle.tsx +0 -18
  1020. package/src/icons/react/InfoCircleFilled.tsx +0 -18
  1021. package/src/icons/react/Integration.tsx +0 -18
  1022. package/src/icons/react/IntegrationsFilled.tsx +0 -18
  1023. package/src/icons/react/IntegrationsIntegrationDiscourseColor.tsx +0 -18
  1024. package/src/icons/react/IntegrationsIntegrationIntercomColor.tsx +0 -18
  1025. package/src/icons/react/IntegrationsIntegrationSlackColor.tsx +0 -18
  1026. package/src/icons/react/IntegrationsIntegrationZendeskColor.tsx +0 -18
  1027. package/src/icons/react/Intercom.tsx +0 -18
  1028. package/src/icons/react/InvitePeople.tsx +0 -18
  1029. package/src/icons/react/Items.tsx +0 -18
  1030. package/src/icons/react/ItemsTimeline.tsx +0 -18
  1031. package/src/icons/react/Jira.tsx +0 -18
  1032. package/src/icons/react/Key.tsx +0 -18
  1033. package/src/icons/react/KeyboardHideDown.tsx +0 -18
  1034. package/src/icons/react/Lab.tsx +0 -18
  1035. package/src/icons/react/LayoutDouble.tsx +0 -18
  1036. package/src/icons/react/LayoutMultiple.tsx +0 -18
  1037. package/src/icons/react/LayoutSingle.tsx +0 -18
  1038. package/src/icons/react/LeftPanel.tsx +0 -18
  1039. package/src/icons/react/LevelPlus.tsx +0 -18
  1040. package/src/icons/react/Levels.tsx +0 -18
  1041. package/src/icons/react/LineDivider.tsx +0 -18
  1042. package/src/icons/react/LineJump.tsx +0 -18
  1043. package/src/icons/react/Link.tsx +0 -18
  1044. package/src/icons/react/LocationEdit.tsx +0 -18
  1045. package/src/icons/react/Lock.tsx +0 -18
  1046. package/src/icons/react/LockOutline.tsx +0 -18
  1047. package/src/icons/react/Logout.tsx +0 -18
  1048. package/src/icons/react/Loom.tsx +0 -18
  1049. package/src/icons/react/LoupeZoom.tsx +0 -18
  1050. package/src/icons/react/LoupeZoomIn.tsx +0 -18
  1051. package/src/icons/react/LoupeZoomOut.tsx +0 -18
  1052. package/src/icons/react/ManyPeople.tsx +0 -18
  1053. package/src/icons/react/MapMode.tsx +0 -18
  1054. package/src/icons/react/Markdown.tsx +0 -18
  1055. package/src/icons/react/MenuCollapser.tsx +0 -18
  1056. package/src/icons/react/Mermaid.tsx +0 -18
  1057. package/src/icons/react/MessagePlus.tsx +0 -18
  1058. package/src/icons/react/MessagePlusSquare.tsx +0 -18
  1059. package/src/icons/react/Milestones.tsx +0 -18
  1060. package/src/icons/react/Minus.tsx +0 -18
  1061. package/src/icons/react/Miro.tsx +0 -18
  1062. package/src/icons/react/MirrorOff.tsx +0 -18
  1063. package/src/icons/react/MirrorOn.tsx +0 -18
  1064. package/src/icons/react/Mixpanel.tsx +0 -18
  1065. package/src/icons/react/Monitor.tsx +0 -18
  1066. package/src/icons/react/More.tsx +0 -18
  1067. package/src/icons/react/MoreCompact.tsx +0 -18
  1068. package/src/icons/react/MoveBottom.tsx +0 -18
  1069. package/src/icons/react/MoveLeft.tsx +0 -18
  1070. package/src/icons/react/MoveRight.tsx +0 -18
  1071. package/src/icons/react/MoveSpace.tsx +0 -18
  1072. package/src/icons/react/MoveTop.tsx +0 -18
  1073. package/src/icons/react/Network.tsx +0 -18
  1074. package/src/icons/react/NetworkAdd.tsx +0 -18
  1075. package/src/icons/react/NoBorder.tsx +0 -18
  1076. package/src/icons/react/NoFill.tsx +0 -18
  1077. package/src/icons/react/Notifications.tsx +0 -18
  1078. package/src/icons/react/ObjChild.tsx +0 -18
  1079. package/src/icons/react/ObjM2M.tsx +0 -18
  1080. package/src/icons/react/ObjO2O.tsx +0 -18
  1081. package/src/icons/react/ObjParent.tsx +0 -18
  1082. package/src/icons/react/ObjSelf.tsx +0 -18
  1083. package/src/icons/react/OnSchedule.tsx +0 -18
  1084. package/src/icons/react/OpenAi.tsx +0 -18
  1085. package/src/icons/react/OpenAsPage.tsx +0 -18
  1086. package/src/icons/react/PageRegularMode.tsx +0 -18
  1087. package/src/icons/react/PageWideMode.tsx +0 -18
  1088. package/src/icons/react/PanelAdd.tsx +0 -18
  1089. package/src/icons/react/Pencil.tsx +0 -18
  1090. package/src/icons/react/People.tsx +0 -18
  1091. package/src/icons/react/PeopleCheck.tsx +0 -18
  1092. package/src/icons/react/Photo.tsx +0 -18
  1093. package/src/icons/react/Pin.tsx +0 -18
  1094. package/src/icons/react/PinFilled.tsx +0 -18
  1095. package/src/icons/react/Popup.tsx +0 -18
  1096. package/src/icons/react/Posts.tsx +0 -18
  1097. package/src/icons/react/PresentPlay.tsx +0 -18
  1098. package/src/icons/react/PresentStop.tsx +0 -18
  1099. package/src/icons/react/Print.tsx +0 -18
  1100. package/src/icons/react/PrivateItems.tsx +0 -18
  1101. package/src/icons/react/Question.tsx +0 -18
  1102. package/src/icons/react/QuickFilter.tsx +0 -18
  1103. package/src/icons/react/QuickFilterPersonal.tsx +0 -18
  1104. package/src/icons/react/ReadOnly.tsx +0 -18
  1105. package/src/icons/react/Refresh.tsx +0 -18
  1106. package/src/icons/react/Remove.tsx +0 -18
  1107. package/src/icons/react/RemovePeople.tsx +0 -18
  1108. package/src/icons/react/Reply.tsx +0 -18
  1109. package/src/icons/react/ResetPassword.tsx +0 -18
  1110. package/src/icons/react/Restore.tsx +0 -18
  1111. package/src/icons/react/RicheditorActionsMore.tsx +0 -18
  1112. package/src/icons/react/RicheditorBlockCallout.tsx +0 -18
  1113. package/src/icons/react/RicheditorBlockCode.tsx +0 -18
  1114. package/src/icons/react/RicheditorBlockEmbed.tsx +0 -18
  1115. package/src/icons/react/RicheditorBlockEntity.tsx +0 -18
  1116. package/src/icons/react/RicheditorBlockFile.tsx +0 -18
  1117. package/src/icons/react/RicheditorBlockH1.tsx +0 -18
  1118. package/src/icons/react/RicheditorBlockH2.tsx +0 -18
  1119. package/src/icons/react/RicheditorBlockH3.tsx +0 -18
  1120. package/src/icons/react/RicheditorBlockH4.tsx +0 -18
  1121. package/src/icons/react/RicheditorBlockMention.tsx +0 -18
  1122. package/src/icons/react/RicheditorBlockParagraph.tsx +0 -18
  1123. package/src/icons/react/RicheditorBlockQuote.tsx +0 -18
  1124. package/src/icons/react/RicheditorChecklistCreate.tsx +0 -18
  1125. package/src/icons/react/RicheditorCommentCreate.tsx +0 -18
  1126. package/src/icons/react/RicheditorEntityLinkCreate.tsx +0 -18
  1127. package/src/icons/react/RicheditorHistoryRedo.tsx +0 -18
  1128. package/src/icons/react/RicheditorHistoryUndo.tsx +0 -18
  1129. package/src/icons/react/RicheditorImageAlignCenter.tsx +0 -18
  1130. package/src/icons/react/RicheditorImageAlignLeft.tsx +0 -18
  1131. package/src/icons/react/RicheditorImageAlignRight.tsx +0 -18
  1132. package/src/icons/react/RicheditorImageUpload.tsx +0 -18
  1133. package/src/icons/react/RicheditorImageWrapCenter.tsx +0 -18
  1134. package/src/icons/react/RicheditorImageWrapLeft.tsx +0 -18
  1135. package/src/icons/react/RicheditorImageWrapRight.tsx +0 -18
  1136. package/src/icons/react/RicheditorImageZoom.tsx +0 -18
  1137. package/src/icons/react/RicheditorLinkCreate.tsx +0 -18
  1138. package/src/icons/react/RicheditorLinkedhighlightCreate.tsx +0 -18
  1139. package/src/icons/react/RicheditorListBullet.tsx +0 -18
  1140. package/src/icons/react/RicheditorListIndent.tsx +0 -18
  1141. package/src/icons/react/RicheditorListOrdered.tsx +0 -18
  1142. package/src/icons/react/RicheditorListUnindent.tsx +0 -18
  1143. package/src/icons/react/RicheditorMarkCode.tsx +0 -18
  1144. package/src/icons/react/RicheditorMarkEm.tsx +0 -18
  1145. package/src/icons/react/RicheditorMarkHighlight.tsx +0 -18
  1146. package/src/icons/react/RicheditorMarkStrike.tsx +0 -18
  1147. package/src/icons/react/RicheditorMarkStrong.tsx +0 -18
  1148. package/src/icons/react/RicheditorMarkTextBackgroundColor.tsx +0 -18
  1149. package/src/icons/react/RicheditorMarkUnderline.tsx +0 -18
  1150. package/src/icons/react/RicheditorOpenLink.tsx +0 -18
  1151. package/src/icons/react/RicheditorTableCreate.tsx +0 -18
  1152. package/src/icons/react/RicheditorUnlink.tsx +0 -18
  1153. package/src/icons/react/RicheditorVideoUpload.tsx +0 -18
  1154. package/src/icons/react/RightPanel.tsx +0 -18
  1155. package/src/icons/react/Rows.tsx +0 -18
  1156. package/src/icons/react/RuleScheduled.tsx +0 -18
  1157. package/src/icons/react/Search.tsx +0 -18
  1158. package/src/icons/react/SearchAdd.tsx +0 -18
  1159. package/src/icons/react/SearchFilled.tsx +0 -18
  1160. package/src/icons/react/SearchRemove.tsx +0 -18
  1161. package/src/icons/react/SelfReferenceOff.tsx +0 -18
  1162. package/src/icons/react/SelfReferenceOn.tsx +0 -18
  1163. package/src/icons/react/SendArrow.tsx +0 -18
  1164. package/src/icons/react/SendBackward.tsx +0 -18
  1165. package/src/icons/react/SendToBack.tsx +0 -18
  1166. package/src/icons/react/Settings.tsx +0 -18
  1167. package/src/icons/react/SettingsFilled.tsx +0 -18
  1168. package/src/icons/react/SettingsOff.tsx +0 -18
  1169. package/src/icons/react/Share.tsx +0 -18
  1170. package/src/icons/react/Shared.tsx +0 -18
  1171. package/src/icons/react/ShieldKeyhole.tsx +0 -18
  1172. package/src/icons/react/ShowAuthor.tsx +0 -18
  1173. package/src/icons/react/Sidebar.tsx +0 -18
  1174. package/src/icons/react/SidebarFields.tsx +0 -18
  1175. package/src/icons/react/SidebarFieldsOpened.tsx +0 -18
  1176. package/src/icons/react/SimpleCompass.tsx +0 -18
  1177. package/src/icons/react/Slack.tsx +0 -18
  1178. package/src/icons/react/SlackIcon.tsx +0 -18
  1179. package/src/icons/react/SlideMenu.tsx +0 -18
  1180. package/src/icons/react/SlideMenuClose.tsx +0 -18
  1181. package/src/icons/react/SlideMenuFilled.tsx +0 -18
  1182. package/src/icons/react/SlideMenuOpen.tsx +0 -18
  1183. package/src/icons/react/SmartFolder.tsx +0 -18
  1184. package/src/icons/react/Sort.tsx +0 -18
  1185. package/src/icons/react/SortOnBottom.tsx +0 -18
  1186. package/src/icons/react/SortOnTop.tsx +0 -18
  1187. package/src/icons/react/SpaceApp.tsx +0 -18
  1188. package/src/icons/react/SpaceGenerate.tsx +0 -18
  1189. package/src/icons/react/SpaceList.tsx +0 -18
  1190. package/src/icons/react/SpaceScratch.tsx +0 -18
  1191. package/src/icons/react/SpaceTemplate.tsx +0 -18
  1192. package/src/icons/react/Spinner.tsx +0 -18
  1193. package/src/icons/react/Success.tsx +0 -18
  1194. package/src/icons/react/SuggestIntegration.tsx +0 -18
  1195. package/src/icons/react/SwitchToMention.tsx +0 -18
  1196. package/src/icons/react/SwitchToText.tsx +0 -18
  1197. package/src/icons/react/SwitchToWidget.tsx +0 -18
  1198. package/src/icons/react/TableLayout.tsx +0 -18
  1199. package/src/icons/react/Template.tsx +0 -18
  1200. package/src/icons/react/Templates.tsx +0 -18
  1201. package/src/icons/react/TemplatesFilled.tsx +0 -18
  1202. package/src/icons/react/Terminal.tsx +0 -18
  1203. package/src/icons/react/TextNoWrap.tsx +0 -18
  1204. package/src/icons/react/TextToolAlignBottom.tsx +0 -18
  1205. package/src/icons/react/TextToolAlignMiddle.tsx +0 -18
  1206. package/src/icons/react/TextToolAlignTop.tsx +0 -18
  1207. package/src/icons/react/TextWrap.tsx +0 -18
  1208. package/src/icons/react/ThumbsDown.tsx +0 -18
  1209. package/src/icons/react/ThumbsUp.tsx +0 -18
  1210. package/src/icons/react/Toc.tsx +0 -18
  1211. package/src/icons/react/Twitter.tsx +0 -18
  1212. package/src/icons/react/TypeBoolean.tsx +0 -18
  1213. package/src/icons/react/TypeButton.tsx +0 -18
  1214. package/src/icons/react/TypeCheckbox.tsx +0 -18
  1215. package/src/icons/react/TypeDate.tsx +0 -18
  1216. package/src/icons/react/TypeEmail.tsx +0 -18
  1217. package/src/icons/react/TypeEmoji.tsx +0 -18
  1218. package/src/icons/react/TypeFormula.tsx +0 -18
  1219. package/src/icons/react/TypeFunction.tsx +0 -18
  1220. package/src/icons/react/TypeId.tsx +0 -18
  1221. package/src/icons/react/TypeLocation.tsx +0 -18
  1222. package/src/icons/react/TypeLookup.tsx +0 -18
  1223. package/src/icons/react/TypeMoney.tsx +0 -18
  1224. package/src/icons/react/TypeMultiSelect.tsx +0 -18
  1225. package/src/icons/react/TypeNumber.tsx +0 -18
  1226. package/src/icons/react/TypePercent.tsx +0 -18
  1227. package/src/icons/react/TypePhone.tsx +0 -18
  1228. package/src/icons/react/TypeRelation.tsx +0 -18
  1229. package/src/icons/react/TypeRichText.tsx +0 -18
  1230. package/src/icons/react/TypeRule.tsx +0 -18
  1231. package/src/icons/react/TypeSingleSelect.tsx +0 -18
  1232. package/src/icons/react/TypeText.tsx +0 -18
  1233. package/src/icons/react/TypeUrl.tsx +0 -18
  1234. package/src/icons/react/UnitsAvatar.tsx +0 -18
  1235. package/src/icons/react/UnitsCollection.tsx +0 -18
  1236. package/src/icons/react/UnitsCounter.tsx +0 -18
  1237. package/src/icons/react/UnitsDate.tsx +0 -18
  1238. package/src/icons/react/UnitsDbBadgeAbbr.tsx +0 -18
  1239. package/src/icons/react/UnitsDbBadgeFull.tsx +0 -18
  1240. package/src/icons/react/UnitsDbIcon.tsx +0 -18
  1241. package/src/icons/react/UnitsField.tsx +0 -18
  1242. package/src/icons/react/UnitsFieldIconButton.tsx +0 -18
  1243. package/src/icons/react/UnitsInput.tsx +0 -18
  1244. package/src/icons/react/UnitsProgressBar.tsx +0 -18
  1245. package/src/icons/react/UnitsRichText.tsx +0 -18
  1246. package/src/icons/react/UnitsSnippet.tsx +0 -18
  1247. package/src/icons/react/Unlink.tsx +0 -18
  1248. package/src/icons/react/UnlockFilled.tsx +0 -18
  1249. package/src/icons/react/UnlockOutline.tsx +0 -18
  1250. package/src/icons/react/Upgrade.tsx +0 -18
  1251. package/src/icons/react/UsbFlashDrive.tsx +0 -18
  1252. package/src/icons/react/UserCheck.tsx +0 -18
  1253. package/src/icons/react/UserGroup.tsx +0 -18
  1254. package/src/icons/react/UserGroupRemove.tsx +0 -18
  1255. package/src/icons/react/UserRole.tsx +0 -18
  1256. package/src/icons/react/UserX.tsx +0 -18
  1257. package/src/icons/react/ValueEdit.tsx +0 -18
  1258. package/src/icons/react/ViewAi.tsx +0 -18
  1259. package/src/icons/react/ViewBoard.tsx +0 -18
  1260. package/src/icons/react/ViewCalendar.tsx +0 -18
  1261. package/src/icons/react/ViewCanvas.tsx +0 -18
  1262. package/src/icons/react/ViewChart.tsx +0 -18
  1263. package/src/icons/react/ViewDashboard.tsx +0 -18
  1264. package/src/icons/react/ViewDetails.tsx +0 -18
  1265. package/src/icons/react/ViewDocument.tsx +0 -18
  1266. package/src/icons/react/ViewEmbed.tsx +0 -18
  1267. package/src/icons/react/ViewFeed.tsx +0 -18
  1268. package/src/icons/react/ViewForm.tsx +0 -18
  1269. package/src/icons/react/ViewGallery.tsx +0 -18
  1270. package/src/icons/react/ViewGantt.tsx +0 -18
  1271. package/src/icons/react/ViewList.tsx +0 -18
  1272. package/src/icons/react/ViewMap.tsx +0 -18
  1273. package/src/icons/react/ViewPage.tsx +0 -18
  1274. package/src/icons/react/ViewTable.tsx +0 -18
  1275. package/src/icons/react/ViewTimeline.tsx +0 -18
  1276. package/src/icons/react/Views.tsx +0 -18
  1277. package/src/icons/react/Warning.tsx +0 -18
  1278. package/src/icons/react/WarningTriangle.tsx +0 -18
  1279. package/src/icons/react/WarningTriangleFilled.tsx +0 -18
  1280. package/src/icons/react/Webhooks.tsx +0 -18
  1281. package/src/icons/react/Windows.tsx +0 -18
  1282. package/src/icons/react/WorkspaceMap.tsx +0 -18
  1283. package/src/icons/react/Youtube.tsx +0 -18
  1284. package/src/icons/react/ZoomIn.tsx +0 -18
  1285. package/src/icons/react/ZoomOut.tsx +0 -18
  1286. package/src/link-input/components/AntTextAreaWithCustomReadState.tsx +0 -75
  1287. package/src/palettes/_.test.ts +0 -226
  1288. package/src/palettes/_.ts +0 -115
  1289. package/src/themed-ink.tsx +0 -26
  1290. /package/config/{jest/testFrameworkSetup.js → vitest/test-framework-setup.js} +0 -0
  1291. /package/src/__mocks__/{styleMock.js → style-mock.js} +0 -0
  1292. /package/src/icons/ast/{Abort.ts → abort.ts} +0 -0
  1293. /package/src/icons/ast/{AccessTemplate.ts → access-template.ts} +0 -0
  1294. /package/src/icons/ast/{ActivityFilled.ts → activity-filled.ts} +0 -0
  1295. /package/src/icons/ast/{ActivityLog.ts → activity-log.ts} +0 -0
  1296. /package/src/icons/ast/{Activity.ts → activity.ts} +0 -0
  1297. /package/src/icons/ast/{AddAfter.ts → add-after.ts} +0 -0
  1298. /package/src/icons/ast/{AddBefore.ts → add-before.ts} +0 -0
  1299. /package/src/icons/ast/{AddCompact.ts → add-compact.ts} +0 -0
  1300. /package/src/icons/ast/{AddDatabase.ts → add-database.ts} +0 -0
  1301. /package/src/icons/ast/{AddGroup.ts → add-group.ts} +0 -0
  1302. /package/src/icons/ast/{AddIntegration.ts → add-integration.ts} +0 -0
  1303. /package/src/icons/ast/{AddReactions.ts → add-reactions.ts} +0 -0
  1304. /package/src/icons/ast/{Add.ts → add.ts} +0 -0
  1305. /package/src/icons/ast/{AiAssistantFilled.ts → ai-assistant-filled.ts} +0 -0
  1306. /package/src/icons/ast/{AiAssistant.ts → ai-assistant.ts} +0 -0
  1307. /package/src/icons/ast/{AiAvatar.ts → ai-avatar.ts} +0 -0
  1308. /package/src/icons/ast/{AiFiberyBuild.ts → ai-fibery-build.ts} +0 -0
  1309. /package/src/icons/ast/{AiSearch.ts → ai-search.ts} +0 -0
  1310. /package/src/icons/ast/{AlertTriangle.ts → alert-triangle.ts} +0 -0
  1311. /package/src/icons/ast/{Anthropic.ts → anthropic.ts} +0 -0
  1312. /package/src/icons/ast/{AppDetails.ts → app-details.ts} +0 -0
  1313. /package/src/icons/ast/{AppStoreOneColor.ts → app-store-one-color.ts} +0 -0
  1314. /package/src/icons/ast/{AppStore.ts → app-store.ts} +0 -0
  1315. /package/src/icons/ast/{AppTemplates.ts → app-templates.ts} +0 -0
  1316. /package/src/icons/ast/{AppWebhooks.ts → app-webhooks.ts} +0 -0
  1317. /package/src/icons/ast/{AppWiki.ts → app-wiki.ts} +0 -0
  1318. /package/src/icons/ast/{App.ts → app.ts} +0 -0
  1319. /package/src/icons/ast/{AppearanceAuto.ts → appearance-auto.ts} +0 -0
  1320. /package/src/icons/ast/{AppearanceDark.ts → appearance-dark.ts} +0 -0
  1321. /package/src/icons/ast/{AppearanceLight.ts → appearance-light.ts} +0 -0
  1322. /package/src/icons/ast/{Apple.ts → apple.ts} +0 -0
  1323. /package/src/icons/ast/{ArrowBarDown.ts → arrow-bar-down.ts} +0 -0
  1324. /package/src/icons/ast/{ArrowBarLeft.ts → arrow-bar-left.ts} +0 -0
  1325. /package/src/icons/ast/{ArrowBarRight.ts → arrow-bar-right.ts} +0 -0
  1326. /package/src/icons/ast/{ArrowBarUp.ts → arrow-bar-up.ts} +0 -0
  1327. /package/src/icons/ast/{ArrowBottom.ts → arrow-bottom.ts} +0 -0
  1328. /package/src/icons/ast/{ArrowCollapseVertical.ts → arrow-collapse-vertical.ts} +0 -0
  1329. /package/src/icons/ast/{ArrowCollapse.ts → arrow-collapse.ts} +0 -0
  1330. /package/src/icons/ast/{ArrowForward.ts → arrow-forward.ts} +0 -0
  1331. /package/src/icons/ast/{ArrowLeft.ts → arrow-left.ts} +0 -0
  1332. /package/src/icons/ast/{ArrowRight.ts → arrow-right.ts} +0 -0
  1333. /package/src/icons/ast/{ArrowTop.ts → arrow-top.ts} +0 -0
  1334. /package/src/icons/ast/{ArrowUpCircle.ts → arrow-up-circle.ts} +0 -0
  1335. /package/src/icons/ast/{ArrowsRightLeft.ts → arrows-right-left.ts} +0 -0
  1336. /package/src/icons/ast/{AskForInput.ts → ask-for-input.ts} +0 -0
  1337. /package/src/icons/ast/{Asterisk.ts → asterisk.ts} +0 -0
  1338. /package/src/icons/ast/{Atom.ts → atom.ts} +0 -0
  1339. /package/src/icons/ast/{AutomationsCancelled.ts → automations-cancelled.ts} +0 -0
  1340. /package/src/icons/ast/{AutomationsDisabled.ts → automations-disabled.ts} +0 -0
  1341. /package/src/icons/ast/{AutomationsError.ts → automations-error.ts} +0 -0
  1342. /package/src/icons/ast/{AutomationsInProgress.ts → automations-in-progress.ts} +0 -0
  1343. /package/src/icons/ast/{AutomationsNotStarted.ts → automations-not-started.ts} +0 -0
  1344. /package/src/icons/ast/{AutomationsSuccess.ts → automations-success.ts} +0 -0
  1345. /package/src/icons/ast/{Back.ts → back.ts} +0 -0
  1346. /package/src/icons/ast/{BacklogIcon.ts → backlog-icon.ts} +0 -0
  1347. /package/src/icons/ast/{BatchActionsIcon.ts → batch-actions-icon.ts} +0 -0
  1348. /package/src/icons/ast/{BellCircle.ts → bell-circle.ts} +0 -0
  1349. /package/src/icons/ast/{BellFilled.ts → bell-filled.ts} +0 -0
  1350. /package/src/icons/ast/{BellOff.ts → bell-off.ts} +0 -0
  1351. /package/src/icons/ast/{BellRinging.ts → bell-ringing.ts} +0 -0
  1352. /package/src/icons/ast/{BellX.ts → bell-x.ts} +0 -0
  1353. /package/src/icons/ast/{Bolt.ts → bolt.ts} +0 -0
  1354. /package/src/icons/ast/{BringForward.ts → bring-forward.ts} +0 -0
  1355. /package/src/icons/ast/{BringToFront.ts → bring-to-front.ts} +0 -0
  1356. /package/src/icons/ast/{Cards.ts → cards.ts} +0 -0
  1357. /package/src/icons/ast/{ChatAi.ts → chat-ai.ts} +0 -0
  1358. /package/src/icons/ast/{ChatBubble.ts → chat-bubble.ts} +0 -0
  1359. /package/src/icons/ast/{ChatFloat.ts → chat-float.ts} +0 -0
  1360. /package/src/icons/ast/{ChatSidebar.ts → chat-sidebar.ts} +0 -0
  1361. /package/src/icons/ast/{Chat.ts → chat.ts} +0 -0
  1362. /package/src/icons/ast/{CheckCircleFilled.ts → check-circle-filled.ts} +0 -0
  1363. /package/src/icons/ast/{CheckCircle.ts → check-circle.ts} +0 -0
  1364. /package/src/icons/ast/{Checked.ts → checked.ts} +0 -0
  1365. /package/src/icons/ast/{Clean.ts → clean.ts} +0 -0
  1366. /package/src/icons/ast/{ClearInputFilled.ts → clear-input-filled.ts} +0 -0
  1367. /package/src/icons/ast/{ClearValue.ts → clear-value.ts} +0 -0
  1368. /package/src/icons/ast/{Clear.ts → clear.ts} +0 -0
  1369. /package/src/icons/ast/{ClockAlarm.ts → clock-alarm.ts} +0 -0
  1370. /package/src/icons/ast/{ClockForward.ts → clock-forward.ts} +0 -0
  1371. /package/src/icons/ast/{Clock.ts → clock.ts} +0 -0
  1372. /package/src/icons/ast/{Close.ts → close.ts} +0 -0
  1373. /package/src/icons/ast/{CollapseAllHorizontal.ts → collapse-all-horizontal.ts} +0 -0
  1374. /package/src/icons/ast/{CollapseAll.ts → collapse-all.ts} +0 -0
  1375. /package/src/icons/ast/{ColorCodingFilled.ts → color-coding-filled.ts} +0 -0
  1376. /package/src/icons/ast/{ColorCoding.ts → color-coding.ts} +0 -0
  1377. /package/src/icons/ast/{Columns2.ts → columns-2.ts} +0 -0
  1378. /package/src/icons/ast/{Columns4.ts → columns-4.ts} +0 -0
  1379. /package/src/icons/ast/{Columns.ts → columns.ts} +0 -0
  1380. /package/src/icons/ast/{CommentBubble.ts → comment-bubble.ts} +0 -0
  1381. /package/src/icons/ast/{Copy.ts → copy.ts} +0 -0
  1382. /package/src/icons/ast/{Create.ts → create.ts} +0 -0
  1383. /package/src/icons/ast/{CreditsFilled.ts → credits-filled.ts} +0 -0
  1384. /package/src/icons/ast/{CrossCircle.ts → cross-circle.ts} +0 -0
  1385. /package/src/icons/ast/{Crosshair.ts → crosshair.ts} +0 -0
  1386. /package/src/icons/ast/{Csv.ts → csv.ts} +0 -0
  1387. /package/src/icons/ast/{DatabaseOff.ts → database-off.ts} +0 -0
  1388. /package/src/icons/ast/{DatabaseStroke.ts → database-stroke.ts} +0 -0
  1389. /package/src/icons/ast/{Database.ts → database.ts} +0 -0
  1390. /package/src/icons/ast/{DateRange.ts → date-range.ts} +0 -0
  1391. /package/src/icons/ast/{Delete.ts → delete.ts} +0 -0
  1392. /package/src/icons/ast/{Demo.ts → demo.ts} +0 -0
  1393. /package/src/icons/ast/{Dependency.ts → dependency.ts} +0 -0
  1394. /package/src/icons/ast/{Dividers.ts → dividers.ts} +0 -0
  1395. /package/src/icons/ast/{Document.ts → document.ts} +0 -0
  1396. /package/src/icons/ast/{DoubleArrowLeft.ts → double-arrow-left.ts} +0 -0
  1397. /package/src/icons/ast/{DoubleArrowRight.ts → double-arrow-right.ts} +0 -0
  1398. /package/src/icons/ast/{DoubleLine.ts → double-line.ts} +0 -0
  1399. /package/src/icons/ast/{DragBlockHandleSingle.ts → drag-block-handle-single.ts} +0 -0
  1400. /package/src/icons/ast/{DragBlockHandle.ts → drag-block-handle.ts} +0 -0
  1401. /package/src/icons/ast/{DragHandle.ts → drag-handle.ts} +0 -0
  1402. /package/src/icons/ast/{Duplicate.ts → duplicate.ts} +0 -0
  1403. /package/src/icons/ast/{DynamicFilterValue.ts → dynamic-filter-value.ts} +0 -0
  1404. /package/src/icons/ast/{EditValue.ts → edit-value.ts} +0 -0
  1405. /package/src/icons/ast/{Email.ts → email.ts} +0 -0
  1406. /package/src/icons/ast/{EmojiDelete.ts → emoji-delete.ts} +0 -0
  1407. /package/src/icons/ast/{EntityCreateFilled.ts → entity-create-filled.ts} +0 -0
  1408. /package/src/icons/ast/{EntityCreate.ts → entity-create.ts} +0 -0
  1409. /package/src/icons/ast/{EntityMerge.ts → entity-merge.ts} +0 -0
  1410. /package/src/icons/ast/{Equation.ts → equation.ts} +0 -0
  1411. /package/src/icons/ast/{ExpandAllHorizontal.ts → expand-all-horizontal.ts} +0 -0
  1412. /package/src/icons/ast/{ExpandAll.ts → expand-all.ts} +0 -0
  1413. /package/src/icons/ast/{Export.ts → export.ts} +0 -0
  1414. /package/src/icons/ast/{ExtensionAssignments.ts → extension-assignments.ts} +0 -0
  1415. /package/src/icons/ast/{ExtensionAvatar.ts → extension-avatar.ts} +0 -0
  1416. /package/src/icons/ast/{ExtensionComments.ts → extension-comments.ts} +0 -0
  1417. /package/src/icons/ast/{ExtensionFiles.ts → extension-files.ts} +0 -0
  1418. /package/src/icons/ast/{ExtensionReferences.ts → extension-references.ts} +0 -0
  1419. /package/src/icons/ast/{ExtensionWorkflow.ts → extension-workflow.ts} +0 -0
  1420. /package/src/icons/ast/{Eye.ts → eye.ts} +0 -0
  1421. /package/src/icons/ast/{FavoritesChecked.ts → favorites-checked.ts} +0 -0
  1422. /package/src/icons/ast/{FavoritesOff.ts → favorites-off.ts} +0 -0
  1423. /package/src/icons/ast/{Favorites.ts → favorites.ts} +0 -0
  1424. /package/src/icons/ast/{FiberyDesktopApp.ts → fibery-desktop-app.ts} +0 -0
  1425. /package/src/icons/ast/{FiberyMono.ts → fibery-mono.ts} +0 -0
  1426. /package/src/icons/ast/{FieldUnit.ts → field-unit.ts} +0 -0
  1427. /package/src/icons/ast/{Fields.ts → fields.ts} +0 -0
  1428. /package/src/icons/ast/{Figma.ts → figma.ts} +0 -0
  1429. /package/src/icons/ast/{FileArchive.ts → file-archive.ts} +0 -0
  1430. /package/src/icons/ast/{FileBroken.ts → file-broken.ts} +0 -0
  1431. /package/src/icons/ast/{FileCounter.ts → file-counter.ts} +0 -0
  1432. /package/src/icons/ast/{FileDocument.ts → file-document.ts} +0 -0
  1433. /package/src/icons/ast/{FileDownload.ts → file-download.ts} +0 -0
  1434. /package/src/icons/ast/{FileImage.ts → file-image.ts} +0 -0
  1435. /package/src/icons/ast/{FileMultiple.ts → file-multiple.ts} +0 -0
  1436. /package/src/icons/ast/{FileOther.ts → file-other.ts} +0 -0
  1437. /package/src/icons/ast/{FilePresentation.ts → file-presentation.ts} +0 -0
  1438. /package/src/icons/ast/{FileTable.ts → file-table.ts} +0 -0
  1439. /package/src/icons/ast/{FileUpload.ts → file-upload.ts} +0 -0
  1440. /package/src/icons/ast/{FileVideo.ts → file-video.ts} +0 -0
  1441. /package/src/icons/ast/{Filter.ts → filter.ts} +0 -0
  1442. /package/src/icons/ast/{FitToScreen.ts → fit-to-screen.ts} +0 -0
  1443. /package/src/icons/ast/{FocusModeOff.ts → focus-mode-off.ts} +0 -0
  1444. /package/src/icons/ast/{FocusMode.ts → focus-mode.ts} +0 -0
  1445. /package/src/icons/ast/{FolderFavorite.ts → folder-favorite.ts} +0 -0
  1446. /package/src/icons/ast/{Folder.ts → folder.ts} +0 -0
  1447. /package/src/icons/ast/{FormWithCover.ts → form-with-cover.ts} +0 -0
  1448. /package/src/icons/ast/{FormWithoutCover.ts → form-without-cover.ts} +0 -0
  1449. /package/src/icons/ast/{FullscreenModeOffIcon.ts → fullscreen-mode-off-icon.ts} +0 -0
  1450. /package/src/icons/ast/{FullscreenModeOnIcon.ts → fullscreen-mode-on-icon.ts} +0 -0
  1451. /package/src/icons/ast/{FullscreenModeOn.ts → fullscreen-mode-on.ts} +0 -0
  1452. /package/src/icons/ast/{Gift.ts → gift.ts} +0 -0
  1453. /package/src/icons/ast/{Github.ts → github.ts} +0 -0
  1454. /package/src/icons/ast/{Gitlab.ts → gitlab.ts} +0 -0
  1455. /package/src/icons/ast/{GlobeSimple.ts → globe-simple.ts} +0 -0
  1456. /package/src/icons/ast/{GlobeUnpublish.ts → globe-unpublish.ts} +0 -0
  1457. /package/src/icons/ast/{Globe.ts → globe.ts} +0 -0
  1458. /package/src/icons/ast/{GoTo.ts → go-to.ts} +0 -0
  1459. /package/src/icons/ast/{GoogleDrive.ts → google-drive.ts} +0 -0
  1460. /package/src/icons/ast/{GoogleMap.ts → google-map.ts} +0 -0
  1461. /package/src/icons/ast/{GraduationCapFilled.ts → graduation-cap-filled.ts} +0 -0
  1462. /package/src/icons/ast/{HeadphonesAi.ts → headphones-ai.ts} +0 -0
  1463. /package/src/icons/ast/{Headphones.ts → headphones.ts} +0 -0
  1464. /package/src/icons/ast/{Hide.ts → hide.ts} +0 -0
  1465. /package/src/icons/ast/{Highlights.ts → highlights.ts} +0 -0
  1466. /package/src/icons/ast/{Hint.ts → hint.ts} +0 -0
  1467. /package/src/icons/ast/{HomeFilled.ts → home-filled.ts} +0 -0
  1468. /package/src/icons/ast/{Home.ts → home.ts} +0 -0
  1469. /package/src/icons/ast/{ImageXmark.ts → image-xmark.ts} +0 -0
  1470. /package/src/icons/ast/{ImportFilled.ts → import-filled.ts} +0 -0
  1471. /package/src/icons/ast/{Import.ts → import.ts} +0 -0
  1472. /package/src/icons/ast/{InfoCircleFilled.ts → info-circle-filled.ts} +0 -0
  1473. /package/src/icons/ast/{InfoCircle.ts → info-circle.ts} +0 -0
  1474. /package/src/icons/ast/{Integration.ts → integration.ts} +0 -0
  1475. /package/src/icons/ast/{IntegrationsFilled.ts → integrations-filled.ts} +0 -0
  1476. /package/src/icons/ast/{IntegrationsIntegrationDiscourseColor.ts → integrations-integration-discourse-color.ts} +0 -0
  1477. /package/src/icons/ast/{IntegrationsIntegrationIntercomColor.ts → integrations-integration-intercom-color.ts} +0 -0
  1478. /package/src/icons/ast/{IntegrationsIntegrationSlackColor.ts → integrations-integration-slack-color.ts} +0 -0
  1479. /package/src/icons/ast/{IntegrationsIntegrationZendeskColor.ts → integrations-integration-zendesk-color.ts} +0 -0
  1480. /package/src/icons/ast/{Intercom.ts → intercom.ts} +0 -0
  1481. /package/src/icons/ast/{InvitePeople.ts → invite-people.ts} +0 -0
  1482. /package/src/icons/ast/{ItemsTimeline.ts → items-timeline.ts} +0 -0
  1483. /package/src/icons/ast/{Items.ts → items.ts} +0 -0
  1484. /package/src/icons/ast/{Jira.ts → jira.ts} +0 -0
  1485. /package/src/icons/ast/{Key.ts → key.ts} +0 -0
  1486. /package/src/icons/ast/{KeyboardHideDown.ts → keyboard-hide-down.ts} +0 -0
  1487. /package/src/icons/ast/{Lab.ts → lab.ts} +0 -0
  1488. /package/src/icons/ast/{LayoutDouble.ts → layout-double.ts} +0 -0
  1489. /package/src/icons/ast/{LayoutMultiple.ts → layout-multiple.ts} +0 -0
  1490. /package/src/icons/ast/{LayoutSingle.ts → layout-single.ts} +0 -0
  1491. /package/src/icons/ast/{LeftPanel.ts → left-panel.ts} +0 -0
  1492. /package/src/icons/ast/{LevelPlus.ts → level-plus.ts} +0 -0
  1493. /package/src/icons/ast/{Levels.ts → levels.ts} +0 -0
  1494. /package/src/icons/ast/{LineDivider.ts → line-divider.ts} +0 -0
  1495. /package/src/icons/ast/{LineJump.ts → line-jump.ts} +0 -0
  1496. /package/src/icons/ast/{Link.ts → link.ts} +0 -0
  1497. /package/src/icons/ast/{LocationEdit.ts → location-edit.ts} +0 -0
  1498. /package/src/icons/ast/{LockOutline.ts → lock-outline.ts} +0 -0
  1499. /package/src/icons/ast/{Lock.ts → lock.ts} +0 -0
  1500. /package/src/icons/ast/{Logout.ts → logout.ts} +0 -0
  1501. /package/src/icons/ast/{Loom.ts → loom.ts} +0 -0
  1502. /package/src/icons/ast/{LoupeZoomIn.ts → loupe-zoom-in.ts} +0 -0
  1503. /package/src/icons/ast/{LoupeZoomOut.ts → loupe-zoom-out.ts} +0 -0
  1504. /package/src/icons/ast/{LoupeZoom.ts → loupe-zoom.ts} +0 -0
  1505. /package/src/icons/ast/{ManyPeople.ts → many-people.ts} +0 -0
  1506. /package/src/icons/ast/{MapMode.ts → map-mode.ts} +0 -0
  1507. /package/src/icons/ast/{Markdown.ts → markdown.ts} +0 -0
  1508. /package/src/icons/ast/{MenuCollapser.ts → menu-collapser.ts} +0 -0
  1509. /package/src/icons/ast/{Mermaid.ts → mermaid.ts} +0 -0
  1510. /package/src/icons/ast/{MessagePlusSquare.ts → message-plus-square.ts} +0 -0
  1511. /package/src/icons/ast/{MessagePlus.ts → message-plus.ts} +0 -0
  1512. /package/src/icons/ast/{Milestones.ts → milestones.ts} +0 -0
  1513. /package/src/icons/ast/{Minus.ts → minus.ts} +0 -0
  1514. /package/src/icons/ast/{Miro.ts → miro.ts} +0 -0
  1515. /package/src/icons/ast/{MirrorOff.ts → mirror-off.ts} +0 -0
  1516. /package/src/icons/ast/{MirrorOn.ts → mirror-on.ts} +0 -0
  1517. /package/src/icons/ast/{Mixpanel.ts → mixpanel.ts} +0 -0
  1518. /package/src/icons/ast/{Monitor.ts → monitor.ts} +0 -0
  1519. /package/src/icons/ast/{MoreCompact.ts → more-compact.ts} +0 -0
  1520. /package/src/icons/ast/{More.ts → more.ts} +0 -0
  1521. /package/src/icons/ast/{MoveBottom.ts → move-bottom.ts} +0 -0
  1522. /package/src/icons/ast/{MoveLeft.ts → move-left.ts} +0 -0
  1523. /package/src/icons/ast/{MoveRight.ts → move-right.ts} +0 -0
  1524. /package/src/icons/ast/{MoveSpace.ts → move-space.ts} +0 -0
  1525. /package/src/icons/ast/{MoveTop.ts → move-top.ts} +0 -0
  1526. /package/src/icons/ast/{NetworkAdd.ts → network-add.ts} +0 -0
  1527. /package/src/icons/ast/{Network.ts → network.ts} +0 -0
  1528. /package/src/icons/ast/{NoBorder.ts → no-border.ts} +0 -0
  1529. /package/src/icons/ast/{NoFill.ts → no-fill.ts} +0 -0
  1530. /package/src/icons/ast/{Notifications.ts → notifications.ts} +0 -0
  1531. /package/src/icons/ast/{ObjChild.ts → obj-child.ts} +0 -0
  1532. /package/src/icons/ast/{ObjM2M.ts → obj-m2m.ts} +0 -0
  1533. /package/src/icons/ast/{ObjO2O.ts → obj-o2o.ts} +0 -0
  1534. /package/src/icons/ast/{ObjParent.ts → obj-parent.ts} +0 -0
  1535. /package/src/icons/ast/{ObjSelf.ts → obj-self.ts} +0 -0
  1536. /package/src/icons/ast/{OnSchedule.ts → on-schedule.ts} +0 -0
  1537. /package/src/icons/ast/{OpenAi.ts → open-ai.ts} +0 -0
  1538. /package/src/icons/ast/{OpenAsPage.ts → open-as-page.ts} +0 -0
  1539. /package/src/icons/ast/{PageRegularMode.ts → page-regular-mode.ts} +0 -0
  1540. /package/src/icons/ast/{PageWideMode.ts → page-wide-mode.ts} +0 -0
  1541. /package/src/icons/ast/{PanelAdd.ts → panel-add.ts} +0 -0
  1542. /package/src/icons/ast/{Pencil.ts → pencil.ts} +0 -0
  1543. /package/src/icons/ast/{PeopleCheck.ts → people-check.ts} +0 -0
  1544. /package/src/icons/ast/{People.ts → people.ts} +0 -0
  1545. /package/src/icons/ast/{Photo.ts → photo.ts} +0 -0
  1546. /package/src/icons/ast/{PinFilled.ts → pin-filled.ts} +0 -0
  1547. /package/src/icons/ast/{Pin.ts → pin.ts} +0 -0
  1548. /package/src/icons/ast/{Popup.ts → popup.ts} +0 -0
  1549. /package/src/icons/ast/{Posts.ts → posts.ts} +0 -0
  1550. /package/src/icons/ast/{PresentPlay.ts → present-play.ts} +0 -0
  1551. /package/src/icons/ast/{PresentStop.ts → present-stop.ts} +0 -0
  1552. /package/src/icons/ast/{Print.ts → print.ts} +0 -0
  1553. /package/src/icons/ast/{PrivateItems.ts → private-items.ts} +0 -0
  1554. /package/src/icons/ast/{Question.ts → question.ts} +0 -0
  1555. /package/src/icons/ast/{QuickFilterPersonal.ts → quick-filter-personal.ts} +0 -0
  1556. /package/src/icons/ast/{QuickFilter.ts → quick-filter.ts} +0 -0
  1557. /package/src/icons/ast/{ReadOnly.ts → read-only.ts} +0 -0
  1558. /package/src/icons/ast/{Refresh.ts → refresh.ts} +0 -0
  1559. /package/src/icons/ast/{RemovePeople.ts → remove-people.ts} +0 -0
  1560. /package/src/icons/ast/{Remove.ts → remove.ts} +0 -0
  1561. /package/src/icons/ast/{Reply.ts → reply.ts} +0 -0
  1562. /package/src/icons/ast/{ResetPassword.ts → reset-password.ts} +0 -0
  1563. /package/src/icons/ast/{Restore.ts → restore.ts} +0 -0
  1564. /package/src/icons/ast/{RicheditorActionsMore.ts → richeditor-actions-more.ts} +0 -0
  1565. /package/src/icons/ast/{RicheditorBlockCallout.ts → richeditor-block-callout.ts} +0 -0
  1566. /package/src/icons/ast/{RicheditorBlockCode.ts → richeditor-block-code.ts} +0 -0
  1567. /package/src/icons/ast/{RicheditorBlockEmbed.ts → richeditor-block-embed.ts} +0 -0
  1568. /package/src/icons/ast/{RicheditorBlockEntity.ts → richeditor-block-entity.ts} +0 -0
  1569. /package/src/icons/ast/{RicheditorBlockFile.ts → richeditor-block-file.ts} +0 -0
  1570. /package/src/icons/ast/{RicheditorBlockH1.ts → richeditor-block-h1.ts} +0 -0
  1571. /package/src/icons/ast/{RicheditorBlockH2.ts → richeditor-block-h2.ts} +0 -0
  1572. /package/src/icons/ast/{RicheditorBlockH3.ts → richeditor-block-h3.ts} +0 -0
  1573. /package/src/icons/ast/{RicheditorBlockH4.ts → richeditor-block-h4.ts} +0 -0
  1574. /package/src/icons/ast/{RicheditorBlockMention.ts → richeditor-block-mention.ts} +0 -0
  1575. /package/src/icons/ast/{RicheditorBlockParagraph.ts → richeditor-block-paragraph.ts} +0 -0
  1576. /package/src/icons/ast/{RicheditorBlockQuote.ts → richeditor-block-quote.ts} +0 -0
  1577. /package/src/icons/ast/{RicheditorChecklistCreate.ts → richeditor-checklist-create.ts} +0 -0
  1578. /package/src/icons/ast/{RicheditorCommentCreate.ts → richeditor-comment-create.ts} +0 -0
  1579. /package/src/icons/ast/{RicheditorEntityLinkCreate.ts → richeditor-entity-link-create.ts} +0 -0
  1580. /package/src/icons/ast/{RicheditorHistoryRedo.ts → richeditor-history-redo.ts} +0 -0
  1581. /package/src/icons/ast/{RicheditorHistoryUndo.ts → richeditor-history-undo.ts} +0 -0
  1582. /package/src/icons/ast/{RicheditorImageAlignCenter.ts → richeditor-image-align-center.ts} +0 -0
  1583. /package/src/icons/ast/{RicheditorImageAlignLeft.ts → richeditor-image-align-left.ts} +0 -0
  1584. /package/src/icons/ast/{RicheditorImageAlignRight.ts → richeditor-image-align-right.ts} +0 -0
  1585. /package/src/icons/ast/{RicheditorImageUpload.ts → richeditor-image-upload.ts} +0 -0
  1586. /package/src/icons/ast/{RicheditorImageWrapCenter.ts → richeditor-image-wrap-center.ts} +0 -0
  1587. /package/src/icons/ast/{RicheditorImageWrapLeft.ts → richeditor-image-wrap-left.ts} +0 -0
  1588. /package/src/icons/ast/{RicheditorImageWrapRight.ts → richeditor-image-wrap-right.ts} +0 -0
  1589. /package/src/icons/ast/{RicheditorImageZoom.ts → richeditor-image-zoom.ts} +0 -0
  1590. /package/src/icons/ast/{RicheditorLinkCreate.ts → richeditor-link-create.ts} +0 -0
  1591. /package/src/icons/ast/{RicheditorLinkedhighlightCreate.ts → richeditor-linkedhighlight-create.ts} +0 -0
  1592. /package/src/icons/ast/{RicheditorListBullet.ts → richeditor-list-bullet.ts} +0 -0
  1593. /package/src/icons/ast/{RicheditorListIndent.ts → richeditor-list-indent.ts} +0 -0
  1594. /package/src/icons/ast/{RicheditorListOrdered.ts → richeditor-list-ordered.ts} +0 -0
  1595. /package/src/icons/ast/{RicheditorListUnindent.ts → richeditor-list-unindent.ts} +0 -0
  1596. /package/src/icons/ast/{RicheditorMarkCode.ts → richeditor-mark-code.ts} +0 -0
  1597. /package/src/icons/ast/{RicheditorMarkEm.ts → richeditor-mark-em.ts} +0 -0
  1598. /package/src/icons/ast/{RicheditorMarkHighlight.ts → richeditor-mark-highlight.ts} +0 -0
  1599. /package/src/icons/ast/{RicheditorMarkStrike.ts → richeditor-mark-strike.ts} +0 -0
  1600. /package/src/icons/ast/{RicheditorMarkStrong.ts → richeditor-mark-strong.ts} +0 -0
  1601. /package/src/icons/ast/{RicheditorMarkTextBackgroundColor.ts → richeditor-mark-text-background-color.ts} +0 -0
  1602. /package/src/icons/ast/{RicheditorMarkUnderline.ts → richeditor-mark-underline.ts} +0 -0
  1603. /package/src/icons/ast/{RicheditorOpenLink.ts → richeditor-open-link.ts} +0 -0
  1604. /package/src/icons/ast/{RicheditorTableCreate.ts → richeditor-table-create.ts} +0 -0
  1605. /package/src/icons/ast/{RicheditorUnlink.ts → richeditor-unlink.ts} +0 -0
  1606. /package/src/icons/ast/{RicheditorVideoUpload.ts → richeditor-video-upload.ts} +0 -0
  1607. /package/src/icons/ast/{RightPanel.ts → right-panel.ts} +0 -0
  1608. /package/src/icons/ast/{Rows.ts → rows.ts} +0 -0
  1609. /package/src/icons/ast/{RuleScheduled.ts → rule-scheduled.ts} +0 -0
  1610. /package/src/icons/ast/{SearchAdd.ts → search-add.ts} +0 -0
  1611. /package/src/icons/ast/{SearchFilled.ts → search-filled.ts} +0 -0
  1612. /package/src/icons/ast/{SearchRemove.ts → search-remove.ts} +0 -0
  1613. /package/src/icons/ast/{Search.ts → search.ts} +0 -0
  1614. /package/src/icons/ast/{SelfReferenceOff.ts → self-reference-off.ts} +0 -0
  1615. /package/src/icons/ast/{SelfReferenceOn.ts → self-reference-on.ts} +0 -0
  1616. /package/src/icons/ast/{SendArrow.ts → send-arrow.ts} +0 -0
  1617. /package/src/icons/ast/{SendBackward.ts → send-backward.ts} +0 -0
  1618. /package/src/icons/ast/{SendToBack.ts → send-to-back.ts} +0 -0
  1619. /package/src/icons/ast/{SettingsFilled.ts → settings-filled.ts} +0 -0
  1620. /package/src/icons/ast/{SettingsOff.ts → settings-off.ts} +0 -0
  1621. /package/src/icons/ast/{Settings.ts → settings.ts} +0 -0
  1622. /package/src/icons/ast/{Share.ts → share.ts} +0 -0
  1623. /package/src/icons/ast/{Shared.ts → shared.ts} +0 -0
  1624. /package/src/icons/ast/{ShieldKeyhole.ts → shield-keyhole.ts} +0 -0
  1625. /package/src/icons/ast/{ShowAuthor.ts → show-author.ts} +0 -0
  1626. /package/src/icons/ast/{SidebarFieldsOpened.ts → sidebar-fields-opened.ts} +0 -0
  1627. /package/src/icons/ast/{SidebarFields.ts → sidebar-fields.ts} +0 -0
  1628. /package/src/icons/ast/{Sidebar.ts → sidebar.ts} +0 -0
  1629. /package/src/icons/ast/{SimpleCompass.ts → simple-compass.ts} +0 -0
  1630. /package/src/icons/ast/{SlackIcon.ts → slack-icon.ts} +0 -0
  1631. /package/src/icons/ast/{Slack.ts → slack.ts} +0 -0
  1632. /package/src/icons/ast/{SlideMenuClose.ts → slide-menu-close.ts} +0 -0
  1633. /package/src/icons/ast/{SlideMenuFilled.ts → slide-menu-filled.ts} +0 -0
  1634. /package/src/icons/ast/{SlideMenuOpen.ts → slide-menu-open.ts} +0 -0
  1635. /package/src/icons/ast/{SlideMenu.ts → slide-menu.ts} +0 -0
  1636. /package/src/icons/ast/{SmartFolder.ts → smart-folder.ts} +0 -0
  1637. /package/src/icons/ast/{SortOnBottom.ts → sort-on-bottom.ts} +0 -0
  1638. /package/src/icons/ast/{SortOnTop.ts → sort-on-top.ts} +0 -0
  1639. /package/src/icons/ast/{Sort.ts → sort.ts} +0 -0
  1640. /package/src/icons/ast/{SpaceApp.ts → space-app.ts} +0 -0
  1641. /package/src/icons/ast/{SpaceGenerate.ts → space-generate.ts} +0 -0
  1642. /package/src/icons/ast/{SpaceList.ts → space-list.ts} +0 -0
  1643. /package/src/icons/ast/{SpaceScratch.ts → space-scratch.ts} +0 -0
  1644. /package/src/icons/ast/{SpaceTemplate.ts → space-template.ts} +0 -0
  1645. /package/src/icons/ast/{Spinner.ts → spinner.ts} +0 -0
  1646. /package/src/icons/ast/{Success.ts → success.ts} +0 -0
  1647. /package/src/icons/ast/{SuggestIntegration.ts → suggest-integration.ts} +0 -0
  1648. /package/src/icons/ast/{SwitchToMention.ts → switch-to-mention.ts} +0 -0
  1649. /package/src/icons/ast/{SwitchToText.ts → switch-to-text.ts} +0 -0
  1650. /package/src/icons/ast/{SwitchToWidget.ts → switch-to-widget.ts} +0 -0
  1651. /package/src/icons/ast/{TableLayout.ts → table-layout.ts} +0 -0
  1652. /package/src/icons/ast/{Template.ts → template.ts} +0 -0
  1653. /package/src/icons/ast/{TemplatesFilled.ts → templates-filled.ts} +0 -0
  1654. /package/src/icons/ast/{Templates.ts → templates.ts} +0 -0
  1655. /package/src/icons/ast/{Terminal.ts → terminal.ts} +0 -0
  1656. /package/src/icons/ast/{TextNoWrap.ts → text-no-wrap.ts} +0 -0
  1657. /package/src/icons/ast/{TextToolAlignBottom.ts → text-tool-align-bottom.ts} +0 -0
  1658. /package/src/icons/ast/{TextToolAlignMiddle.ts → text-tool-align-middle.ts} +0 -0
  1659. /package/src/icons/ast/{TextToolAlignTop.ts → text-tool-align-top.ts} +0 -0
  1660. /package/src/icons/ast/{TextWrap.ts → text-wrap.ts} +0 -0
  1661. /package/src/icons/ast/{ThumbsDown.ts → thumbs-down.ts} +0 -0
  1662. /package/src/icons/ast/{ThumbsUp.ts → thumbs-up.ts} +0 -0
  1663. /package/src/icons/ast/{Toc.ts → toc.ts} +0 -0
  1664. /package/src/icons/ast/{Twitter.ts → twitter.ts} +0 -0
  1665. /package/src/icons/ast/{TypeBoolean.ts → type-boolean.ts} +0 -0
  1666. /package/src/icons/ast/{TypeButton.ts → type-button.ts} +0 -0
  1667. /package/src/icons/ast/{TypeCheckbox.ts → type-checkbox.ts} +0 -0
  1668. /package/src/icons/ast/{TypeDate.ts → type-date.ts} +0 -0
  1669. /package/src/icons/ast/{TypeEmail.ts → type-email.ts} +0 -0
  1670. /package/src/icons/ast/{TypeEmoji.ts → type-emoji.ts} +0 -0
  1671. /package/src/icons/ast/{TypeFormula.ts → type-formula.ts} +0 -0
  1672. /package/src/icons/ast/{TypeFunction.ts → type-function.ts} +0 -0
  1673. /package/src/icons/ast/{TypeId.ts → type-id.ts} +0 -0
  1674. /package/src/icons/ast/{TypeLocation.ts → type-location.ts} +0 -0
  1675. /package/src/icons/ast/{TypeLookup.ts → type-lookup.ts} +0 -0
  1676. /package/src/icons/ast/{TypeMoney.ts → type-money.ts} +0 -0
  1677. /package/src/icons/ast/{TypeMultiSelect.ts → type-multi-select.ts} +0 -0
  1678. /package/src/icons/ast/{TypeNumber.ts → type-number.ts} +0 -0
  1679. /package/src/icons/ast/{TypePercent.ts → type-percent.ts} +0 -0
  1680. /package/src/icons/ast/{TypePhone.ts → type-phone.ts} +0 -0
  1681. /package/src/icons/ast/{TypeRelation.ts → type-relation.ts} +0 -0
  1682. /package/src/icons/ast/{TypeRichText.ts → type-rich-text.ts} +0 -0
  1683. /package/src/icons/ast/{TypeRule.ts → type-rule.ts} +0 -0
  1684. /package/src/icons/ast/{TypeSingleSelect.ts → type-single-select.ts} +0 -0
  1685. /package/src/icons/ast/{TypeText.ts → type-text.ts} +0 -0
  1686. /package/src/icons/ast/{TypeUrl.ts → type-url.ts} +0 -0
  1687. /package/src/icons/ast/{UnitsAvatar.ts → units-avatar.ts} +0 -0
  1688. /package/src/icons/ast/{UnitsCollection.ts → units-collection.ts} +0 -0
  1689. /package/src/icons/ast/{UnitsCounter.ts → units-counter.ts} +0 -0
  1690. /package/src/icons/ast/{UnitsDate.ts → units-date.ts} +0 -0
  1691. /package/src/icons/ast/{UnitsDbBadgeAbbr.ts → units-db-badge-abbr.ts} +0 -0
  1692. /package/src/icons/ast/{UnitsDbBadgeFull.ts → units-db-badge-full.ts} +0 -0
  1693. /package/src/icons/ast/{UnitsDbIcon.ts → units-db-icon.ts} +0 -0
  1694. /package/src/icons/ast/{UnitsFieldIconButton.ts → units-field-icon-button.ts} +0 -0
  1695. /package/src/icons/ast/{UnitsField.ts → units-field.ts} +0 -0
  1696. /package/src/icons/ast/{UnitsInput.ts → units-input.ts} +0 -0
  1697. /package/src/icons/ast/{UnitsProgressBar.ts → units-progress-bar.ts} +0 -0
  1698. /package/src/icons/ast/{UnitsRichText.ts → units-rich-text.ts} +0 -0
  1699. /package/src/icons/ast/{UnitsSnippet.ts → units-snippet.ts} +0 -0
  1700. /package/src/icons/ast/{Unlink.ts → unlink.ts} +0 -0
  1701. /package/src/icons/ast/{UnlockFilled.ts → unlock-filled.ts} +0 -0
  1702. /package/src/icons/ast/{UnlockOutline.ts → unlock-outline.ts} +0 -0
  1703. /package/src/icons/ast/{Upgrade.ts → upgrade.ts} +0 -0
  1704. /package/src/icons/ast/{UsbFlashDrive.ts → usb-flash-drive.ts} +0 -0
  1705. /package/src/icons/ast/{UserCheck.ts → user-check.ts} +0 -0
  1706. /package/src/icons/ast/{UserGroupRemove.ts → user-group-remove.ts} +0 -0
  1707. /package/src/icons/ast/{UserGroup.ts → user-group.ts} +0 -0
  1708. /package/src/icons/ast/{UserRole.ts → user-role.ts} +0 -0
  1709. /package/src/icons/ast/{UserX.ts → user-x.ts} +0 -0
  1710. /package/src/icons/ast/{ValueEdit.ts → value-edit.ts} +0 -0
  1711. /package/src/icons/ast/{ViewAi.ts → view-ai.ts} +0 -0
  1712. /package/src/icons/ast/{ViewBoard.ts → view-board.ts} +0 -0
  1713. /package/src/icons/ast/{ViewCalendar.ts → view-calendar.ts} +0 -0
  1714. /package/src/icons/ast/{ViewCanvas.ts → view-canvas.ts} +0 -0
  1715. /package/src/icons/ast/{ViewChart.ts → view-chart.ts} +0 -0
  1716. /package/src/icons/ast/{ViewDashboard.ts → view-dashboard.ts} +0 -0
  1717. /package/src/icons/ast/{ViewDetails.ts → view-details.ts} +0 -0
  1718. /package/src/icons/ast/{ViewDocument.ts → view-document.ts} +0 -0
  1719. /package/src/icons/ast/{ViewEmbed.ts → view-embed.ts} +0 -0
  1720. /package/src/icons/ast/{ViewFeed.ts → view-feed.ts} +0 -0
  1721. /package/src/icons/ast/{ViewForm.ts → view-form.ts} +0 -0
  1722. /package/src/icons/ast/{ViewGallery.ts → view-gallery.ts} +0 -0
  1723. /package/src/icons/ast/{ViewGantt.ts → view-gantt.ts} +0 -0
  1724. /package/src/icons/ast/{ViewList.ts → view-list.ts} +0 -0
  1725. /package/src/icons/ast/{ViewMap.ts → view-map.ts} +0 -0
  1726. /package/src/icons/ast/{ViewPage.ts → view-page.ts} +0 -0
  1727. /package/src/icons/ast/{ViewTable.ts → view-table.ts} +0 -0
  1728. /package/src/icons/ast/{ViewTimeline.ts → view-timeline.ts} +0 -0
  1729. /package/src/icons/ast/{Views.ts → views.ts} +0 -0
  1730. /package/src/icons/ast/{WarningTriangleFilled.ts → warning-triangle-filled.ts} +0 -0
  1731. /package/src/icons/ast/{WarningTriangle.ts → warning-triangle.ts} +0 -0
  1732. /package/src/icons/ast/{Warning.ts → warning.ts} +0 -0
  1733. /package/src/icons/ast/{Webhooks.ts → webhooks.ts} +0 -0
  1734. /package/src/icons/ast/{Windows.ts → windows.ts} +0 -0
  1735. /package/src/icons/ast/{WorkspaceMap.ts → workspace-map.ts} +0 -0
  1736. /package/src/icons/ast/{Youtube.ts → youtube.ts} +0 -0
  1737. /package/src/icons/ast/{ZoomIn.ts → zoom-in.ts} +0 -0
  1738. /package/src/icons/ast/{ZoomOut.ts → zoom-out.ts} +0 -0
  1739. /package/src/{is-iOS.ts → is-ios.ts} +0 -0
@@ -0,0 +1,2000 @@
1
+ /* Auto-generated by theme-snapshots.test.ts for prefix "fibery". */
2
+ /* IDE DX only: lets editors resolve var(--fibery-color-*) by name. Not imported at runtime. */
3
+ :root {
4
+ --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
5
+ --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(0, 0, 0, 0.09);
6
+ --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(0, 0, 0, 0.09);
7
+ --fibery-color-shadow50: 0 0 0 1px rgba(23, 23, 23, 0.05);
8
+ --fibery-color-shadow100: 0 1px 4px 0 rgba(23, 23, 23, 0.05);
9
+ --fibery-color-shadow200: 0 2px 6px 0 rgba(23, 23, 23, 0.05);
10
+ --fibery-color-shadow300: 0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15);
11
+ --fibery-color-shadow400: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15);
12
+ --fibery-color-shadow500: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15);
13
+ --fibery-color-shadow600: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2);
14
+ --fibery-color-actionMenuShadow:
15
+ 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);
16
+ --fibery-color-shadowPopup:
17
+ 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);
18
+ --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(120, 120, 120, 0.1);
19
+ --fibery-color-highlightBgYellow: rgb(255, 236, 196);
20
+ --fibery-color-highlightFgYellow: rgb(167, 125, 0);
21
+ --fibery-color-highlightFgOnBgYellow: rgb(139, 104, 0);
22
+ --fibery-color-highlightBgGreen: rgb(218, 246, 202);
23
+ --fibery-color-highlightFgGreen: rgb(80, 147, 0);
24
+ --fibery-color-highlightFgOnBgGreen: rgb(66, 123, 0);
25
+ --fibery-color-highlightBgAquamarine: rgb(196, 249, 222);
26
+ --fibery-color-highlightFgAquamarine: rgb(0, 149, 104);
27
+ --fibery-color-highlightFgOnBgAquamarine: rgb(0, 123, 85);
28
+ --fibery-color-highlightBgAqua: rgb(186, 249, 240);
29
+ --fibery-color-highlightFgAqua: rgb(0, 147, 135);
30
+ --fibery-color-highlightFgOnBgAqua: rgb(0, 121, 111);
31
+ --fibery-color-highlightBgBlue: rgb(225, 238, 255);
32
+ --fibery-color-highlightFgBlue: rgb(0, 130, 243);
33
+ --fibery-color-highlightFgOnBgBlue: rgb(0, 106, 201);
34
+ --fibery-color-highlightBgPurple: rgb(245, 233, 255);
35
+ --fibery-color-highlightFgPurple: rgb(185, 76, 249);
36
+ --fibery-color-highlightFgOnBgPurple: rgb(160, 44, 221);
37
+ --fibery-color-highlightBgPink: rgb(255, 231, 243);
38
+ --fibery-color-highlightFgPink: rgb(232, 38, 172);
39
+ --fibery-color-highlightFgOnBgPink: rgb(196, 0, 142);
40
+ --fibery-color-highlightBgRed: rgb(255, 232, 230);
41
+ --fibery-color-highlightFgRed: rgb(250, 9, 44);
42
+ --fibery-color-highlightFgOnBgRed: rgb(207, 0, 33);
43
+ --fibery-color-highlightBgGrey: rgb(238, 238, 238);
44
+ --fibery-color-highlightFgGrey: rgb(132, 132, 132);
45
+ --fibery-color-highlightFgOnBgGrey: rgb(110, 110, 110);
46
+ --fibery-color-colorPickerCssFilter: none;
47
+ --fibery-color-mode: light;
48
+ --fibery-color-colorAccentBgSubtle: rgba(73, 120, 212, 0.1);
49
+ --fibery-color-colorAccentBgMild: rgba(73, 120, 212, 0.15);
50
+ --fibery-color-colorAccentBgMedium: rgba(73, 120, 212, 0.2);
51
+ --fibery-color-colorAccentBgStrong: rgba(73, 120, 212, 0.3);
52
+ --fibery-color-colorAccentBgBold: rgba(73, 120, 212, 0.35);
53
+ --fibery-color-colorAccentBgVivid: rgba(73, 120, 212, 0.6);
54
+ --fibery-color-colorAccentStroke: rgba(73, 120, 212, 0.25);
55
+ --fibery-color-colorAccentStrokeHover: rgba(73, 120, 212, 0.4);
56
+ --fibery-color-colorAccentStrokeFocus: rgba(73, 120, 212, 0.5);
57
+ --fibery-color-colorAccentSolid: rgba(73, 120, 212, 0.8);
58
+ --fibery-color-colorAccent: #4978d4;
59
+ --fibery-color-darkenPrimary: rgb(62, 96, 161);
60
+ --fibery-color-whiteColor: rgb(255, 255, 255);
61
+ --fibery-color-blackColor: rgb(0, 0, 0);
62
+ --fibery-color-mainBg: rgb(245, 245, 245);
63
+ --fibery-color-panelBg: rgb(255, 255, 255);
64
+ --fibery-color-panelContentBg: rgb(247, 247, 247);
65
+ --fibery-color-colorBgRelationContainer: rgb(247, 247, 247);
66
+ --fibery-color-colorAI: #9d63d4;
67
+ --fibery-color-colorBgAI: rgba(157, 99, 212, 0.1);
68
+ --fibery-color-colorBgAIFloatingLauncher: rgb(252, 252, 252);
69
+ --fibery-color-colorBgAIFloatingPanelContent: rgb(252, 252, 252);
70
+ --fibery-color-colorBgAISidebarContent: rgb(252, 252, 252);
71
+ --fibery-color-pageContentBg: rgb(255, 255, 255);
72
+ --fibery-color-colorBgPopup: rgb(255, 255, 255);
73
+ --fibery-color-menuBg: rgb(245, 245, 245);
74
+ --fibery-color-menuTextColor: rgb(23, 23, 23);
75
+ --fibery-color-menuItemHoverColor: rgb(232, 232, 232);
76
+ --fibery-color-menuSelectedTextColor: rgb(247, 247, 247);
77
+ --fibery-color-menuIconColor: rgba(23, 23, 23, 0.7);
78
+ --fibery-color-textColor: rgb(23, 23, 23);
79
+ --fibery-color-textSelectionColor: rgba(73, 120, 212, 0.2);
80
+ --fibery-color-accentTextColor: rgb(120, 120, 120);
81
+ --fibery-color-disabledTextColor: rgb(158, 158, 158);
82
+ --fibery-color-inversedTextColor: rgb(245, 245, 245);
83
+ --fibery-color-colorTextSecondary: rgba(23, 23, 23, 0.7);
84
+ --fibery-color-linkColor: #3869cc;
85
+ --fibery-color-linkBorder: 0.5px solid rgba(56, 105, 204, 0.4);
86
+ --fibery-color-linkHoverColor: #3869cc;
87
+ --fibery-color-linkBorderHover: 0.5px solid rgba(56, 105, 204, 0.75);
88
+ --fibery-color-codeColor: rgb(211, 62, 78);
89
+ --fibery-color-codeBgColor: rgb(245, 245, 245);
90
+ --fibery-color-codeBlockBgColor: rgb(245, 245, 245);
91
+ --fibery-color-addedDiffTextColor: rgb(0, 144, 130);
92
+ --fibery-color-removedDiffTextColor: rgb(175, 36, 56);
93
+ --fibery-color-entityNodeColor: rgb(36, 36, 36);
94
+ --fibery-color-entityNodeBorder: 0.5px solid rgba(36, 36, 36, 0.3);
95
+ --fibery-color-entityNodeHoverColor: rgb(61, 61, 61);
96
+ --fibery-color-entityNodeBorderHover: 0.5px solid rgba(94, 94, 94, 0.8);
97
+ --fibery-color-entityNodeBgColor: rgb(247, 247, 247);
98
+ --fibery-color-shortcutTextColor: rgb(158, 158, 158);
99
+ --fibery-color-shortcutBorder: 1px solid rgba(199, 199, 199, 0.5);
100
+ --fibery-color-shortcutBorderColor: rgba(199, 199, 199, 0.5);
101
+ --fibery-color-inputBgColor: rgb(255, 255, 255);
102
+ --fibery-color-inputDisabledBgColor: rgba(227, 227, 227, 0.3);
103
+ --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(227, 227, 227, 0.2);
104
+ --fibery-color-inputCopyBgColor: rgb(245, 245, 245);
105
+ --fibery-color-inputBorderColor: 0 0 0 1px rgba(227, 227, 227, 0.7);
106
+ --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(219, 219, 219);
107
+ --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(199, 199, 199);
108
+ --fibery-color-inputBorderBlendMode: multiply;
109
+ --fibery-color-inputPlaceholderTextColor: rgb(158, 158, 158);
110
+ --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(175, 36, 56);
111
+ --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(175, 36, 56, 0.4);
112
+ --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(175, 36, 56, 0.25);
113
+ --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(175, 36, 56, 0.25);
114
+ --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(246, 217, 0);
115
+ --fibery-color-buttonPrimaryColor: #4978d4;
116
+ --fibery-color-buttonColor: rgb(120, 120, 120);
117
+ --fibery-color-buttonPrimaryTextColor: rgb(247, 247, 247);
118
+ --fibery-color-checkboxColor: rgba(23, 23, 23, 0.7);
119
+ --fibery-color-colorBorderBlockQuote: rgb(94, 94, 94);
120
+ --fibery-color-colorBgActionsMenu: rgb(255, 255, 255);
121
+ --fibery-color-colorBgActionsMenuItemHover: rgb(237, 237, 237);
122
+ --fibery-color-colorBgActionsMenuItemSelected: rgba(232, 239, 253, 0.8);
123
+ --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(219, 229, 250, 0.8);
124
+ --fibery-color-colorBgActionsMenuItemDangerHover: rgba(211, 62, 78, 0.1);
125
+ --fibery-color-colorBgActionsMenuItemDangerActive: rgba(211, 62, 78, 0.8);
126
+ --fibery-color-actionMenuBg: rgb(255, 255, 255);
127
+ --fibery-color-actionMenuInnerBg: rgb(255, 255, 255);
128
+ --fibery-color-actionMenuHover: rgb(237, 237, 237);
129
+ --fibery-color-actionMenuInnerHover: rgb(237, 237, 237);
130
+ --fibery-color-actionMenuButtonColor: rgb(255, 255, 255);
131
+ --fibery-color-actionMenuButtonHoverColor: rgb(252, 252, 252);
132
+ --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
133
+ --fibery-color-actionMenuSeparatorColor: rgba(0, 0, 0, 0.1);
134
+ --fibery-color-separatorColor: rgba(0, 0, 0, 0.1);
135
+ --fibery-color-separatorColorDimmed: rgba(0, 0, 0, 0.05);
136
+ --fibery-color-separatorBreadcrumbsColor: rgb(199, 199, 199);
137
+ --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(0, 0, 0, 0.05);
138
+ --fibery-color-borderSeparator: 0.5px solid rgba(0, 0, 0, 0.1);
139
+ --fibery-color-borderSeparatorMedium: 0.5px solid rgba(0, 0, 0, 0.15);
140
+ --fibery-color-borderSeparatorStrong: 0.5px solid rgba(0, 0, 0, 0.25);
141
+ --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
142
+ --fibery-color-borderSolidSeparator: 1px solid rgba(0, 0, 0, 0.1);
143
+ --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(0, 0, 0, 0.05);
144
+ --fibery-color-borderSolidFilterGroup: 1px solid rgba(0, 0, 0, 0.05);
145
+ --fibery-color-borderSolidGrid: 1px solid rgb(232, 232, 232);
146
+ --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(199, 199, 199);
147
+ --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
148
+ --fibery-color-borderSolidCommentBubble: 1px solid rgb(255, 255, 255);
149
+ --fibery-color-borderBlockQuote: 3px solid rgb(94, 94, 94);
150
+ --fibery-color-shadowCardDefault: 0 0 0 1px rgba(227, 227, 227, 0.7), 0 1px 4px 0 rgba(23, 23, 23, 0.05);
151
+ --fibery-color-shadowCardHover: 0 0 0 1px rgba(227, 227, 227, 0.7), 0 2px 6px 0 rgba(23, 23, 23, 0.05);
152
+ --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(227, 227, 227, 0.7);
153
+ --fibery-color-iconColor: rgba(23, 23, 23, 0.7);
154
+ --fibery-color-appIconColor: rgba(247, 247, 247, 0.9);
155
+ --fibery-color-appIconBgColor: rgba(252, 252, 252, 0.9);
156
+ --fibery-color-mentionBgColor: rgba(219, 219, 219, 0.3);
157
+ --fibery-color-colorBgSelectMenu: rgb(252, 252, 252);
158
+ --fibery-color-shadowSelectMenu:
159
+ 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);
160
+ --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
161
+ --fibery-color-colorBgListItemGeneralHover: rgb(245, 245, 245);
162
+ --fibery-color-colorBgListItemGeneralFocus: rgb(237, 237, 237);
163
+ --fibery-color-colorBgListItemGeneralSelected: #f1f5fe;
164
+ --fibery-color-colorBgListItemGeneralSelectedHover: #e8effd;
165
+ --fibery-color-colorBgListItemGeneralSelectedFocus: #e8effd;
166
+ --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
167
+ --fibery-color-colorTextListItemGeneralDisabled: rgb(158, 158, 158);
168
+ --fibery-color-colorBgListItemGeneralSelectedDisabled: #dbe5fa;
169
+ --fibery-color-opacityListItemGeneralDisabled: 0.4;
170
+ --fibery-color-colorSearchSubtitle: rgb(158, 158, 158);
171
+ --fibery-color-colorBgSearchRowHover: rgb(237, 237, 237);
172
+ --fibery-color-colorBgSearchRowCreateHover: #e8effd;
173
+ --fibery-color-opacitySearchItemDone: 0.4;
174
+ --fibery-color-colorBgEntityBoxDefault: rgb(255, 255, 255);
175
+ --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(232, 232, 232);
176
+ --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
177
+ --fibery-color-colorBgEntityBoxDefaultHover: rgb(255, 255, 255);
178
+ --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(23, 23, 23, 0.1);
179
+ --fibery-color-colorBgEntityBoxDefaultFocus: rgb(255, 255, 255);
180
+ --fibery-color-colorOverlayEntityBoxDefaultFocus: #4978d4;
181
+ --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(73, 120, 212, 0.4);
182
+ --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(255, 255, 255);
183
+ --fibery-color-colorOverlayEntityBoxDefaultFocusHover: #4978d4;
184
+ --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(73, 120, 212, 0.6);
185
+ --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
186
+ --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(23, 23, 23, 0.1);
187
+ --fibery-color-colorBgEntityBoxSelected: #fafcff;
188
+ --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4);
189
+ --fibery-color-colorBgEntityBoxSelectedHover: #f1f5fe;
190
+ --fibery-color-shadowStrokeEntityBoxSelectedHover:
191
+ 0 0 0 1px rgba(73, 120, 212, 0.6), 0 0 0 3px rgba(73, 120, 212, 0.4);
192
+ --fibery-color-colorBgEntityBoxSelectedDrag: #f1f5fe;
193
+ --fibery-color-shadowStrokeEntityBoxSelectedDrag:
194
+ 0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4);
195
+ --fibery-color-opacityEntityBoxDisabled: 0.65;
196
+ --fibery-color-opacityEntityBoxDisabledHover: 0.75;
197
+ --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
198
+ --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
199
+ --fibery-color-entityCardBgColor: rgb(255, 255, 255);
200
+ --fibery-color-entityCardSelectedColor: rgba(247, 247, 247, 0.8);
201
+ --fibery-color-entityCardHoverColor: rgba(247, 247, 247, 0.8);
202
+ --fibery-color-entityCardDoneColor: rgba(237, 237, 237, 0.3);
203
+ --fibery-color-entityCardShadow: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
204
+ --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
205
+ --fibery-color-colorBgSegmentedControl: rgba(232, 232, 232, 0.8);
206
+ --fibery-color-colorBgMenuHeaderAvatar: rgb(255, 255, 255);
207
+ --fibery-color-shadowMenuHeaderAvatar: 0 1px 4px 0 rgba(94, 94, 94, 0.1), 0 0 0 0.5px rgba(232, 232, 232, 0.5);
208
+ --fibery-color-opacityMenuItemDragged: 0.4;
209
+ --fibery-color-colorBgMenuItemSelectedDragged: #cad9f6;
210
+ --fibery-color-colorTextMenuItem: rgba(23, 23, 23, 0.9);
211
+ --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
212
+ --fibery-color-colorBgMenuItemHover: rgb(232, 232, 232);
213
+ --fibery-color-colorBgMenuItemFocus: rgb(227, 227, 227);
214
+ --fibery-color-colorBgMenuItemSelected: rgba(219, 229, 250, 0.8);
215
+ --fibery-color-colorBgMenuItemSelectedHover: rgba(202, 217, 246, 0.7);
216
+ --fibery-color-colorBgPinnedFieldsLabel: rgb(94, 94, 94);
217
+ --fibery-color-colorBgObjectEditorSeparator: rgb(23, 23, 23);
218
+ --fibery-color-colorBgMenuItemSelectedFocused: #cad9f6;
219
+ --fibery-color-colorBgFieldEditorContainer: rgb(247, 247, 247);
220
+ --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(227, 227, 227);
221
+ --fibery-color-allowedDropColor: rgb(237, 237, 237);
222
+ --fibery-color-relationViewBgColor: rgb(247, 247, 247);
223
+ --fibery-color-mySpaceIconColor: rgb(122, 132, 142);
224
+ --fibery-color-mySpaceIconBg: rgba(106, 132, 155, 0.2);
225
+ --fibery-color-privateIconColor: rgb(105, 172, 94);
226
+ --fibery-color-privateIconBg: rgba(105, 172, 94, 0.2);
227
+ --fibery-color-favoritesIconColor: rgb(238, 166, 74);
228
+ --fibery-color-favoritesIconBg: rgba(251, 163, 47, 0.2);
229
+ --fibery-color-swatchDefault: #2978fb;
230
+ --fibery-color-unitBg: rgb(245, 245, 245);
231
+ --fibery-color-unitBgHover: rgb(237, 237, 237);
232
+ --fibery-color-colorBgBadgeNeutral: rgba(232, 232, 232, 0.7);
233
+ --fibery-color-colorBgBadgeAccent: rgba(219, 229, 250, 0.7);
234
+ --fibery-color-colorBgBadgeSuccess: rgb(214, 234, 230);
235
+ --fibery-color-colorBgBadgeWarning: rgb(255, 242, 160);
236
+ --fibery-color-colorBgBadgeError: rgb(253, 220, 219);
237
+ --fibery-color-colorTextBadgeNeutral: rgb(94, 94, 94);
238
+ --fibery-color-colorTextBadgeAccent: #345eb2;
239
+ --fibery-color-colorTextBadgeSuccess: rgb(0, 116, 104);
240
+ --fibery-color-colorTextBadgeWarning: rgb(129, 113, 0);
241
+ --fibery-color-colorTextBadgeError: rgb(175, 36, 56);
242
+ --fibery-color-badgeBgColor: rgba(120, 120, 120, 0.2);
243
+ --fibery-color-tooltipBgColor: rgb(46, 46, 46);
244
+ --fibery-color-todayMarkerColor: rgb(237, 150, 151);
245
+ --fibery-color-viewBgOverlayColor: rgba(199, 199, 199, 0.2);
246
+ --fibery-color-floatEditorMenuBg: rgb(252, 252, 252);
247
+ --fibery-color-floatEditorActiveColor: #345eb2;
248
+ --fibery-color-commentColor: rgba(247, 231, 135, 0.6);
249
+ --fibery-color-cellBackgroundColor: rgb(247, 247, 247);
250
+ --fibery-color-cellBackgroundHoverColor: rgba(227, 227, 227, 0.3);
251
+ --fibery-color-cellBorderColor: rgba(199, 199, 199, 0.5);
252
+ --fibery-color-cellPinnedBorderColor: rgba(199, 199, 199, 0.7);
253
+ --fibery-color-tableRowWarningColor: rgba(247, 231, 135, 0.6);
254
+ --fibery-color-errorBgColor: rgba(211, 62, 78, 0.2);
255
+ --fibery-color-errorTextColor: rgb(175, 36, 56);
256
+ --fibery-color-errorButtonColor: rgb(211, 62, 78);
257
+ --fibery-color-warningBgColor: rgba(247, 231, 135, 0.6);
258
+ --fibery-color-warningButtonColor: rgb(129, 113, 0);
259
+ --fibery-color-infoBox: rgba(255, 248, 185, 0.5);
260
+ --fibery-color-appCardBgColor: rgb(255, 255, 255);
261
+ --fibery-color-appCardHoverColor: rgba(252, 252, 252, 0.95);
262
+ --fibery-color-modalBg: rgba(94, 94, 94, 0.2);
263
+ --fibery-color-modalContentBg: rgb(255, 255, 255);
264
+ --fibery-color-progressIconBg: rgba(0, 0, 0, 0.14);
265
+ --fibery-color-progressIconFill: rgba(0, 0, 0, 0.57);
266
+ --fibery-color-formBg: rgb(247, 247, 247);
267
+ --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(120, 120, 120, 0.1);
268
+ --fibery-color-formEditorFieldBg: rgb(245, 245, 245);
269
+ --fibery-color-filterGroup1Bg: rgb(247, 247, 247);
270
+ --fibery-color-filterGroup2Bg: rgb(245, 245, 245);
271
+ --fibery-color-filterGroupBorder: rgba(0, 0, 0, 0.05);
272
+ --fibery-color-colorBgNotificationHover: rgb(245, 245, 245);
273
+ --fibery-color-colorBgNotificationSelected: #f1f5fe;
274
+ --fibery-color-colorBgNotificationSelectedHover: #e8effd;
275
+ --fibery-color-disabledInversedTextColor: rgba(0, 0, 0, 0.25);
276
+ --fibery-color-success: rgb(0, 144, 130);
277
+ --fibery-color-danger: rgb(211, 62, 78);
278
+ --fibery-color-active: rgb(211, 62, 78);
279
+ --fibery-color-warning: rgb(246, 217, 0);
280
+ --fibery-color-cardBg: rgb(255, 255, 255);
281
+ --fibery-color-selectedImageBorder: rgba(0, 0, 0, 0.22);
282
+ --fibery-color-transparent: rgba(255, 255, 255, 0);
283
+ --fibery-color-progressBg: rgb(237, 237, 237);
284
+ --fibery-color-progressText: rgb(94, 94, 94);
285
+ --fibery-color-progressFillBg: rgb(94, 94, 94);
286
+ --fibery-color-progressFillText: rgb(255, 255, 255);
287
+ --fibery-color-progressBarFillNeutral: rgba(158, 158, 158, 0.2);
288
+ --fibery-color-progressBarFill: #4978d4;
289
+ --fibery-color-progressBarBg: rgba(73, 120, 212, 0.25);
290
+ --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
291
+ --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
292
+ --fibery-color-richTextTableBorder: rgba(0, 0, 0, 0.09);
293
+ --fibery-color-colorBgDropLine: #96b1e9;
294
+ --fibery-color-viewBg: rgb(252, 252, 252);
295
+ --fibery-color-viewSecondaryBg: rgb(247, 247, 247);
296
+ --fibery-color-viewHighlightBg: #f1f5fe;
297
+ --fibery-color-boardBg: rgb(252, 252, 252);
298
+ --fibery-color-boardBgWithOpacity80: rgba(252, 252, 252, 0.8);
299
+ --fibery-color-boardAxisBgHover: rgb(237, 237, 237);
300
+ --fibery-color-gridHeaderBgColor: rgb(247, 247, 247);
301
+ --fibery-color-gridHeaderHoverBgColor: rgb(245, 245, 245);
302
+ --fibery-color-gridHeaderTextColor: rgb(120, 120, 120);
303
+ --fibery-color-gridCellBgColor: rgb(255, 255, 255);
304
+ --fibery-color-gridCellBorderColor: rgb(232, 232, 232);
305
+ --fibery-color-gridDisabledCellBgColor: rgb(247, 247, 247);
306
+ --fibery-color-gridSelectedCellBgColor: #f1f5fe;
307
+ --fibery-color-gridHighlightedCellBgColor: #e8effd;
308
+ --fibery-color-gridSelectedCellBorderColor: #cad9f6;
309
+ --fibery-color-gridSelectedPinnedCellBorderColor: #b2c7f0;
310
+ --fibery-color-gridDisabledSelectedCellBgColor: #e8effd;
311
+ --fibery-color-gridActiveCellBorderColor: #96b1e9;
312
+ --fibery-color-timelineEntityHandleColor: #b2c7f0;
313
+ --fibery-color-timelineDependencyHoverBgColor: #96b1e9;
314
+ --fibery-color-timelineDependencyOverlapBgColor: rgb(211, 62, 78);
315
+ --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(175, 36, 56);
316
+ --fibery-color-timelineCellBgColor: rgb(252, 252, 252);
317
+ --fibery-color-timelineCellWeekendBgColor: rgb(247, 247, 247);
318
+ --fibery-color-timelineCellTodayBgColor: #e8effd;
319
+ --fibery-color-timelineCreateEntityPlaceholderBgColor: rgba(94, 94, 94, 0.2);
320
+ --fibery-color-colorBgButtonSolidAccentDefault: #4978d4;
321
+ --fibery-color-colorBgButtonSolidAccentHover: #345eb2;
322
+ --fibery-color-colorBgButtonSolidNeutralDefault: rgb(23, 23, 23);
323
+ --fibery-color-colorBgButtonSolidNeutralHover: rgba(23, 23, 23, 0.85);
324
+ --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(211, 62, 78);
325
+ --fibery-color-colorBgButtonSolidDestructiveHover: rgb(175, 36, 56);
326
+ --fibery-color-colorTextButtonSolidAccent: rgb(255, 255, 255);
327
+ --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 255, 255, 0.8);
328
+ --fibery-color-colorTextButtonSolidNeutral: rgb(255, 255, 255);
329
+ --fibery-color-colorTextButtonSolidNeutralActive: rgb(255, 255, 255);
330
+ --fibery-color-colorTextButtonSolidDestructive: rgb(255, 255, 255);
331
+ --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 255, 255, 0.8);
332
+ --fibery-color-colorIconButtonSolidAccent: rgb(255, 255, 255);
333
+ --fibery-color-colorIconButtonSolidNeutral: rgb(255, 255, 255);
334
+ --fibery-color-colorIconButtonSolidDestructive: rgb(255, 255, 255);
335
+ --fibery-color-colorBorderButtonOutlineAccentDefault: #96b1e9;
336
+ --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(199, 199, 199);
337
+ --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(244, 179, 179);
338
+ --fibery-color-colorBgButtonOutlineAccentDefault: rgb(255, 255, 255);
339
+ --fibery-color-colorBgButtonOutlineAccentHover: #f1f5fe;
340
+ --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(255, 255, 255);
341
+ --fibery-color-colorBgButtonOutlineNeutralHover: rgb(237, 237, 237);
342
+ --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(255, 255, 255);
343
+ --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(255, 232, 232);
344
+ --fibery-color-colorTextButtonOutlineAccent: #345eb2;
345
+ --fibery-color-colorTextButtonOutlineAccentActive: rgba(52, 94, 178, 0.8);
346
+ --fibery-color-colorTextButtonOutlineNeutral: rgb(94, 94, 94);
347
+ --fibery-color-colorTextButtonOutlineNeutralActive: rgba(23, 23, 23, 0.8);
348
+ --fibery-color-colorTextButtonOutlineDestructive: rgb(175, 36, 56);
349
+ --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(175, 36, 56, 0.8);
350
+ --fibery-color-colorIconButtonOutlineAccent: #345eb2;
351
+ --fibery-color-colorIconButtonOutlineNeutral: rgb(94, 94, 94);
352
+ --fibery-color-colorIconButtonOutlineDestructive: rgb(175, 36, 56);
353
+ --fibery-color-colorBgButtonSoftAccentDefault: #f1f5fe;
354
+ --fibery-color-colorBgButtonSoftAccentHover: #dbe5fa;
355
+ --fibery-color-colorBgButtonSoftNeutralDefault: rgb(245, 245, 245);
356
+ --fibery-color-colorBgButtonSoftNeutralHover: rgb(219, 219, 219);
357
+ --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(255, 232, 232);
358
+ --fibery-color-colorBgButtonSoftDestructiveHover: rgb(250, 203, 203);
359
+ --fibery-color-colorTextButtonSoftAccent: #345eb2;
360
+ --fibery-color-colorTextButtonSoftAccentActive: rgba(52, 94, 178, 0.8);
361
+ --fibery-color-colorTextButtonSoftNeutral: rgb(94, 94, 94);
362
+ --fibery-color-colorTextButtonSoftNeutralActive: rgba(94, 94, 94, 0.8);
363
+ --fibery-color-colorTextButtonSoftDestructive: rgb(175, 36, 56);
364
+ --fibery-color-colorTextButtonSoftDestructiveActive: rgba(175, 36, 56, 0.8);
365
+ --fibery-color-colorIconButtonSoftAccent: #345eb2;
366
+ --fibery-color-colorIconButtonSoftNeutral: rgb(94, 94, 94);
367
+ --fibery-color-colorIconButtonSoftDestructive: rgb(175, 36, 56);
368
+ --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
369
+ --fibery-color-colorBgButtonGhostAccentHover: rgba(232, 239, 253, 0.8);
370
+ --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
371
+ --fibery-color-colorBgButtonGhostNeutralHover: rgba(219, 219, 219, 0.5);
372
+ --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
373
+ --fibery-color-colorBgButtonGhostDestructiveHover: rgb(255, 232, 232);
374
+ --fibery-color-colorTextButtonGhostAccent: #345eb2;
375
+ --fibery-color-colorTextButtonGhostAccentActive: rgba(52, 94, 178, 0.8);
376
+ --fibery-color-colorTextButtonGhostNeutral: rgb(94, 94, 94);
377
+ --fibery-color-colorTextButtonGhostNeutralActive: rgba(94, 94, 94, 0.8);
378
+ --fibery-color-colorTextButtonGhostDestructive: rgb(175, 36, 56);
379
+ --fibery-color-colorTextButtonGhostDestructiveActive: rgba(175, 36, 56, 0.8);
380
+ --fibery-color-colorIconButtonGhostAccent: #345eb2;
381
+ --fibery-color-colorIconButtonGhostNeutral: rgb(94, 94, 94);
382
+ --fibery-color-colorIconButtonGhostDestructive: rgb(175, 36, 56);
383
+ --fibery-color-colorBorderAccentFocusRing: rgba(73, 120, 212, 0.3);
384
+ --fibery-color-colorBorderNeutralFocusRing: rgba(158, 158, 158, 0.3);
385
+ --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 78, 0.3);
386
+ --fibery-color-colorBgReactionsDefault: rgb(255, 255, 255);
387
+ --fibery-color-colorBgReactionsHover: rgb(245, 245, 245);
388
+ --fibery-color-colorBorderReactionsHover: rgb(199, 199, 199);
389
+ --fibery-color-colorBgReactionsSelectedDefault: #f1f5fe;
390
+ --fibery-color-colorBorderReactionsSelectedDefault: #96b1e9;
391
+ --fibery-color-colorBgReactionsSelectedHover: #fafcff;
392
+ --fibery-color-colorBorderReactionsSelectedHover: #4978d4;
393
+ --fibery-color-colorTextReactionsSelected: #3869cc;
394
+ --fibery-color-colorBgToastDefault: rgb(252, 252, 252);
395
+ --fibery-color-colorBgDbTabHover: rgb(245, 245, 245);
396
+ --fibery-color-colorBgDbTabFocus: rgb(227, 227, 227);
397
+ --fibery-color-colorBgTabHover: rgba(94, 94, 94, 0.1);
398
+ --fibery-color-colorBgMessageContainer: rgb(245, 245, 245);
399
+ --fibery-color-colorBgMessageContainerHover: rgb(237, 237, 237);
400
+ --fibery-color-colorBgEntityAvatarDefault: #fbfcfe;
401
+ --fibery-color-colorBgEntityAvatarHover: #f1f5fe;
402
+ --fibery-color-colorTextEntityAvatarDefault: #96b1e9;
403
+ --fibery-color-colorTextEntityAvatarHover: #4978d4;
404
+ --fibery-color-colorBgMessageHighlighted: rgb(255, 255, 255);
405
+ --fibery-color-colorBgEditorImageZoomed: rgb(245, 245, 245);
406
+ --fibery-color-colorMermaidPrimaryColor: rgb(247, 247, 247);
407
+ --fibery-color-colorMermaidPrimaryBorderColor: rgb(158, 158, 158);
408
+ --fibery-color-colorMermaidLineColor: rgb(120, 120, 120);
409
+ --fibery-color-colorBgWhiteboard: rgb(255, 255, 255);
410
+ --fibery-color-colorGridDotWhiteboard: rgb(227, 227, 227);
411
+ --fibery-color-colorSelectionWhiteboardBorderEnabled: #96b1e9;
412
+ --fibery-color-colorHighlightWhiteboardSelection: #96b1e9;
413
+ --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(158, 158, 158, 0.5);
414
+ --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(158, 158, 158, 0.5);
415
+ --fibery-color-colorPlaceholderWhiteboardDefault: rgba(150, 177, 233, 0.2);
416
+ --fibery-color-colorLinkPointWhiteboardDefault: #96b1e9;
417
+ --fibery-color-colorLinkPointWhiteboardFillDefault: rgb(255, 255, 255);
418
+ --fibery-color-colorMapWhiteboardPreviewDefault: rgba(150, 177, 233, 0.4);
419
+ --fibery-color-colorCardWhiteboardShadowDefault: rgba(94, 94, 94, 0.05);
420
+ --fibery-color-colorCardWhiteboardBgDefault: rgb(255, 255, 255);
421
+ --fibery-color-colorCardWhiteboardBorderDefault: rgba(23, 23, 23, 0.2);
422
+ --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(23, 23, 23, 0.6);
423
+ --fibery-color-colorUnitWhiteboardBgDefault: rgb(245, 245, 245);
424
+ --fibery-color-colorUnitWhiteboardBorderDefault: rgba(23, 23, 23, 0.2);
425
+ --fibery-color-colorSectionWhiteboardBgInactive: rgb(247, 247, 247);
426
+ --fibery-color-colorSectionWhiteboardBorderInactive: rgb(227, 227, 227);
427
+ --fibery-color-colorEmbedWhiteboardEditBorder: rgba(134, 191, 181, 0.9);
428
+ --fibery-color-colorTextWhiteboardDefault: rgb(23, 23, 23);
429
+ --fibery-color-colorTextWhiteboardDisabled: rgb(158, 158, 158);
430
+ --fibery-color-colorTextWhiteboardAccent: rgba(23, 23, 23, 0.6);
431
+ --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 255, 255);
432
+ --fibery-color-instrumentsMenuBg: rgb(255, 255, 255);
433
+ --fibery-color-instrumentsMenuShadow:
434
+ 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);
435
+ --fibery-color-commentBubbleBg: rgb(255, 255, 255);
436
+ --fibery-color-commentsPanelShadow:
437
+ 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);
438
+ --fibery-color-searchFiltersBg: rgb(252, 252, 252);
439
+ --fibery-color-selectedColorBorder: rgba(227, 227, 227, 0.25);
440
+ --fibery-color-colorBgSegmentedControlDefault: rgb(245, 245, 245);
441
+ --fibery-color-colorBgSegmentedControlActive: rgb(252, 252, 252);
442
+ --fibery-color-colorBgSegmentedControlHover: rgb(232, 232, 232);
443
+ --fibery-color-colorBorderSegmentedControlDefault: rgb(227, 227, 227);
444
+ --fibery-color-colorBgBannerNeutral: rgb(245, 245, 245);
445
+ --fibery-color-colorBgBannerPrimary: #f1f5fe;
446
+ --fibery-color-colorBgBannerWarning: rgb(255, 251, 207);
447
+ --fibery-color-colorBgBannerError: rgb(255, 241, 241);
448
+ --fibery-color-colorBgBannerSuccess: rgb(239, 247, 245);
449
+ --fibery-color-colorIconBannerNeutral: rgb(23, 23, 23);
450
+ --fibery-color-colorIconBannerAccent: #345eb2;
451
+ --fibery-color-colorIconBannerWarning: rgb(129, 113, 0);
452
+ --fibery-color-colorIconBannerError: rgb(175, 36, 56);
453
+ --fibery-color-colorIconBannerSuccess: rgb(0, 116, 104);
454
+ --fibery-color-colorTextBannerNeutral: rgb(23, 23, 23);
455
+ --fibery-color-colorTextBannerAccent: #345eb2;
456
+ --fibery-color-colorTextBannerWarning: rgb(129, 113, 0);
457
+ --fibery-color-colorTextBannerError: rgb(175, 36, 56);
458
+ --fibery-color-colorTextBannerSuccess: rgb(0, 116, 104);
459
+ --fibery-color-colorBgChargebeeInfoBox: rgb(245, 245, 245);
460
+ --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 151);
461
+ --fibery-color-colorBgErrorMessage: rgb(237, 150, 151);
462
+ --fibery-color-colorBorderLogoGrid: rgb(237, 237, 237);
463
+ --fibery-color-colorBorderLogoGridSubtle: rgba(237, 237, 237, 0.2);
464
+ --fibery-color-colorBorderLogoGridMedium: rgba(237, 237, 237, 0.4);
465
+ --fibery-color-colorStrokeLogoDashed: rgb(227, 227, 227);
466
+ --fibery-color-colorBgLogoCardTransparent: rgb(255, 255, 255);
467
+ --fibery-color-colorBgLogoCardDark: rgb(199, 199, 199);
468
+ --fibery-color-colorBgLogoCardMedium: rgb(237, 237, 237);
469
+ --fibery-color-colorBgSkeletonFrom: rgba(255, 255, 255, 0.05);
470
+ --fibery-color-colorBgSkeletonTo: rgba(255, 255, 255, 0.1);
471
+ --fibery-color-colorShadowInsetEdge: rgba(255, 255, 255, 0.05);
472
+ --fibery-color-colorShadowBorder: rgba(255, 255, 255, 0.1);
473
+ --fibery-color-colorShadowElevation: rgba(0, 0, 0, 0.1);
474
+ --fibery-color-colorShadowOutline: rgba(0, 0, 0, 0.2);
475
+ --fibery-color-colorPlaceholder: rgba(255, 255, 255, 0.4);
476
+ --fibery-color-colorPlaceholderSubtle: rgba(255, 255, 255, 0.25);
477
+ --fibery-color-colorBgSubtleLight: rgba(255, 255, 255, 0.05);
478
+ --fibery-color-colorStrokeSurface: rgb(255, 255, 255);
479
+ --fibery-color-colorTextMilestone: rgba(0, 0, 0, 0.5);
480
+ --fibery-color-colorSpinnerIcon: rgba(0, 0, 0, 0.9);
481
+ --fibery-color-colorSpinnerBg: rgba(0, 0, 0, 0.1);
482
+ --fibery-color-colorBgLaneSubtle: rgba(0, 0, 0, 0.05);
483
+ --fibery-color-opacity15: 0.15;
484
+ --fibery-color-opacity20: 0.2;
485
+ --fibery-color-opacity25: 0.25;
486
+ --fibery-color-opacity30: 0.3;
487
+ --fibery-color-opacity40: 0.4;
488
+ --fibery-color-opacity50: 0.5;
489
+ --fibery-color-opacity60: 0.6;
490
+ --fibery-color-opacity65: 0.65;
491
+ --fibery-color-opacity70: 0.7;
492
+ --fibery-color-opacity75: 0.75;
493
+ --fibery-color-opacity80: 0.8;
494
+ --fibery-color-opacity85: 0.85;
495
+ --fibery-color-opacity90: 0.9;
496
+ --fibery-color-whiteA10: rgba(255, 255, 255, 0.1);
497
+ --fibery-color-whiteA40: rgba(255, 255, 255, 0.4);
498
+ --fibery-color-whiteA100: rgb(255, 255, 255);
499
+ --fibery-color-colorBgFileOverlay: rgba(0, 0, 0, 0.6);
500
+ --fibery-color-colorBgScrollFade: rgba(255, 255, 255, 0.15);
501
+ --fibery-color-colorStrokeSelectedOutline: rgba(0, 0, 0, 0.75);
502
+ --fibery-color-scrollbar: rgba(158, 158, 158, 0.5);
503
+ }
504
+ :root.dark-theme {
505
+ --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(255, 255, 255, 0.03);
506
+ --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(255, 255, 255, 0.09);
507
+ --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(255, 255, 255, 0.09);
508
+ --fibery-color-shadow50: 0 0 0 1px rgba(237, 237, 237, 0.1);
509
+ --fibery-color-shadow100: 0 1px 4px 0 rgba(23, 23, 23, 0.1);
510
+ --fibery-color-shadow200: 0 2px 6px 0 rgba(23, 23, 23, 0.1);
511
+ --fibery-color-shadow300: 0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15);
512
+ --fibery-color-shadow400: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15);
513
+ --fibery-color-shadow500: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15);
514
+ --fibery-color-shadow600: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2);
515
+ --fibery-color-actionMenuShadow:
516
+ 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);
517
+ --fibery-color-shadowPopup:
518
+ 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);
519
+ --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(23, 23, 23, 0.8);
520
+ --fibery-color-highlightBgYellow: rgb(81, 63, 19);
521
+ --fibery-color-highlightFgYellow: rgb(223, 182, 90);
522
+ --fibery-color-highlightFgOnBgYellow: rgb(239, 197, 106);
523
+ --fibery-color-highlightBgGreen: rgb(49, 71, 35);
524
+ --fibery-color-highlightFgGreen: rgb(152, 201, 121);
525
+ --fibery-color-highlightFgOnBgGreen: rgb(168, 217, 136);
526
+ --fibery-color-highlightBgAquamarine: rgb(23, 73, 53);
527
+ --fibery-color-highlightFgAquamarine: rgb(100, 206, 160);
528
+ --fibery-color-highlightFgOnBgAquamarine: rgb(117, 223, 176);
529
+ --fibery-color-highlightBgAqua: rgb(0, 73, 67);
530
+ --fibery-color-highlightFgAqua: rgb(66, 207, 192);
531
+ --fibery-color-highlightFgOnBgAqua: rgb(87, 224, 209);
532
+ --fibery-color-highlightBgBlue: rgb(40, 67, 99);
533
+ --fibery-color-highlightFgBlue: rgb(138, 191, 255);
534
+ --fibery-color-highlightFgOnBgBlue: rgb(167, 207, 255);
535
+ --fibery-color-highlightBgPurple: rgb(78, 57, 93);
536
+ --fibery-color-highlightFgPurple: rgb(215, 170, 250);
537
+ --fibery-color-highlightFgOnBgPurple: rgb(226, 189, 255);
538
+ --fibery-color-highlightBgPink: rgb(92, 53, 75);
539
+ --fibery-color-highlightFgPink: rgb(248, 160, 210);
540
+ --fibery-color-highlightFgOnBgPink: rgb(255, 182, 222);
541
+ --fibery-color-highlightBgRed: rgb(97, 52, 49);
542
+ --fibery-color-highlightFgRed: rgb(255, 163, 155);
543
+ --fibery-color-highlightFgOnBgRed: rgb(255, 186, 180);
544
+ --fibery-color-highlightBgGrey: rgb(66, 66, 66);
545
+ --fibery-color-highlightFgGrey: rgb(187, 187, 187);
546
+ --fibery-color-highlightFgOnBgGrey: rgb(203, 203, 203);
547
+ --fibery-color-colorPickerCssFilter: none;
548
+ --fibery-color-mode: dark;
549
+ --fibery-color-colorAccentBgSubtle: rgba(73, 120, 212, 0.1);
550
+ --fibery-color-colorAccentBgMild: rgba(73, 120, 212, 0.15);
551
+ --fibery-color-colorAccentBgMedium: rgba(73, 120, 212, 0.2);
552
+ --fibery-color-colorAccentBgStrong: rgba(73, 120, 212, 0.3);
553
+ --fibery-color-colorAccentBgBold: rgba(73, 120, 212, 0.35);
554
+ --fibery-color-colorAccentBgVivid: rgba(73, 120, 212, 0.6);
555
+ --fibery-color-colorAccentStroke: rgba(73, 120, 212, 0.25);
556
+ --fibery-color-colorAccentStrokeHover: rgba(73, 120, 212, 0.4);
557
+ --fibery-color-colorAccentStrokeFocus: rgba(73, 120, 212, 0.5);
558
+ --fibery-color-colorAccentSolid: rgba(73, 120, 212, 0.8);
559
+ --fibery-color-colorAccent: #4b74d2;
560
+ --fibery-color-darkenPrimary: rgb(62, 96, 161);
561
+ --fibery-color-whiteColor: rgb(255, 255, 255);
562
+ --fibery-color-blackColor: rgb(0, 0, 0);
563
+ --fibery-color-mainBg: #0d0d0d;
564
+ --fibery-color-panelBg: rgb(23, 23, 23);
565
+ --fibery-color-panelContentBg: rgb(23, 23, 23);
566
+ --fibery-color-colorBgRelationContainer: rgb(23, 23, 23);
567
+ --fibery-color-colorAI: #8349b6;
568
+ --fibery-color-colorBgAI: rgba(131, 73, 182, 0.1);
569
+ --fibery-color-colorBgAIFloatingLauncher: rgb(41, 41, 41);
570
+ --fibery-color-colorBgAIFloatingPanelContent: rgb(36, 36, 36);
571
+ --fibery-color-colorBgAISidebarContent: rgb(23, 23, 23);
572
+ --fibery-color-pageContentBg: rgb(28, 28, 28);
573
+ --fibery-color-colorBgPopup: rgb(41, 41, 41);
574
+ --fibery-color-menuBg: #0d0d0d;
575
+ --fibery-color-menuTextColor: rgb(237, 237, 237);
576
+ --fibery-color-menuItemHoverColor: rgb(51, 51, 51);
577
+ --fibery-color-menuSelectedTextColor: rgb(247, 247, 247);
578
+ --fibery-color-menuIconColor: rgba(237, 237, 237, 0.7);
579
+ --fibery-color-textColor: rgb(237, 237, 237);
580
+ --fibery-color-textSelectionColor: rgba(75, 116, 210, 0.4);
581
+ --fibery-color-accentTextColor: rgb(127, 127, 127);
582
+ --fibery-color-disabledTextColor: rgb(112, 112, 112);
583
+ --fibery-color-inversedTextColor: rgb(51, 51, 51);
584
+ --fibery-color-colorTextSecondary: rgba(237, 237, 237, 0.65);
585
+ --fibery-color-linkColor: #97b1ed;
586
+ --fibery-color-linkBorder: 0.5px solid rgba(151, 177, 237, 0.4);
587
+ --fibery-color-linkHoverColor: #97b1ed;
588
+ --fibery-color-linkBorderHover: 0.5px solid rgba(151, 177, 237, 0.75);
589
+ --fibery-color-codeColor: rgb(237, 150, 151);
590
+ --fibery-color-codeBgColor: rgb(41, 41, 41);
591
+ --fibery-color-codeBlockBgColor: rgb(41, 41, 41);
592
+ --fibery-color-addedDiffTextColor: rgb(127, 192, 182);
593
+ --fibery-color-removedDiffTextColor: rgb(244, 146, 148);
594
+ --fibery-color-entityNodeColor: rgb(199, 199, 199);
595
+ --fibery-color-entityNodeBorder: 0.5px solid rgba(199, 199, 199, 0.4);
596
+ --fibery-color-entityNodeHoverColor: rgb(219, 219, 219);
597
+ --fibery-color-entityNodeBorderHover: 0.5px solid rgba(219, 219, 219, 0.8);
598
+ --fibery-color-entityNodeBgColor: rgb(36, 36, 36);
599
+ --fibery-color-shortcutTextColor: rgb(161, 161, 161);
600
+ --fibery-color-shortcutBorder: 1px solid rgba(127, 127, 127, 0.2);
601
+ --fibery-color-shortcutBorderColor: rgba(127, 127, 127, 0.2);
602
+ --fibery-color-inputBgColor: rgb(28, 28, 28);
603
+ --fibery-color-inputDisabledBgColor: rgba(51, 51, 51, 0.3);
604
+ --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(82, 82, 82, 0.2);
605
+ --fibery-color-inputCopyBgColor: rgb(41, 41, 41);
606
+ --fibery-color-inputBorderColor: 0 0 0 1px rgba(82, 82, 82, 0.7);
607
+ --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(82, 82, 82);
608
+ --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(112, 112, 112);
609
+ --fibery-color-inputBorderBlendMode: lighten;
610
+ --fibery-color-inputPlaceholderTextColor: rgb(112, 112, 112);
611
+ --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(244, 179, 179);
612
+ --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(244, 179, 179, 0.4);
613
+ --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(244, 179, 179, 0.25);
614
+ --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(244, 179, 179, 0.25);
615
+ --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(109, 95, 0);
616
+ --fibery-color-buttonPrimaryColor: #4b74d2;
617
+ --fibery-color-buttonColor: rgb(127, 127, 127);
618
+ --fibery-color-buttonPrimaryTextColor: rgb(227, 227, 227);
619
+ --fibery-color-checkboxColor: rgba(237, 237, 237, 0.7);
620
+ --fibery-color-colorBorderBlockQuote: rgb(161, 161, 161);
621
+ --fibery-color-colorBgActionsMenu: rgb(36, 36, 36);
622
+ --fibery-color-colorBgActionsMenuItemHover: rgb(46, 46, 46);
623
+ --fibery-color-colorBgActionsMenuItemSelected: rgba(28, 43, 79, 0.8);
624
+ --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(41, 59, 102, 0.8);
625
+ --fibery-color-colorBgActionsMenuItemDangerHover: rgba(225, 78, 91, 0.1);
626
+ --fibery-color-colorBgActionsMenuItemDangerActive: rgba(225, 78, 91, 0.8);
627
+ --fibery-color-actionMenuBg: rgb(36, 36, 36);
628
+ --fibery-color-actionMenuInnerBg: rgb(41, 41, 41);
629
+ --fibery-color-actionMenuHover: rgb(46, 46, 46);
630
+ --fibery-color-actionMenuInnerHover: rgba(51, 51, 51, 0.5);
631
+ --fibery-color-actionMenuButtonColor: rgb(28, 28, 28);
632
+ --fibery-color-actionMenuButtonHoverColor: rgb(36, 36, 36);
633
+ --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
634
+ --fibery-color-actionMenuSeparatorColor: rgba(255, 255, 255, 0.15);
635
+ --fibery-color-separatorColor: rgba(255, 255, 255, 0.1);
636
+ --fibery-color-separatorColorDimmed: rgba(255, 255, 255, 0.05);
637
+ --fibery-color-separatorBreadcrumbsColor: rgb(82, 82, 82);
638
+ --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(255, 255, 255, 0.05);
639
+ --fibery-color-borderSeparator: 0.5px solid rgba(255, 255, 255, 0.1);
640
+ --fibery-color-borderSeparatorMedium: 0.5px solid rgba(255, 255, 255, 0.15);
641
+ --fibery-color-borderSeparatorStrong: 0.5px solid rgba(255, 255, 255, 0.25);
642
+ --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
643
+ --fibery-color-borderSolidSeparator: 1px solid rgba(255, 255, 255, 0.1);
644
+ --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(255, 255, 255, 0.05);
645
+ --fibery-color-borderSolidFilterGroup: 1px solid rgba(255, 255, 255, 0.03);
646
+ --fibery-color-borderSolidGrid: 1px solid rgb(51, 51, 51);
647
+ --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(61, 61, 61);
648
+ --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
649
+ --fibery-color-borderSolidCommentBubble: 1px solid rgb(51, 51, 51);
650
+ --fibery-color-borderBlockQuote: 3px solid rgb(161, 161, 161);
651
+ --fibery-color-shadowCardDefault: 0 0 0 1px rgba(82, 82, 82, 0.7), 0 1px 4px 0 rgba(23, 23, 23, 0.1);
652
+ --fibery-color-shadowCardHover: 0 0 0 1px rgba(82, 82, 82, 0.7), 0 2px 6px 0 rgba(23, 23, 23, 0.1);
653
+ --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(82, 82, 82, 0.7);
654
+ --fibery-color-iconColor: rgba(237, 237, 237, 0.7);
655
+ --fibery-color-appIconColor: rgba(247, 247, 247, 0.7);
656
+ --fibery-color-appIconBgColor: rgba(247, 247, 247, 0.5);
657
+ --fibery-color-mentionBgColor: rgba(61, 61, 61, 0.4);
658
+ --fibery-color-colorBgSelectMenu: rgb(36, 36, 36);
659
+ --fibery-color-shadowSelectMenu:
660
+ 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);
661
+ --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
662
+ --fibery-color-colorBgListItemGeneralHover: rgb(41, 41, 41);
663
+ --fibery-color-colorBgListItemGeneralFocus: rgb(51, 51, 51);
664
+ --fibery-color-colorBgListItemGeneralSelected: #1c2b4f;
665
+ --fibery-color-colorBgListItemGeneralSelectedHover: #293b66;
666
+ --fibery-color-colorBgListItemGeneralSelectedFocus: #293b66;
667
+ --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
668
+ --fibery-color-colorTextListItemGeneralDisabled: rgb(112, 112, 112);
669
+ --fibery-color-colorBgListItemGeneralSelectedDisabled: #223259;
670
+ --fibery-color-opacityListItemGeneralDisabled: 0.4;
671
+ --fibery-color-colorSearchSubtitle: rgb(112, 112, 112);
672
+ --fibery-color-colorBgSearchRowHover: rgb(46, 46, 46);
673
+ --fibery-color-colorBgSearchRowCreateHover: #1c2b4f;
674
+ --fibery-color-opacitySearchItemDone: 0.4;
675
+ --fibery-color-colorBgEntityBoxDefault: rgb(36, 36, 36);
676
+ --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(46, 46, 46);
677
+ --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
678
+ --fibery-color-colorBgEntityBoxDefaultHover: rgb(41, 41, 41);
679
+ --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(23, 23, 23, 0.1);
680
+ --fibery-color-colorBgEntityBoxDefaultFocus: rgb(36, 36, 36);
681
+ --fibery-color-colorOverlayEntityBoxDefaultFocus: #4b74d2;
682
+ --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(75, 116, 210, 0.4);
683
+ --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(41, 41, 41);
684
+ --fibery-color-colorOverlayEntityBoxDefaultFocusHover: #4b74d2;
685
+ --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(75, 116, 210, 0.6);
686
+ --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
687
+ --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(23, 23, 23, 0.1);
688
+ --fibery-color-colorBgEntityBoxSelected: #1a2642;
689
+ --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
690
+ --fibery-color-colorBgEntityBoxSelectedHover: #1a2642;
691
+ --fibery-color-shadowStrokeEntityBoxSelectedHover: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
692
+ --fibery-color-colorBgEntityBoxSelectedDrag: #1a2642;
693
+ --fibery-color-shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
694
+ --fibery-color-opacityEntityBoxDisabled: 0.65;
695
+ --fibery-color-opacityEntityBoxDisabledHover: 0.75;
696
+ --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
697
+ --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
698
+ --fibery-color-entityCardBgColor: rgb(46, 46, 46);
699
+ --fibery-color-entityCardSelectedColor: rgba(51, 51, 51, 0.5);
700
+ --fibery-color-entityCardHoverColor: rgba(51, 51, 51, 0.5);
701
+ --fibery-color-entityCardDoneColor: rgba(46, 46, 46, 0.3);
702
+ --fibery-color-entityCardShadow: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
703
+ --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
704
+ --fibery-color-colorBgSegmentedControl: rgba(36, 36, 36, 0.8);
705
+ --fibery-color-colorBgMenuHeaderAvatar: rgb(28, 28, 28);
706
+ --fibery-color-shadowMenuHeaderAvatar: 0 0 0 1px rgba(112, 112, 112, 0.2);
707
+ --fibery-color-opacityMenuItemDragged: 0.4;
708
+ --fibery-color-colorBgMenuItemSelectedDragged: #293b66;
709
+ --fibery-color-colorTextMenuItem: rgba(237, 237, 237, 0.9);
710
+ --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
711
+ --fibery-color-colorBgMenuItemHover: rgb(28, 28, 28);
712
+ --fibery-color-colorBgMenuItemFocus: rgb(46, 46, 46);
713
+ --fibery-color-colorBgMenuItemSelected: #1a2642;
714
+ --fibery-color-colorBgMenuItemSelectedHover: #223259;
715
+ --fibery-color-colorBgPinnedFieldsLabel: rgb(161, 161, 161);
716
+ --fibery-color-colorBgObjectEditorSeparator: rgb(237, 237, 237);
717
+ --fibery-color-colorBgMenuItemSelectedFocused: #223259;
718
+ --fibery-color-colorBgFieldEditorContainer: rgb(36, 36, 36);
719
+ --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(28, 28, 28);
720
+ --fibery-color-allowedDropColor: rgb(41, 41, 41);
721
+ --fibery-color-relationViewBgColor: rgb(36, 36, 36);
722
+ --fibery-color-mySpaceIconColor: rgb(122, 132, 142);
723
+ --fibery-color-mySpaceIconBg: rgba(106, 132, 155, 0.2);
724
+ --fibery-color-privateIconColor: rgb(105, 172, 94);
725
+ --fibery-color-privateIconBg: rgba(105, 172, 94, 0.2);
726
+ --fibery-color-favoritesIconColor: rgb(238, 166, 74);
727
+ --fibery-color-favoritesIconBg: rgba(251, 163, 47, 0.2);
728
+ --fibery-color-swatchDefault: #2978fb;
729
+ --fibery-color-unitBg: rgb(51, 51, 51);
730
+ --fibery-color-unitBgHover: rgb(61, 61, 61);
731
+ --fibery-color-colorBgBadgeNeutral: rgba(41, 41, 41, 0.8);
732
+ --fibery-color-colorBgBadgeAccent: rgba(28, 43, 79, 0.8);
733
+ --fibery-color-colorBgBadgeSuccess: rgb(7, 61, 55);
734
+ --fibery-color-colorBgBadgeWarning: rgb(58, 50, 0);
735
+ --fibery-color-colorBgBadgeError: rgb(91, 26, 32);
736
+ --fibery-color-colorTextBadgeNeutral: rgb(161, 161, 161);
737
+ --fibery-color-colorTextBadgeAccent: #97b1ed;
738
+ --fibery-color-colorTextBadgeSuccess: rgb(127, 192, 182);
739
+ --fibery-color-colorTextBadgeWarning: rgb(225, 199, 0);
740
+ --fibery-color-colorTextBadgeError: rgb(244, 146, 148);
741
+ --fibery-color-badgeBgColor: rgba(120, 120, 120, 0.2);
742
+ --fibery-color-tooltipBgColor: rgb(51, 51, 51);
743
+ --fibery-color-todayMarkerColor: rgb(104, 33, 39);
744
+ --fibery-color-viewBgOverlayColor: rgba(23, 23, 23, 0.6);
745
+ --fibery-color-floatEditorMenuBg: rgb(51, 51, 51);
746
+ --fibery-color-floatEditorActiveColor: #97b1ed;
747
+ --fibery-color-commentColor: rgba(246, 217, 1, 0.4);
748
+ --fibery-color-cellBackgroundColor: rgb(28, 28, 28);
749
+ --fibery-color-cellBackgroundHoverColor: rgba(51, 51, 51, 0.3);
750
+ --fibery-color-cellBorderColor: rgba(112, 112, 112, 0.5);
751
+ --fibery-color-cellPinnedBorderColor: rgba(112, 112, 112, 0.7);
752
+ --fibery-color-tableRowWarningColor: rgba(246, 217, 1, 0.4);
753
+ --fibery-color-errorBgColor: rgba(213, 50, 72, 0.6);
754
+ --fibery-color-errorTextColor: rgb(244, 179, 179);
755
+ --fibery-color-errorButtonColor: rgb(225, 78, 91);
756
+ --fibery-color-warningBgColor: rgba(109, 95, 0, 0.6);
757
+ --fibery-color-warningButtonColor: rgb(225, 199, 0);
758
+ --fibery-color-infoBox: rgba(246, 217, 1, 0.2);
759
+ --fibery-color-appCardBgColor: rgb(28, 28, 28);
760
+ --fibery-color-appCardHoverColor: rgb(28, 28, 28);
761
+ --fibery-color-modalBg: rgba(28, 28, 28, 0.5);
762
+ --fibery-color-modalContentBg: rgb(36, 36, 36);
763
+ --fibery-color-progressIconBg: rgba(255, 255, 255, 0.18);
764
+ --fibery-color-progressIconFill: rgba(255, 255, 255, 0.59);
765
+ --fibery-color-formBg: rgb(28, 28, 28);
766
+ --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(23, 23, 23, 0.4);
767
+ --fibery-color-formEditorFieldBg: rgb(41, 41, 41);
768
+ --fibery-color-filterGroup1Bg: rgb(51, 51, 51);
769
+ --fibery-color-filterGroup2Bg: rgb(61, 61, 61);
770
+ --fibery-color-filterGroupBorder: rgba(255, 255, 255, 0.03);
771
+ --fibery-color-colorBgNotificationHover: rgb(41, 41, 41);
772
+ --fibery-color-colorBgNotificationSelected: #1c2b4f;
773
+ --fibery-color-colorBgNotificationSelectedHover: #293b66;
774
+ --fibery-color-disabledInversedTextColor: rgba(255, 255, 255, 0.25);
775
+ --fibery-color-success: rgb(0, 142, 128);
776
+ --fibery-color-danger: rgb(225, 78, 91);
777
+ --fibery-color-active: rgb(225, 78, 91);
778
+ --fibery-color-warning: rgb(109, 95, 0);
779
+ --fibery-color-cardBg: rgb(51, 51, 51);
780
+ --fibery-color-selectedImageBorder: rgba(255, 255, 255, 0.59);
781
+ --fibery-color-transparent: rgba(255, 255, 255, 0);
782
+ --fibery-color-progressBg: rgb(237, 237, 237);
783
+ --fibery-color-progressText: rgb(94, 94, 94);
784
+ --fibery-color-progressFillBg: rgb(94, 94, 94);
785
+ --fibery-color-progressFillText: rgb(255, 255, 255);
786
+ --fibery-color-progressBarFillNeutral: rgba(112, 112, 112, 0.2);
787
+ --fibery-color-progressBarFill: #5f85dd;
788
+ --fibery-color-progressBarBg: rgba(95, 133, 221, 0.25);
789
+ --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
790
+ --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
791
+ --fibery-color-richTextTableBorder: rgba(255, 255, 255, 0.18);
792
+ --fibery-color-colorBgDropLine: #3258ae;
793
+ --fibery-color-viewBg: rgb(23, 23, 23);
794
+ --fibery-color-viewSecondaryBg: rgb(28, 28, 28);
795
+ --fibery-color-viewHighlightBg: #1a2642;
796
+ --fibery-color-boardBg: rgb(23, 23, 23);
797
+ --fibery-color-boardBgWithOpacity80: rgba(23, 23, 23, 0.8);
798
+ --fibery-color-boardAxisBgHover: rgb(41, 41, 41);
799
+ --fibery-color-gridHeaderBgColor: rgb(36, 36, 36);
800
+ --fibery-color-gridHeaderHoverBgColor: rgb(41, 41, 41);
801
+ --fibery-color-gridHeaderTextColor: rgb(161, 161, 161);
802
+ --fibery-color-gridCellBgColor: rgb(28, 28, 28);
803
+ --fibery-color-gridCellBorderColor: rgb(51, 51, 51);
804
+ --fibery-color-gridDisabledCellBgColor: rgb(36, 36, 36);
805
+ --fibery-color-gridSelectedCellBgColor: #1a2642;
806
+ --fibery-color-gridHighlightedCellBgColor: #223259;
807
+ --fibery-color-gridSelectedCellBorderColor: #2d4786;
808
+ --fibery-color-gridSelectedPinnedCellBorderColor: #2d4786;
809
+ --fibery-color-gridDisabledSelectedCellBgColor: #223259;
810
+ --fibery-color-gridActiveCellBorderColor: #4b74d2;
811
+ --fibery-color-timelineEntityHandleColor: #2d4786;
812
+ --fibery-color-timelineDependencyHoverBgColor: #3258ae;
813
+ --fibery-color-timelineDependencyOverlapBgColor: rgb(213, 50, 72);
814
+ --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(244, 146, 148);
815
+ --fibery-color-timelineCellBgColor: rgb(23, 23, 23);
816
+ --fibery-color-timelineCellWeekendBgColor: rgb(28, 28, 28);
817
+ --fibery-color-timelineCellTodayBgColor: #151c2d;
818
+ --fibery-color-timelineCreateEntityPlaceholderBgColor: rgb(61, 61, 61);
819
+ --fibery-color-colorBgButtonSolidAccentDefault: #4b74d2;
820
+ --fibery-color-colorBgButtonSolidAccentHover: #5f85dd;
821
+ --fibery-color-colorBgButtonSolidNeutralDefault: rgb(237, 237, 237);
822
+ --fibery-color-colorBgButtonSolidNeutralHover: rgb(255, 255, 255);
823
+ --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(213, 50, 72);
824
+ --fibery-color-colorBgButtonSolidDestructiveHover: rgb(225, 78, 91);
825
+ --fibery-color-colorTextButtonSolidAccent: rgb(255, 255, 255);
826
+ --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 255, 255, 0.8);
827
+ --fibery-color-colorTextButtonSolidNeutral: rgb(28, 28, 28);
828
+ --fibery-color-colorTextButtonSolidNeutralActive: rgba(28, 28, 28, 0.8);
829
+ --fibery-color-colorTextButtonSolidDestructive: rgb(255, 255, 255);
830
+ --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 255, 255, 0.8);
831
+ --fibery-color-colorIconButtonSolidAccent: rgb(255, 255, 255);
832
+ --fibery-color-colorIconButtonSolidNeutral: rgb(82, 82, 82);
833
+ --fibery-color-colorIconButtonSolidDestructive: rgb(255, 255, 255);
834
+ --fibery-color-colorBorderButtonOutlineAccentDefault: #3258ae;
835
+ --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(61, 61, 61);
836
+ --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(135, 27, 42);
837
+ --fibery-color-colorBgButtonOutlineAccentDefault: rgb(23, 23, 23);
838
+ --fibery-color-colorBgButtonOutlineAccentHover: #1a2642;
839
+ --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(23, 23, 23);
840
+ --fibery-color-colorBgButtonOutlineNeutralHover: rgb(41, 41, 41);
841
+ --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(23, 23, 23);
842
+ --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(80, 21, 27);
843
+ --fibery-color-colorTextButtonOutlineAccent: #97b1ed;
844
+ --fibery-color-colorTextButtonOutlineAccentActive: rgba(151, 177, 237, 0.8);
845
+ --fibery-color-colorTextButtonOutlineNeutral: rgb(161, 161, 161);
846
+ --fibery-color-colorTextButtonOutlineNeutralActive: rgba(237, 237, 237, 0.8);
847
+ --fibery-color-colorTextButtonOutlineDestructive: rgb(244, 146, 148);
848
+ --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(244, 146, 148, 0.8);
849
+ --fibery-color-colorIconButtonOutlineAccent: #97b1ed;
850
+ --fibery-color-colorIconButtonOutlineNeutral: rgb(161, 161, 161);
851
+ --fibery-color-colorIconButtonOutlineDestructive: rgb(244, 146, 148);
852
+ --fibery-color-colorBgButtonSoftAccentDefault: #1c2b4f;
853
+ --fibery-color-colorBgButtonSoftAccentHover: #293b66;
854
+ --fibery-color-colorBgButtonSoftNeutralDefault: rgb(36, 36, 36);
855
+ --fibery-color-colorBgButtonSoftNeutralHover: rgb(61, 61, 61);
856
+ --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(80, 21, 27);
857
+ --fibery-color-colorBgButtonSoftDestructiveHover: rgb(104, 33, 39);
858
+ --fibery-color-colorTextButtonSoftAccent: #97b1ed;
859
+ --fibery-color-colorTextButtonSoftAccentActive: rgba(151, 177, 237, 0.8);
860
+ --fibery-color-colorTextButtonSoftNeutral: rgb(161, 161, 161);
861
+ --fibery-color-colorTextButtonSoftNeutralActive: rgba(161, 161, 161, 0.8);
862
+ --fibery-color-colorTextButtonSoftDestructive: rgb(244, 146, 148);
863
+ --fibery-color-colorTextButtonSoftDestructiveActive: rgba(244, 146, 148, 0.8);
864
+ --fibery-color-colorIconButtonSoftAccent: #97b1ed;
865
+ --fibery-color-colorIconButtonSoftNeutral: rgb(161, 161, 161);
866
+ --fibery-color-colorIconButtonSoftDestructive: rgb(244, 146, 148);
867
+ --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
868
+ --fibery-color-colorBgButtonGhostAccentHover: rgba(28, 43, 79, 0.8);
869
+ --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
870
+ --fibery-color-colorBgButtonGhostNeutralHover: rgba(51, 51, 51, 0.8);
871
+ --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
872
+ --fibery-color-colorBgButtonGhostDestructiveHover: rgb(80, 21, 27);
873
+ --fibery-color-colorTextButtonGhostAccent: #97b1ed;
874
+ --fibery-color-colorTextButtonGhostAccentActive: rgba(151, 177, 237, 0.8);
875
+ --fibery-color-colorTextButtonGhostNeutral: rgb(161, 161, 161);
876
+ --fibery-color-colorTextButtonGhostNeutralActive: rgba(161, 161, 161, 0.8);
877
+ --fibery-color-colorTextButtonGhostDestructive: rgb(244, 146, 148);
878
+ --fibery-color-colorTextButtonGhostDestructiveActive: rgba(244, 146, 148, 0.8);
879
+ --fibery-color-colorIconButtonGhostAccent: #97b1ed;
880
+ --fibery-color-colorIconButtonGhostNeutral: rgb(161, 161, 161);
881
+ --fibery-color-colorIconButtonGhostDestructive: rgb(244, 146, 148);
882
+ --fibery-color-colorBorderAccentFocusRing: rgba(73, 120, 212, 0.3);
883
+ --fibery-color-colorBorderNeutralFocusRing: rgba(158, 158, 158, 0.3);
884
+ --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 78, 0.3);
885
+ --fibery-color-colorBgReactionsDefault: rgb(28, 28, 28);
886
+ --fibery-color-colorBgReactionsHover: rgb(51, 51, 51);
887
+ --fibery-color-colorBorderReactionsHover: rgb(112, 112, 112);
888
+ --fibery-color-colorBgReactionsSelectedDefault: #3258ae;
889
+ --fibery-color-colorBorderReactionsSelectedDefault: #3258ae;
890
+ --fibery-color-colorBgReactionsSelectedHover: #3869cc;
891
+ --fibery-color-colorBorderReactionsSelectedHover: #3869cc;
892
+ --fibery-color-colorTextReactionsSelected: rgb(237, 237, 237);
893
+ --fibery-color-colorBgToastDefault: rgb(23, 23, 23);
894
+ --fibery-color-colorBgDbTabHover: rgb(41, 41, 41);
895
+ --fibery-color-colorBgDbTabFocus: rgb(51, 51, 51);
896
+ --fibery-color-colorBgTabHover: rgba(161, 161, 161, 0.1);
897
+ --fibery-color-colorBgMessageContainer: rgb(36, 36, 36);
898
+ --fibery-color-colorBgMessageContainerHover: rgb(41, 41, 41);
899
+ --fibery-color-colorBgEntityAvatarDefault: #131720;
900
+ --fibery-color-colorBgEntityAvatarHover: #1a2642;
901
+ --fibery-color-colorTextEntityAvatarDefault: #3258ae;
902
+ --fibery-color-colorTextEntityAvatarHover: #4b74d2;
903
+ --fibery-color-colorBgMessageHighlighted: rgb(28, 28, 28);
904
+ --fibery-color-colorBgEditorImageZoomed: rgb(51, 51, 51);
905
+ --fibery-color-colorMermaidPrimaryColor: rgb(82, 82, 82);
906
+ --fibery-color-colorMermaidPrimaryBorderColor: rgb(112, 112, 112);
907
+ --fibery-color-colorMermaidLineColor: rgb(112, 112, 112);
908
+ --fibery-color-colorBgWhiteboard: rgb(23, 23, 23);
909
+ --fibery-color-colorGridDotWhiteboard: rgb(51, 51, 51);
910
+ --fibery-color-colorSelectionWhiteboardBorderEnabled: #3258ae;
911
+ --fibery-color-colorHighlightWhiteboardSelection: #3258ae;
912
+ --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(112, 112, 112, 0.5);
913
+ --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(112, 112, 112, 0.5);
914
+ --fibery-color-colorPlaceholderWhiteboardDefault: rgba(50, 88, 174, 0.2);
915
+ --fibery-color-colorLinkPointWhiteboardDefault: #3258ae;
916
+ --fibery-color-colorLinkPointWhiteboardFillDefault: #0d0d0d;
917
+ --fibery-color-colorMapWhiteboardPreviewDefault: rgba(50, 88, 174, 0.4);
918
+ --fibery-color-colorCardWhiteboardShadowDefault: rgba(161, 161, 161, 0.05);
919
+ --fibery-color-colorCardWhiteboardBgDefault: rgb(46, 46, 46);
920
+ --fibery-color-colorCardWhiteboardBorderDefault: rgba(237, 237, 237, 0.2);
921
+ --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(237, 237, 237, 0.6);
922
+ --fibery-color-colorUnitWhiteboardBgDefault: rgb(51, 51, 51);
923
+ --fibery-color-colorUnitWhiteboardBorderDefault: rgba(237, 237, 237, 0.25);
924
+ --fibery-color-colorSectionWhiteboardBgInactive: rgb(28, 28, 28);
925
+ --fibery-color-colorSectionWhiteboardBorderInactive: rgb(51, 51, 51);
926
+ --fibery-color-colorEmbedWhiteboardEditBorder: rgba(0, 112, 99, 0.9);
927
+ --fibery-color-colorTextWhiteboardDefault: rgb(237, 237, 237);
928
+ --fibery-color-colorTextWhiteboardDisabled: rgb(112, 112, 112);
929
+ --fibery-color-colorTextWhiteboardAccent: rgba(23, 23, 23, 0.6);
930
+ --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 255, 255);
931
+ --fibery-color-instrumentsMenuBg: rgb(41, 41, 41);
932
+ --fibery-color-instrumentsMenuShadow:
933
+ 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);
934
+ --fibery-color-commentBubbleBg: rgb(51, 51, 51);
935
+ --fibery-color-commentsPanelShadow:
936
+ 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);
937
+ --fibery-color-searchFiltersBg: rgb(28, 28, 28);
938
+ --fibery-color-selectedColorBorder: rgba(227, 227, 227, 0.25);
939
+ --fibery-color-colorBgSegmentedControlDefault: rgb(23, 23, 23);
940
+ --fibery-color-colorBgSegmentedControlActive: rgb(51, 51, 51);
941
+ --fibery-color-colorBgSegmentedControlHover: rgb(41, 41, 41);
942
+ --fibery-color-colorBorderSegmentedControlDefault: rgb(61, 61, 61);
943
+ --fibery-color-colorBgBannerNeutral: rgb(36, 36, 36);
944
+ --fibery-color-colorBgBannerPrimary: #1a2642;
945
+ --fibery-color-colorBgBannerWarning: rgb(42, 36, 0);
946
+ --fibery-color-colorBgBannerError: rgb(67, 22, 25);
947
+ --fibery-color-colorBgBannerSuccess: rgb(10, 46, 41);
948
+ --fibery-color-colorIconBannerNeutral: rgb(237, 237, 237);
949
+ --fibery-color-colorIconBannerAccent: #97b1ed;
950
+ --fibery-color-colorIconBannerWarning: rgb(225, 199, 0);
951
+ --fibery-color-colorIconBannerError: rgb(244, 146, 148);
952
+ --fibery-color-colorIconBannerSuccess: rgb(127, 192, 182);
953
+ --fibery-color-colorTextBannerNeutral: rgb(237, 237, 237);
954
+ --fibery-color-colorTextBannerAccent: #97b1ed;
955
+ --fibery-color-colorTextBannerWarning: rgb(225, 199, 0);
956
+ --fibery-color-colorTextBannerError: rgb(244, 146, 148);
957
+ --fibery-color-colorTextBannerSuccess: rgb(127, 192, 182);
958
+ --fibery-color-colorBgChargebeeInfoBox: rgb(23, 23, 23);
959
+ --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 151);
960
+ --fibery-color-colorBgErrorMessage: rgb(237, 150, 151);
961
+ --fibery-color-colorBorderLogoGrid: rgb(41, 41, 41);
962
+ --fibery-color-colorBorderLogoGridSubtle: rgb(41, 41, 41);
963
+ --fibery-color-colorBorderLogoGridMedium: rgb(41, 41, 41);
964
+ --fibery-color-colorStrokeLogoDashed: rgb(82, 82, 82);
965
+ --fibery-color-colorBgLogoCardTransparent: rgb(28, 28, 28);
966
+ --fibery-color-colorBgLogoCardDark: rgb(82, 82, 82);
967
+ --fibery-color-colorBgLogoCardMedium: rgb(41, 41, 41);
968
+ --fibery-color-colorBgSkeletonFrom: rgba(0, 0, 0, 0.05);
969
+ --fibery-color-colorBgSkeletonTo: rgba(0, 0, 0, 0.1);
970
+ --fibery-color-colorShadowInsetEdge: rgba(0, 0, 0, 0.05);
971
+ --fibery-color-colorShadowBorder: rgba(0, 0, 0, 0.1);
972
+ --fibery-color-colorShadowElevation: rgba(255, 255, 255, 0.1);
973
+ --fibery-color-colorShadowOutline: rgba(255, 255, 255, 0.2);
974
+ --fibery-color-colorPlaceholder: rgba(0, 0, 0, 0.4);
975
+ --fibery-color-colorPlaceholderSubtle: rgba(0, 0, 0, 0.25);
976
+ --fibery-color-colorBgSubtleLight: rgba(0, 0, 0, 0.05);
977
+ --fibery-color-colorStrokeSurface: rgb(0, 0, 0);
978
+ --fibery-color-colorTextMilestone: rgba(255, 255, 255, 0.5);
979
+ --fibery-color-colorSpinnerIcon: rgba(255, 255, 255, 0.9);
980
+ --fibery-color-colorSpinnerBg: rgba(255, 255, 255, 0.1);
981
+ --fibery-color-colorBgLaneSubtle: rgba(255, 255, 255, 0.05);
982
+ --fibery-color-opacity15: 0.15;
983
+ --fibery-color-opacity20: 0.2;
984
+ --fibery-color-opacity25: 0.25;
985
+ --fibery-color-opacity30: 0.3;
986
+ --fibery-color-opacity40: 0.4;
987
+ --fibery-color-opacity50: 0.5;
988
+ --fibery-color-opacity60: 0.6;
989
+ --fibery-color-opacity65: 0.65;
990
+ --fibery-color-opacity70: 0.7;
991
+ --fibery-color-opacity75: 0.75;
992
+ --fibery-color-opacity80: 0.8;
993
+ --fibery-color-opacity85: 0.85;
994
+ --fibery-color-opacity90: 0.9;
995
+ --fibery-color-whiteA10: rgba(0, 0, 0, 0.1);
996
+ --fibery-color-whiteA40: rgba(0, 0, 0, 0.4);
997
+ --fibery-color-whiteA100: rgb(0, 0, 0);
998
+ --fibery-color-colorBgFileOverlay: rgba(0, 0, 0, 0.6);
999
+ --fibery-color-colorBgScrollFade: rgba(0, 0, 0, 0.15);
1000
+ --fibery-color-colorStrokeSelectedOutline: rgba(255, 255, 255, 0.75);
1001
+ --fibery-color-scrollbar: rgba(61, 61, 61, 0.5);
1002
+ }
1003
+ :root.warm-palette {
1004
+ --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
1005
+ --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(0, 0, 0, 0.09);
1006
+ --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(0, 0, 0, 0.09);
1007
+ --fibery-color-shadow50: 0 0 0 1px rgba(27, 22, 17, 0.05);
1008
+ --fibery-color-shadow100: 0 1px 4px 0 rgba(27, 22, 17, 0.05);
1009
+ --fibery-color-shadow200: 0 2px 6px 0 rgba(27, 22, 17, 0.05);
1010
+ --fibery-color-shadow300: 0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15);
1011
+ --fibery-color-shadow400: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15);
1012
+ --fibery-color-shadow500: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15);
1013
+ --fibery-color-shadow600: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2);
1014
+ --fibery-color-actionMenuShadow:
1015
+ 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);
1016
+ --fibery-color-shadowPopup:
1017
+ 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);
1018
+ --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(125, 119, 112, 0.1);
1019
+ --fibery-color-highlightBgYellow: rgb(254, 234, 191);
1020
+ --fibery-color-highlightFgYellow: rgb(156, 125, 38);
1021
+ --fibery-color-highlightFgOnBgYellow: rgb(130, 104, 30);
1022
+ --fibery-color-highlightBgGreen: rgb(218, 245, 202);
1023
+ --fibery-color-highlightFgGreen: rgb(93, 143, 39);
1024
+ --fibery-color-highlightFgOnBgGreen: rgb(76, 119, 31);
1025
+ --fibery-color-highlightBgAquamarine: rgb(196, 247, 221);
1026
+ --fibery-color-highlightFgAquamarine: rgb(55, 145, 100);
1027
+ --fibery-color-highlightFgOnBgAquamarine: rgb(43, 120, 82);
1028
+ --fibery-color-highlightBgAqua: rgb(186, 248, 238);
1029
+ --fibery-color-highlightFgAqua: rgb(46, 144, 127);
1030
+ --fibery-color-highlightFgOnBgAqua: rgb(36, 119, 105);
1031
+ --fibery-color-highlightBgBlue: rgb(223, 237, 255);
1032
+ --fibery-color-highlightFgBlue: rgb(76, 129, 213);
1033
+ --fibery-color-highlightFgOnBgBlue: rgb(60, 107, 177);
1034
+ --fibery-color-highlightBgPurple: rgb(244, 231, 255);
1035
+ --fibery-color-highlightFgPurple: rgb(176, 89, 226);
1036
+ --fibery-color-highlightFgOnBgPurple: rgb(151, 63, 199);
1037
+ --fibery-color-highlightBgPink: rgb(255, 229, 242);
1038
+ --fibery-color-highlightFgPink: rgb(212, 73, 166);
1039
+ --fibery-color-highlightFgOnBgPink: rgb(178, 56, 139);
1040
+ --fibery-color-highlightBgRed: rgb(254, 230, 227);
1041
+ --fibery-color-highlightFgRed: rgb(227, 70, 74);
1042
+ --fibery-color-highlightFgOnBgRed: rgb(191, 50, 55);
1043
+ --fibery-color-highlightBgGrey: rgb(236, 235, 235);
1044
+ --fibery-color-highlightFgGrey: rgb(135, 128, 128);
1045
+ --fibery-color-highlightFgOnBgGrey: rgb(111, 105, 104);
1046
+ --fibery-color-colorPickerCssFilter: none;
1047
+ --fibery-color-mode: light;
1048
+ --fibery-color-colorAccentBgSubtle: rgba(0, 138, 169, 0.1);
1049
+ --fibery-color-colorAccentBgMild: rgba(0, 138, 169, 0.15);
1050
+ --fibery-color-colorAccentBgMedium: rgba(0, 138, 169, 0.2);
1051
+ --fibery-color-colorAccentBgStrong: rgba(0, 138, 169, 0.3);
1052
+ --fibery-color-colorAccentBgBold: rgba(0, 138, 169, 0.35);
1053
+ --fibery-color-colorAccentBgVivid: rgba(0, 138, 169, 0.6);
1054
+ --fibery-color-colorAccentStroke: rgba(0, 138, 169, 0.25);
1055
+ --fibery-color-colorAccentStrokeHover: rgba(0, 138, 169, 0.4);
1056
+ --fibery-color-colorAccentStrokeFocus: rgba(0, 138, 169, 0.5);
1057
+ --fibery-color-colorAccentSolid: rgba(0, 138, 169, 0.8);
1058
+ --fibery-color-colorAccent: rgb(0, 138, 169);
1059
+ --fibery-color-darkenPrimary: rgb(46, 107, 126);
1060
+ --fibery-color-whiteColor: rgb(255, 253, 250);
1061
+ --fibery-color-blackColor: #1f1a18;
1062
+ --fibery-color-mainBg: rgb(250, 244, 236);
1063
+ --fibery-color-panelBg: rgb(255, 253, 250);
1064
+ --fibery-color-panelContentBg: rgb(253, 246, 239);
1065
+ --fibery-color-colorBgRelationContainer: rgb(253, 246, 239);
1066
+ --fibery-color-colorAI: #9b6fc1;
1067
+ --fibery-color-colorBgAI: rgba(155, 111, 193, 0.1);
1068
+ --fibery-color-colorBgAIFloatingLauncher: rgb(255, 251, 244);
1069
+ --fibery-color-colorBgAIFloatingPanelContent: rgb(255, 251, 244);
1070
+ --fibery-color-colorBgAISidebarContent: rgb(255, 251, 244);
1071
+ --fibery-color-pageContentBg: rgb(255, 253, 250);
1072
+ --fibery-color-colorBgPopup: rgb(255, 253, 250);
1073
+ --fibery-color-menuBg: rgb(250, 244, 236);
1074
+ --fibery-color-menuTextColor: rgb(27, 22, 17);
1075
+ --fibery-color-menuItemHoverColor: rgb(237, 231, 224);
1076
+ --fibery-color-menuSelectedTextColor: rgb(253, 246, 239);
1077
+ --fibery-color-menuIconColor: rgba(27, 22, 17, 0.7);
1078
+ --fibery-color-textColor: rgb(27, 22, 17);
1079
+ --fibery-color-textSelectionColor: rgba(0, 138, 169, 0.2);
1080
+ --fibery-color-accentTextColor: rgb(125, 119, 112);
1081
+ --fibery-color-disabledTextColor: rgb(163, 157, 150);
1082
+ --fibery-color-inversedTextColor: rgb(250, 244, 236);
1083
+ --fibery-color-colorTextSecondary: rgba(27, 22, 17, 0.7);
1084
+ --fibery-color-linkColor: #5371b4;
1085
+ --fibery-color-linkBorder: 0.5px solid rgba(83, 113, 180, 0.4);
1086
+ --fibery-color-linkHoverColor: #5371b4;
1087
+ --fibery-color-linkBorderHover: 0.5px solid rgba(83, 113, 180, 0.75);
1088
+ --fibery-color-codeColor: rgb(211, 62, 75);
1089
+ --fibery-color-codeBgColor: rgb(250, 244, 236);
1090
+ --fibery-color-codeBlockBgColor: rgb(250, 244, 236);
1091
+ --fibery-color-addedDiffTextColor: rgb(0, 144, 126);
1092
+ --fibery-color-removedDiffTextColor: rgb(175, 36, 54);
1093
+ --fibery-color-entityNodeColor: rgb(39, 35, 33);
1094
+ --fibery-color-entityNodeBorder: 0.5px solid rgba(39, 35, 33, 0.3);
1095
+ --fibery-color-entityNodeHoverColor: rgb(65, 60, 58);
1096
+ --fibery-color-entityNodeBorderHover: 0.5px solid rgba(99, 94, 87, 0.8);
1097
+ --fibery-color-entityNodeBgColor: rgb(253, 246, 239);
1098
+ --fibery-color-shortcutTextColor: rgb(163, 157, 150);
1099
+ --fibery-color-shortcutBorder: 1px solid rgba(204, 198, 191, 0.5);
1100
+ --fibery-color-shortcutBorderColor: rgba(204, 198, 191, 0.5);
1101
+ --fibery-color-inputBgColor: rgb(255, 253, 250);
1102
+ --fibery-color-inputDisabledBgColor: rgba(232, 226, 219, 0.3);
1103
+ --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(232, 226, 219, 0.2);
1104
+ --fibery-color-inputCopyBgColor: rgb(250, 244, 236);
1105
+ --fibery-color-inputBorderColor: 0 0 0 1px rgba(232, 226, 219, 0.7);
1106
+ --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(225, 218, 211);
1107
+ --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(204, 198, 191);
1108
+ --fibery-color-inputBorderBlendMode: multiply;
1109
+ --fibery-color-inputPlaceholderTextColor: rgb(163, 157, 150);
1110
+ --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(175, 36, 54);
1111
+ --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(175, 36, 54, 0.4);
1112
+ --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(175, 36, 54, 0.25);
1113
+ --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(175, 36, 54, 0.25);
1114
+ --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(247, 217, 0);
1115
+ --fibery-color-buttonPrimaryColor: rgb(0, 138, 169);
1116
+ --fibery-color-buttonColor: rgb(125, 119, 112);
1117
+ --fibery-color-buttonPrimaryTextColor: rgb(253, 246, 239);
1118
+ --fibery-color-checkboxColor: rgba(27, 22, 17, 0.7);
1119
+ --fibery-color-colorBorderBlockQuote: rgb(99, 94, 87);
1120
+ --fibery-color-colorBgActionsMenu: rgb(255, 253, 250);
1121
+ --fibery-color-colorBgActionsMenuItemHover: rgb(243, 236, 229);
1122
+ --fibery-color-colorBgActionsMenuItemSelected: rgba(228, 241, 246, 0.8);
1123
+ --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(213, 233, 240, 0.8);
1124
+ --fibery-color-colorBgActionsMenuItemDangerHover: rgba(211, 62, 75, 0.1);
1125
+ --fibery-color-colorBgActionsMenuItemDangerActive: rgba(211, 62, 75, 0.8);
1126
+ --fibery-color-actionMenuBg: rgb(255, 253, 250);
1127
+ --fibery-color-actionMenuInnerBg: rgb(255, 253, 250);
1128
+ --fibery-color-actionMenuHover: rgb(243, 236, 229);
1129
+ --fibery-color-actionMenuInnerHover: rgb(243, 236, 229);
1130
+ --fibery-color-actionMenuButtonColor: rgb(255, 253, 250);
1131
+ --fibery-color-actionMenuButtonHoverColor: rgb(255, 251, 244);
1132
+ --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1133
+ --fibery-color-actionMenuSeparatorColor: rgba(31, 26, 24, 0.1);
1134
+ --fibery-color-separatorColor: rgba(31, 26, 24, 0.1);
1135
+ --fibery-color-separatorColorDimmed: rgba(31, 26, 24, 0.05);
1136
+ --fibery-color-separatorBreadcrumbsColor: rgb(204, 198, 191);
1137
+ --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(31, 26, 24, 0.05);
1138
+ --fibery-color-borderSeparator: 0.5px solid rgba(31, 26, 24, 0.1);
1139
+ --fibery-color-borderSeparatorMedium: 0.5px solid rgba(31, 26, 24, 0.15);
1140
+ --fibery-color-borderSeparatorStrong: 0.5px solid rgba(31, 26, 24, 0.25);
1141
+ --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
1142
+ --fibery-color-borderSolidSeparator: 1px solid rgba(31, 26, 24, 0.1);
1143
+ --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(31, 26, 24, 0.05);
1144
+ --fibery-color-borderSolidFilterGroup: 1px solid rgba(0, 0, 0, 0.05);
1145
+ --fibery-color-borderSolidGrid: 1px solid rgb(237, 231, 224);
1146
+ --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(204, 198, 191);
1147
+ --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
1148
+ --fibery-color-borderSolidCommentBubble: 1px solid rgb(255, 253, 250);
1149
+ --fibery-color-borderBlockQuote: 3px solid rgb(99, 94, 87);
1150
+ --fibery-color-shadowCardDefault: 0 0 0 1px rgba(232, 226, 219, 0.7), 0 1px 4px 0 rgba(27, 22, 17, 0.05);
1151
+ --fibery-color-shadowCardHover: 0 0 0 1px rgba(232, 226, 219, 0.7), 0 2px 6px 0 rgba(27, 22, 17, 0.05);
1152
+ --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(232, 226, 219, 0.7);
1153
+ --fibery-color-iconColor: rgba(27, 22, 17, 0.7);
1154
+ --fibery-color-appIconColor: rgba(253, 246, 239, 0.9);
1155
+ --fibery-color-appIconBgColor: rgba(255, 251, 244, 0.9);
1156
+ --fibery-color-mentionBgColor: rgba(225, 218, 211, 0.3);
1157
+ --fibery-color-colorBgSelectMenu: rgb(255, 251, 244);
1158
+ --fibery-color-shadowSelectMenu:
1159
+ 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);
1160
+ --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
1161
+ --fibery-color-colorBgListItemGeneralHover: rgb(250, 244, 236);
1162
+ --fibery-color-colorBgListItemGeneralFocus: rgb(243, 236, 229);
1163
+ --fibery-color-colorBgListItemGeneralSelected: rgb(238, 247, 249);
1164
+ --fibery-color-colorBgListItemGeneralSelectedHover: rgb(228, 241, 246);
1165
+ --fibery-color-colorBgListItemGeneralSelectedFocus: rgb(228, 241, 246);
1166
+ --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
1167
+ --fibery-color-colorTextListItemGeneralDisabled: rgb(163, 157, 150);
1168
+ --fibery-color-colorBgListItemGeneralSelectedDisabled: rgb(213, 233, 240);
1169
+ --fibery-color-opacityListItemGeneralDisabled: 0.4;
1170
+ --fibery-color-colorSearchSubtitle: rgb(163, 157, 150);
1171
+ --fibery-color-colorBgSearchRowHover: rgb(243, 236, 229);
1172
+ --fibery-color-colorBgSearchRowCreateHover: rgb(228, 241, 246);
1173
+ --fibery-color-opacitySearchItemDone: 0.4;
1174
+ --fibery-color-colorBgEntityBoxDefault: rgb(255, 253, 250);
1175
+ --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(237, 231, 224);
1176
+ --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(27, 22, 17, 0.05);
1177
+ --fibery-color-colorBgEntityBoxDefaultHover: rgb(255, 253, 250);
1178
+ --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(27, 22, 17, 0.1);
1179
+ --fibery-color-colorBgEntityBoxDefaultFocus: rgb(255, 253, 250);
1180
+ --fibery-color-colorOverlayEntityBoxDefaultFocus: rgb(0, 138, 169);
1181
+ --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(0, 138, 169, 0.4);
1182
+ --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(255, 253, 250);
1183
+ --fibery-color-colorOverlayEntityBoxDefaultFocusHover: rgb(0, 138, 169);
1184
+ --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(0, 138, 169, 0.6);
1185
+ --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
1186
+ --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(27, 22, 17, 0.1);
1187
+ --fibery-color-colorBgEntityBoxSelected: rgb(249, 252, 253);
1188
+ --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4);
1189
+ --fibery-color-colorBgEntityBoxSelectedHover: rgb(238, 247, 249);
1190
+ --fibery-color-shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgba(0, 138, 169, 0.6), 0 0 0 3px rgba(0, 138, 169, 0.4);
1191
+ --fibery-color-colorBgEntityBoxSelectedDrag: rgb(238, 247, 249);
1192
+ --fibery-color-shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4);
1193
+ --fibery-color-opacityEntityBoxDisabled: 0.65;
1194
+ --fibery-color-opacityEntityBoxDisabledHover: 0.75;
1195
+ --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
1196
+ --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
1197
+ --fibery-color-entityCardBgColor: rgb(255, 253, 250);
1198
+ --fibery-color-entityCardSelectedColor: rgba(253, 246, 239, 0.8);
1199
+ --fibery-color-entityCardHoverColor: rgba(253, 246, 239, 0.8);
1200
+ --fibery-color-entityCardDoneColor: rgba(243, 236, 229, 0.3);
1201
+ --fibery-color-entityCardShadow: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1202
+ --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1203
+ --fibery-color-colorBgSegmentedControl: rgba(237, 231, 224, 0.8);
1204
+ --fibery-color-colorBgMenuHeaderAvatar: rgb(255, 253, 250);
1205
+ --fibery-color-shadowMenuHeaderAvatar: 0 1px 4px 0 rgba(99, 94, 87, 0.1), 0 0 0 0.5px rgba(237, 231, 224, 0.5);
1206
+ --fibery-color-opacityMenuItemDragged: 0.4;
1207
+ --fibery-color-colorBgMenuItemSelectedDragged: rgb(194, 222, 232);
1208
+ --fibery-color-colorTextMenuItem: rgba(27, 22, 17, 0.9);
1209
+ --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
1210
+ --fibery-color-colorBgMenuItemHover: rgb(237, 231, 224);
1211
+ --fibery-color-colorBgMenuItemFocus: rgb(232, 226, 219);
1212
+ --fibery-color-colorBgMenuItemSelected: rgba(213, 233, 240, 0.8);
1213
+ --fibery-color-colorBgMenuItemSelectedHover: rgba(194, 222, 232, 0.7);
1214
+ --fibery-color-colorBgPinnedFieldsLabel: rgb(99, 94, 87);
1215
+ --fibery-color-colorBgObjectEditorSeparator: rgb(27, 22, 17);
1216
+ --fibery-color-colorBgMenuItemSelectedFocused: rgb(194, 222, 232);
1217
+ --fibery-color-colorBgFieldEditorContainer: rgb(253, 246, 239);
1218
+ --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(232, 226, 219);
1219
+ --fibery-color-allowedDropColor: rgb(243, 236, 229);
1220
+ --fibery-color-relationViewBgColor: rgb(253, 246, 239);
1221
+ --fibery-color-mySpaceIconColor: rgb(129, 133, 137);
1222
+ --fibery-color-mySpaceIconBg: rgba(112, 132, 153, 0.2);
1223
+ --fibery-color-privateIconColor: rgb(116, 168, 101);
1224
+ --fibery-color-privateIconBg: rgba(116, 168, 101, 0.2);
1225
+ --fibery-color-favoritesIconColor: rgb(235, 169, 68);
1226
+ --fibery-color-favoritesIconBg: rgba(235, 169, 68, 0.2);
1227
+ --fibery-color-swatchDefault: #1fbed3;
1228
+ --fibery-color-unitBg: rgb(250, 244, 236);
1229
+ --fibery-color-unitBgHover: rgb(243, 236, 229);
1230
+ --fibery-color-colorBgBadgeNeutral: rgba(237, 231, 224, 0.7);
1231
+ --fibery-color-colorBgBadgeAccent: rgba(213, 233, 240, 0.7);
1232
+ --fibery-color-colorBgBadgeSuccess: rgb(214, 234, 230);
1233
+ --fibery-color-colorBgBadgeWarning: rgb(255, 242, 160);
1234
+ --fibery-color-colorBgBadgeError: rgb(253, 220, 219);
1235
+ --fibery-color-colorTextBadgeNeutral: rgb(99, 94, 87);
1236
+ --fibery-color-colorTextBadgeAccent: rgb(0, 111, 139);
1237
+ --fibery-color-colorTextBadgeSuccess: rgb(0, 116, 101);
1238
+ --fibery-color-colorTextBadgeWarning: rgb(130, 113, 0);
1239
+ --fibery-color-colorTextBadgeError: rgb(175, 36, 54);
1240
+ --fibery-color-badgeBgColor: rgba(121, 118, 113, 0.2);
1241
+ --fibery-color-tooltipBgColor: rgb(50, 45, 43);
1242
+ --fibery-color-todayMarkerColor: rgb(237, 150, 150);
1243
+ --fibery-color-viewBgOverlayColor: rgba(204, 198, 191, 0.2);
1244
+ --fibery-color-floatEditorMenuBg: rgb(255, 251, 244);
1245
+ --fibery-color-floatEditorActiveColor: rgb(0, 111, 139);
1246
+ --fibery-color-commentColor: rgba(248, 231, 135, 0.6);
1247
+ --fibery-color-cellBackgroundColor: rgb(253, 246, 239);
1248
+ --fibery-color-cellBackgroundHoverColor: rgba(232, 226, 219, 0.3);
1249
+ --fibery-color-cellBorderColor: rgba(204, 198, 191, 0.5);
1250
+ --fibery-color-cellPinnedBorderColor: rgba(204, 198, 191, 0.7);
1251
+ --fibery-color-tableRowWarningColor: rgba(248, 231, 135, 0.6);
1252
+ --fibery-color-errorBgColor: rgba(211, 62, 75, 0.2);
1253
+ --fibery-color-errorTextColor: rgb(175, 36, 54);
1254
+ --fibery-color-errorButtonColor: rgb(211, 62, 75);
1255
+ --fibery-color-warningBgColor: rgba(248, 231, 135, 0.6);
1256
+ --fibery-color-warningButtonColor: rgb(130, 113, 0);
1257
+ --fibery-color-infoBox: rgba(255, 247, 185, 0.5);
1258
+ --fibery-color-appCardBgColor: rgb(255, 253, 250);
1259
+ --fibery-color-appCardHoverColor: rgba(255, 251, 244, 0.95);
1260
+ --fibery-color-modalBg: rgba(99, 94, 87, 0.2);
1261
+ --fibery-color-modalContentBg: rgb(255, 253, 250);
1262
+ --fibery-color-progressIconBg: rgba(0, 0, 0, 0.14);
1263
+ --fibery-color-progressIconFill: rgba(0, 0, 0, 0.57);
1264
+ --fibery-color-formBg: rgb(253, 246, 239);
1265
+ --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(125, 119, 112, 0.1);
1266
+ --fibery-color-formEditorFieldBg: rgb(250, 244, 236);
1267
+ --fibery-color-filterGroup1Bg: rgb(253, 246, 239);
1268
+ --fibery-color-filterGroup2Bg: rgb(250, 244, 236);
1269
+ --fibery-color-filterGroupBorder: rgba(0, 0, 0, 0.05);
1270
+ --fibery-color-colorBgNotificationHover: rgb(250, 244, 236);
1271
+ --fibery-color-colorBgNotificationSelected: rgb(238, 247, 249);
1272
+ --fibery-color-colorBgNotificationSelectedHover: rgb(228, 241, 246);
1273
+ --fibery-color-disabledInversedTextColor: rgba(31, 26, 24, 0.25);
1274
+ --fibery-color-success: rgb(0, 144, 126);
1275
+ --fibery-color-danger: rgb(211, 62, 75);
1276
+ --fibery-color-active: rgb(211, 62, 75);
1277
+ --fibery-color-warning: rgb(247, 217, 0);
1278
+ --fibery-color-cardBg: rgb(255, 253, 250);
1279
+ --fibery-color-selectedImageBorder: rgba(0, 0, 0, 0.22);
1280
+ --fibery-color-transparent: rgba(255, 255, 255, 0);
1281
+ --fibery-color-progressBg: rgb(243, 236, 229);
1282
+ --fibery-color-progressText: rgb(99, 94, 87);
1283
+ --fibery-color-progressFillBg: rgb(99, 94, 87);
1284
+ --fibery-color-progressFillText: rgb(255, 253, 250);
1285
+ --fibery-color-progressBarFillNeutral: rgba(163, 157, 150, 0.2);
1286
+ --fibery-color-progressBarFill: rgb(0, 138, 169);
1287
+ --fibery-color-progressBarBg: rgba(0, 138, 169, 0.25);
1288
+ --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
1289
+ --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
1290
+ --fibery-color-richTextTableBorder: rgba(0, 0, 0, 0.09);
1291
+ --fibery-color-colorBgDropLine: rgb(132, 188, 206);
1292
+ --fibery-color-viewBg: rgb(255, 251, 244);
1293
+ --fibery-color-viewSecondaryBg: rgb(253, 246, 239);
1294
+ --fibery-color-viewHighlightBg: rgb(238, 247, 249);
1295
+ --fibery-color-boardBg: rgb(255, 251, 244);
1296
+ --fibery-color-boardBgWithOpacity80: rgba(255, 251, 244, 0.8);
1297
+ --fibery-color-boardAxisBgHover: rgb(243, 236, 229);
1298
+ --fibery-color-gridHeaderBgColor: rgb(253, 246, 239);
1299
+ --fibery-color-gridHeaderHoverBgColor: rgb(250, 244, 236);
1300
+ --fibery-color-gridHeaderTextColor: rgb(125, 119, 112);
1301
+ --fibery-color-gridCellBgColor: rgb(255, 253, 250);
1302
+ --fibery-color-gridCellBorderColor: rgb(237, 231, 224);
1303
+ --fibery-color-gridDisabledCellBgColor: rgb(253, 246, 239);
1304
+ --fibery-color-gridSelectedCellBgColor: rgb(238, 247, 249);
1305
+ --fibery-color-gridHighlightedCellBgColor: rgb(228, 241, 246);
1306
+ --fibery-color-gridSelectedCellBorderColor: rgb(194, 222, 232);
1307
+ --fibery-color-gridSelectedPinnedCellBorderColor: rgb(166, 206, 219);
1308
+ --fibery-color-gridDisabledSelectedCellBgColor: rgb(228, 241, 246);
1309
+ --fibery-color-gridActiveCellBorderColor: rgb(132, 188, 206);
1310
+ --fibery-color-timelineEntityHandleColor: rgb(166, 206, 219);
1311
+ --fibery-color-timelineDependencyHoverBgColor: rgb(132, 188, 206);
1312
+ --fibery-color-timelineDependencyOverlapBgColor: rgb(211, 62, 75);
1313
+ --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(175, 36, 54);
1314
+ --fibery-color-timelineCellBgColor: rgb(255, 251, 244);
1315
+ --fibery-color-timelineCellWeekendBgColor: rgb(253, 246, 239);
1316
+ --fibery-color-timelineCellTodayBgColor: rgb(228, 241, 246);
1317
+ --fibery-color-timelineCreateEntityPlaceholderBgColor: rgba(99, 94, 87, 0.2);
1318
+ --fibery-color-colorBgButtonSolidAccentDefault: rgb(0, 138, 169);
1319
+ --fibery-color-colorBgButtonSolidAccentHover: rgb(0, 111, 139);
1320
+ --fibery-color-colorBgButtonSolidNeutralDefault: rgb(27, 22, 17);
1321
+ --fibery-color-colorBgButtonSolidNeutralHover: rgba(27, 22, 17, 0.85);
1322
+ --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(211, 62, 75);
1323
+ --fibery-color-colorBgButtonSolidDestructiveHover: rgb(175, 36, 54);
1324
+ --fibery-color-colorTextButtonSolidAccent: rgb(255, 253, 250);
1325
+ --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 253, 250, 0.8);
1326
+ --fibery-color-colorTextButtonSolidNeutral: rgb(255, 253, 250);
1327
+ --fibery-color-colorTextButtonSolidNeutralActive: rgb(255, 253, 250);
1328
+ --fibery-color-colorTextButtonSolidDestructive: rgb(255, 253, 250);
1329
+ --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 253, 250, 0.8);
1330
+ --fibery-color-colorIconButtonSolidAccent: rgb(255, 253, 250);
1331
+ --fibery-color-colorIconButtonSolidNeutral: rgb(255, 253, 250);
1332
+ --fibery-color-colorIconButtonSolidDestructive: rgb(255, 253, 250);
1333
+ --fibery-color-colorBorderButtonOutlineAccentDefault: rgb(132, 188, 206);
1334
+ --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(204, 198, 191);
1335
+ --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(244, 179, 178);
1336
+ --fibery-color-colorBgButtonOutlineAccentDefault: rgb(255, 253, 250);
1337
+ --fibery-color-colorBgButtonOutlineAccentHover: rgb(238, 247, 249);
1338
+ --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(255, 253, 250);
1339
+ --fibery-color-colorBgButtonOutlineNeutralHover: rgb(243, 236, 229);
1340
+ --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(255, 253, 250);
1341
+ --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(255, 232, 231);
1342
+ --fibery-color-colorTextButtonOutlineAccent: rgb(0, 111, 139);
1343
+ --fibery-color-colorTextButtonOutlineAccentActive: rgba(0, 111, 139, 0.8);
1344
+ --fibery-color-colorTextButtonOutlineNeutral: rgb(99, 94, 87);
1345
+ --fibery-color-colorTextButtonOutlineNeutralActive: rgba(27, 22, 17, 0.8);
1346
+ --fibery-color-colorTextButtonOutlineDestructive: rgb(175, 36, 54);
1347
+ --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(175, 36, 54, 0.8);
1348
+ --fibery-color-colorIconButtonOutlineAccent: rgb(0, 111, 139);
1349
+ --fibery-color-colorIconButtonOutlineNeutral: rgb(99, 94, 87);
1350
+ --fibery-color-colorIconButtonOutlineDestructive: rgb(175, 36, 54);
1351
+ --fibery-color-colorBgButtonSoftAccentDefault: rgb(238, 247, 249);
1352
+ --fibery-color-colorBgButtonSoftAccentHover: rgb(213, 233, 240);
1353
+ --fibery-color-colorBgButtonSoftNeutralDefault: rgb(250, 244, 236);
1354
+ --fibery-color-colorBgButtonSoftNeutralHover: rgb(225, 218, 211);
1355
+ --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(255, 232, 231);
1356
+ --fibery-color-colorBgButtonSoftDestructiveHover: rgb(250, 203, 202);
1357
+ --fibery-color-colorTextButtonSoftAccent: rgb(0, 111, 139);
1358
+ --fibery-color-colorTextButtonSoftAccentActive: rgba(0, 111, 139, 0.8);
1359
+ --fibery-color-colorTextButtonSoftNeutral: rgb(99, 94, 87);
1360
+ --fibery-color-colorTextButtonSoftNeutralActive: rgba(99, 94, 87, 0.8);
1361
+ --fibery-color-colorTextButtonSoftDestructive: rgb(175, 36, 54);
1362
+ --fibery-color-colorTextButtonSoftDestructiveActive: rgba(175, 36, 54, 0.8);
1363
+ --fibery-color-colorIconButtonSoftAccent: rgb(0, 111, 139);
1364
+ --fibery-color-colorIconButtonSoftNeutral: rgb(99, 94, 87);
1365
+ --fibery-color-colorIconButtonSoftDestructive: rgb(175, 36, 54);
1366
+ --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
1367
+ --fibery-color-colorBgButtonGhostAccentHover: rgba(228, 241, 246, 0.8);
1368
+ --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
1369
+ --fibery-color-colorBgButtonGhostNeutralHover: rgba(225, 218, 211, 0.5);
1370
+ --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
1371
+ --fibery-color-colorBgButtonGhostDestructiveHover: rgb(255, 232, 231);
1372
+ --fibery-color-colorTextButtonGhostAccent: rgb(0, 111, 139);
1373
+ --fibery-color-colorTextButtonGhostAccentActive: rgba(0, 111, 139, 0.8);
1374
+ --fibery-color-colorTextButtonGhostNeutral: rgb(99, 94, 87);
1375
+ --fibery-color-colorTextButtonGhostNeutralActive: rgba(99, 94, 87, 0.8);
1376
+ --fibery-color-colorTextButtonGhostDestructive: rgb(175, 36, 54);
1377
+ --fibery-color-colorTextButtonGhostDestructiveActive: rgba(175, 36, 54, 0.8);
1378
+ --fibery-color-colorIconButtonGhostAccent: rgb(0, 111, 139);
1379
+ --fibery-color-colorIconButtonGhostNeutral: rgb(99, 94, 87);
1380
+ --fibery-color-colorIconButtonGhostDestructive: rgb(175, 36, 54);
1381
+ --fibery-color-colorBorderAccentFocusRing: rgba(0, 138, 169, 0.3);
1382
+ --fibery-color-colorBorderNeutralFocusRing: rgba(163, 157, 150, 0.3);
1383
+ --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 75, 0.3);
1384
+ --fibery-color-colorBgReactionsDefault: rgb(255, 253, 250);
1385
+ --fibery-color-colorBgReactionsHover: rgb(250, 244, 236);
1386
+ --fibery-color-colorBorderReactionsHover: rgb(204, 198, 191);
1387
+ --fibery-color-colorBgReactionsSelectedDefault: rgb(238, 247, 249);
1388
+ --fibery-color-colorBorderReactionsSelectedDefault: rgb(132, 188, 206);
1389
+ --fibery-color-colorBgReactionsSelectedHover: rgb(249, 252, 253);
1390
+ --fibery-color-colorBorderReactionsSelectedHover: rgb(0, 138, 169);
1391
+ --fibery-color-colorTextReactionsSelected: rgb(0, 126, 159);
1392
+ --fibery-color-colorBgToastDefault: rgb(255, 251, 244);
1393
+ --fibery-color-colorBgDbTabHover: rgb(250, 244, 236);
1394
+ --fibery-color-colorBgDbTabFocus: rgb(232, 226, 219);
1395
+ --fibery-color-colorBgTabHover: rgba(99, 94, 87, 0.1);
1396
+ --fibery-color-colorBgMessageContainer: rgb(250, 244, 236);
1397
+ --fibery-color-colorBgMessageContainerHover: rgb(243, 236, 229);
1398
+ --fibery-color-colorBgEntityAvatarDefault: rgb(250, 252, 253);
1399
+ --fibery-color-colorBgEntityAvatarHover: rgb(238, 247, 249);
1400
+ --fibery-color-colorTextEntityAvatarDefault: rgb(132, 188, 206);
1401
+ --fibery-color-colorTextEntityAvatarHover: rgb(0, 138, 169);
1402
+ --fibery-color-colorBgMessageHighlighted: rgb(255, 253, 250);
1403
+ --fibery-color-colorBgEditorImageZoomed: rgb(250, 244, 236);
1404
+ --fibery-color-colorMermaidPrimaryColor: rgb(253, 246, 239);
1405
+ --fibery-color-colorMermaidPrimaryBorderColor: rgb(163, 157, 150);
1406
+ --fibery-color-colorMermaidLineColor: rgb(125, 119, 112);
1407
+ --fibery-color-colorBgWhiteboard: rgb(255, 253, 250);
1408
+ --fibery-color-colorGridDotWhiteboard: rgb(232, 226, 219);
1409
+ --fibery-color-colorSelectionWhiteboardBorderEnabled: rgb(132, 188, 206);
1410
+ --fibery-color-colorHighlightWhiteboardSelection: rgb(132, 188, 206);
1411
+ --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(163, 157, 150, 0.5);
1412
+ --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(163, 157, 150, 0.5);
1413
+ --fibery-color-colorPlaceholderWhiteboardDefault: rgba(132, 188, 206, 0.2);
1414
+ --fibery-color-colorLinkPointWhiteboardDefault: rgb(132, 188, 206);
1415
+ --fibery-color-colorLinkPointWhiteboardFillDefault: rgb(255, 253, 250);
1416
+ --fibery-color-colorMapWhiteboardPreviewDefault: rgba(132, 188, 206, 0.4);
1417
+ --fibery-color-colorCardWhiteboardShadowDefault: rgba(99, 94, 87, 0.05);
1418
+ --fibery-color-colorCardWhiteboardBgDefault: rgb(255, 253, 250);
1419
+ --fibery-color-colorCardWhiteboardBorderDefault: rgba(27, 22, 17, 0.2);
1420
+ --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(27, 22, 17, 0.6);
1421
+ --fibery-color-colorUnitWhiteboardBgDefault: rgb(250, 244, 236);
1422
+ --fibery-color-colorUnitWhiteboardBorderDefault: rgba(27, 22, 17, 0.2);
1423
+ --fibery-color-colorSectionWhiteboardBgInactive: rgb(253, 246, 239);
1424
+ --fibery-color-colorSectionWhiteboardBorderInactive: rgb(232, 226, 219);
1425
+ --fibery-color-colorEmbedWhiteboardEditBorder: rgba(135, 191, 179, 0.9);
1426
+ --fibery-color-colorTextWhiteboardDefault: rgb(27, 22, 17);
1427
+ --fibery-color-colorTextWhiteboardDisabled: rgb(163, 157, 150);
1428
+ --fibery-color-colorTextWhiteboardAccent: rgba(27, 22, 17, 0.6);
1429
+ --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 253, 250);
1430
+ --fibery-color-instrumentsMenuBg: rgb(255, 253, 250);
1431
+ --fibery-color-instrumentsMenuShadow:
1432
+ 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);
1433
+ --fibery-color-commentBubbleBg: rgb(255, 253, 250);
1434
+ --fibery-color-commentsPanelShadow:
1435
+ 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);
1436
+ --fibery-color-searchFiltersBg: rgb(255, 251, 244);
1437
+ --fibery-color-selectedColorBorder: rgba(232, 226, 219, 0.25);
1438
+ --fibery-color-colorBgSegmentedControlDefault: rgb(250, 244, 236);
1439
+ --fibery-color-colorBgSegmentedControlActive: rgb(255, 251, 244);
1440
+ --fibery-color-colorBgSegmentedControlHover: rgb(237, 231, 224);
1441
+ --fibery-color-colorBorderSegmentedControlDefault: rgb(232, 226, 219);
1442
+ --fibery-color-colorBgBannerNeutral: rgb(250, 244, 236);
1443
+ --fibery-color-colorBgBannerPrimary: rgb(238, 247, 249);
1444
+ --fibery-color-colorBgBannerWarning: rgb(255, 250, 207);
1445
+ --fibery-color-colorBgBannerError: rgb(255, 241, 240);
1446
+ --fibery-color-colorBgBannerSuccess: rgb(239, 247, 245);
1447
+ --fibery-color-colorIconBannerNeutral: rgb(27, 22, 17);
1448
+ --fibery-color-colorIconBannerAccent: rgb(0, 111, 139);
1449
+ --fibery-color-colorIconBannerWarning: rgb(130, 113, 0);
1450
+ --fibery-color-colorIconBannerError: rgb(175, 36, 54);
1451
+ --fibery-color-colorIconBannerSuccess: rgb(0, 116, 101);
1452
+ --fibery-color-colorTextBannerNeutral: rgb(27, 22, 17);
1453
+ --fibery-color-colorTextBannerAccent: rgb(0, 111, 139);
1454
+ --fibery-color-colorTextBannerWarning: rgb(130, 113, 0);
1455
+ --fibery-color-colorTextBannerError: rgb(175, 36, 54);
1456
+ --fibery-color-colorTextBannerSuccess: rgb(0, 116, 101);
1457
+ --fibery-color-colorBgChargebeeInfoBox: rgb(250, 244, 236);
1458
+ --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 150);
1459
+ --fibery-color-colorBgErrorMessage: rgb(237, 150, 150);
1460
+ --fibery-color-colorBorderLogoGrid: rgb(243, 236, 229);
1461
+ --fibery-color-colorBorderLogoGridSubtle: rgba(243, 236, 229, 0.2);
1462
+ --fibery-color-colorBorderLogoGridMedium: rgba(243, 236, 229, 0.4);
1463
+ --fibery-color-colorStrokeLogoDashed: rgb(232, 226, 219);
1464
+ --fibery-color-colorBgLogoCardTransparent: rgb(255, 253, 250);
1465
+ --fibery-color-colorBgLogoCardDark: rgb(204, 198, 191);
1466
+ --fibery-color-colorBgLogoCardMedium: rgb(243, 236, 229);
1467
+ --fibery-color-colorBgSkeletonFrom: rgba(255, 253, 250, 0.05);
1468
+ --fibery-color-colorBgSkeletonTo: rgba(255, 253, 250, 0.1);
1469
+ --fibery-color-colorShadowInsetEdge: rgba(255, 253, 250, 0.05);
1470
+ --fibery-color-colorShadowBorder: rgba(255, 253, 250, 0.1);
1471
+ --fibery-color-colorShadowElevation: rgba(31, 26, 24, 0.1);
1472
+ --fibery-color-colorShadowOutline: rgba(31, 26, 24, 0.2);
1473
+ --fibery-color-colorPlaceholder: rgba(255, 253, 250, 0.4);
1474
+ --fibery-color-colorPlaceholderSubtle: rgba(255, 253, 250, 0.25);
1475
+ --fibery-color-colorBgSubtleLight: rgba(255, 253, 250, 0.05);
1476
+ --fibery-color-colorStrokeSurface: rgb(255, 253, 250);
1477
+ --fibery-color-colorTextMilestone: rgba(31, 26, 24, 0.5);
1478
+ --fibery-color-colorSpinnerIcon: rgba(31, 26, 24, 0.9);
1479
+ --fibery-color-colorSpinnerBg: rgba(31, 26, 24, 0.1);
1480
+ --fibery-color-colorBgLaneSubtle: rgba(31, 26, 24, 0.05);
1481
+ --fibery-color-opacity15: 0.15;
1482
+ --fibery-color-opacity20: 0.2;
1483
+ --fibery-color-opacity25: 0.25;
1484
+ --fibery-color-opacity30: 0.3;
1485
+ --fibery-color-opacity40: 0.4;
1486
+ --fibery-color-opacity50: 0.5;
1487
+ --fibery-color-opacity60: 0.6;
1488
+ --fibery-color-opacity65: 0.65;
1489
+ --fibery-color-opacity70: 0.7;
1490
+ --fibery-color-opacity75: 0.75;
1491
+ --fibery-color-opacity80: 0.8;
1492
+ --fibery-color-opacity85: 0.85;
1493
+ --fibery-color-opacity90: 0.9;
1494
+ --fibery-color-whiteA10: rgba(255, 253, 250, 0.1);
1495
+ --fibery-color-whiteA40: rgba(255, 253, 250, 0.4);
1496
+ --fibery-color-whiteA100: rgb(255, 253, 250);
1497
+ --fibery-color-colorBgFileOverlay: rgba(31, 26, 24, 0.6);
1498
+ --fibery-color-colorBgScrollFade: rgba(255, 253, 250, 0.15);
1499
+ --fibery-color-colorStrokeSelectedOutline: rgba(31, 26, 24, 0.75);
1500
+ --fibery-color-scrollbar: rgba(163, 157, 150, 0.5);
1501
+ }
1502
+ :root.warm-palette.dark-theme {
1503
+ --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(255, 255, 254, 0.03);
1504
+ --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(255, 255, 254, 0.09);
1505
+ --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(255, 255, 254, 0.09);
1506
+ --fibery-color-shadow50: 0 0 0 1px rgba(224, 212, 206, 0.1);
1507
+ --fibery-color-shadow100: 0 1px 4px 0 rgba(27, 22, 17, 0.1);
1508
+ --fibery-color-shadow200: 0 2px 6px 0 rgba(27, 22, 17, 0.1);
1509
+ --fibery-color-shadow300: 0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15);
1510
+ --fibery-color-shadow400: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15);
1511
+ --fibery-color-shadow500: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15);
1512
+ --fibery-color-shadow600: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2);
1513
+ --fibery-color-actionMenuShadow:
1514
+ 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);
1515
+ --fibery-color-shadowPopup:
1516
+ 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);
1517
+ --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(26, 22, 20, 0.8);
1518
+ --fibery-color-highlightBgYellow: rgb(78, 64, 26);
1519
+ --fibery-color-highlightFgYellow: rgb(215, 184, 106);
1520
+ --fibery-color-highlightFgOnBgYellow: rgb(232, 200, 119);
1521
+ --fibery-color-highlightBgGreen: rgb(53, 71, 39);
1522
+ --fibery-color-highlightFgGreen: rgb(160, 199, 130);
1523
+ --fibery-color-highlightFgOnBgGreen: rgb(175, 216, 146);
1524
+ --fibery-color-highlightBgAquamarine: rgb(41, 80, 60);
1525
+ --fibery-color-highlightFgAquamarine: rgb(124, 205, 160);
1526
+ --fibery-color-highlightFgOnBgAquamarine: rgb(140, 225, 180);
1527
+ --fibery-color-highlightBgAqua: rgb(18, 73, 64);
1528
+ --fibery-color-highlightFgAqua: rgb(98, 205, 183);
1529
+ --fibery-color-highlightFgOnBgAqua: rgb(112, 222, 200);
1530
+ --fibery-color-highlightBgBlue: rgb(47, 66, 94);
1531
+ --fibery-color-highlightFgBlue: rgb(152, 189, 243);
1532
+ --fibery-color-highlightFgOnBgBlue: rgb(175, 206, 248);
1533
+ --fibery-color-highlightBgPurple: rgb(77, 58, 89);
1534
+ --fibery-color-highlightFgPurple: rgb(211, 172, 239);
1535
+ --fibery-color-highlightFgOnBgPurple: rgb(224, 190, 250);
1536
+ --fibery-color-highlightBgPink: rgb(88, 55, 75);
1537
+ --fibery-color-highlightFgPink: rgb(237, 167, 207);
1538
+ --fibery-color-highlightFgOnBgPink: rgb(249, 184, 221);
1539
+ --fibery-color-highlightBgRed: rgb(93, 55, 53);
1540
+ --fibery-color-highlightFgRed: rgb(240, 170, 164);
1541
+ --fibery-color-highlightFgOnBgRed: rgb(246, 190, 185);
1542
+ --fibery-color-highlightBgGrey: rgb(70, 64, 64);
1543
+ --fibery-color-highlightFgGrey: rgb(193, 186, 186);
1544
+ --fibery-color-highlightFgOnBgGrey: rgb(208, 202, 202);
1545
+ --fibery-color-colorPickerCssFilter: none;
1546
+ --fibery-color-mode: dark;
1547
+ --fibery-color-colorAccentBgSubtle: rgba(0, 138, 169, 0.1);
1548
+ --fibery-color-colorAccentBgMild: rgba(0, 138, 169, 0.15);
1549
+ --fibery-color-colorAccentBgMedium: rgba(0, 138, 169, 0.2);
1550
+ --fibery-color-colorAccentBgStrong: rgba(0, 138, 169, 0.3);
1551
+ --fibery-color-colorAccentBgBold: rgba(0, 138, 169, 0.35);
1552
+ --fibery-color-colorAccentBgVivid: rgba(0, 138, 169, 0.6);
1553
+ --fibery-color-colorAccentStroke: rgba(0, 138, 169, 0.25);
1554
+ --fibery-color-colorAccentStrokeHover: rgba(0, 138, 169, 0.4);
1555
+ --fibery-color-colorAccentStrokeFocus: rgba(0, 138, 169, 0.5);
1556
+ --fibery-color-colorAccentSolid: rgba(0, 138, 169, 0.8);
1557
+ --fibery-color-colorAccent: rgb(0, 136, 170);
1558
+ --fibery-color-darkenPrimary: rgb(46, 107, 126);
1559
+ --fibery-color-whiteColor: rgb(255, 253, 250);
1560
+ --fibery-color-blackColor: #1f1a18;
1561
+ --fibery-color-mainBg: #2d2623;
1562
+ --fibery-color-panelBg: rgb(26, 22, 20);
1563
+ --fibery-color-panelContentBg: rgb(26, 22, 20);
1564
+ --fibery-color-colorBgRelationContainer: rgb(26, 22, 20);
1565
+ --fibery-color-colorAI: #8056a3;
1566
+ --fibery-color-colorBgAI: rgba(128, 86, 163, 0.1);
1567
+ --fibery-color-colorBgAIFloatingLauncher: rgb(45, 40, 38);
1568
+ --fibery-color-colorBgAIFloatingPanelContent: rgb(39, 35, 33);
1569
+ --fibery-color-colorBgAISidebarContent: rgb(26, 22, 20);
1570
+ --fibery-color-pageContentBg: rgb(32, 27, 25);
1571
+ --fibery-color-colorBgPopup: rgb(45, 40, 38);
1572
+ --fibery-color-menuBg: #2d2623;
1573
+ --fibery-color-menuTextColor: rgb(224, 212, 206);
1574
+ --fibery-color-menuItemHoverColor: rgb(55, 50, 48);
1575
+ --fibery-color-menuSelectedTextColor: rgb(253, 246, 239);
1576
+ --fibery-color-menuIconColor: rgba(224, 212, 206, 0.7);
1577
+ --fibery-color-textColor: rgb(224, 212, 206);
1578
+ --fibery-color-textSelectionColor: rgba(0, 136, 170, 0.4);
1579
+ --fibery-color-accentTextColor: rgb(132, 126, 124);
1580
+ --fibery-color-disabledTextColor: rgb(117, 111, 109);
1581
+ --fibery-color-inversedTextColor: rgb(55, 50, 48);
1582
+ --fibery-color-colorTextSecondary: rgba(224, 212, 206, 0.65);
1583
+ --fibery-color-linkColor: #a6b7e3;
1584
+ --fibery-color-linkBorder: 0.5px solid rgba(166, 183, 227, 0.4);
1585
+ --fibery-color-linkHoverColor: #a6b7e3;
1586
+ --fibery-color-linkBorderHover: 0.5px solid rgba(166, 183, 227, 0.75);
1587
+ --fibery-color-codeColor: rgb(237, 150, 150);
1588
+ --fibery-color-codeBgColor: rgb(45, 40, 38);
1589
+ --fibery-color-codeBlockBgColor: rgb(45, 40, 38);
1590
+ --fibery-color-addedDiffTextColor: rgb(128, 192, 180);
1591
+ --fibery-color-removedDiffTextColor: rgb(244, 146, 147);
1592
+ --fibery-color-entityNodeColor: rgb(204, 198, 191);
1593
+ --fibery-color-entityNodeBorder: 0.5px solid rgba(204, 198, 191, 0.4);
1594
+ --fibery-color-entityNodeHoverColor: rgb(225, 218, 211);
1595
+ --fibery-color-entityNodeBorderHover: 0.5px solid rgba(225, 218, 211, 0.8);
1596
+ --fibery-color-entityNodeBgColor: rgb(39, 35, 33);
1597
+ --fibery-color-shortcutTextColor: rgb(166, 159, 157);
1598
+ --fibery-color-shortcutBorder: 1px solid rgba(132, 126, 124, 0.2);
1599
+ --fibery-color-shortcutBorderColor: rgba(132, 126, 124, 0.2);
1600
+ --fibery-color-inputBgColor: rgb(32, 27, 25);
1601
+ --fibery-color-inputDisabledBgColor: rgba(55, 50, 48, 0.3);
1602
+ --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(86, 80, 78, 0.2);
1603
+ --fibery-color-inputCopyBgColor: rgb(45, 40, 38);
1604
+ --fibery-color-inputBorderColor: 0 0 0 1px rgba(86, 80, 78, 0.7);
1605
+ --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(86, 80, 78);
1606
+ --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(117, 111, 109);
1607
+ --fibery-color-inputBorderBlendMode: lighten;
1608
+ --fibery-color-inputPlaceholderTextColor: rgb(117, 111, 109);
1609
+ --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(244, 179, 178);
1610
+ --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(244, 179, 178, 0.4);
1611
+ --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(244, 179, 178, 0.25);
1612
+ --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(244, 179, 178, 0.25);
1613
+ --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(110, 95, 0);
1614
+ --fibery-color-buttonPrimaryColor: rgb(0, 136, 170);
1615
+ --fibery-color-buttonColor: rgb(132, 126, 124);
1616
+ --fibery-color-buttonPrimaryTextColor: rgb(232, 226, 219);
1617
+ --fibery-color-checkboxColor: rgba(224, 212, 206, 0.7);
1618
+ --fibery-color-colorBorderBlockQuote: rgb(166, 159, 157);
1619
+ --fibery-color-colorBgActionsMenu: rgb(39, 35, 33);
1620
+ --fibery-color-colorBgActionsMenuItemHover: rgb(50, 45, 43);
1621
+ --fibery-color-colorBgActionsMenuItemSelected: rgba(1, 51, 63, 0.8);
1622
+ --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(7, 68, 83, 0.8);
1623
+ --fibery-color-colorBgActionsMenuItemDangerHover: rgba(225, 78, 91, 0.1);
1624
+ --fibery-color-colorBgActionsMenuItemDangerActive: rgba(225, 78, 91, 0.8);
1625
+ --fibery-color-actionMenuBg: rgb(39, 35, 33);
1626
+ --fibery-color-actionMenuInnerBg: rgb(45, 40, 38);
1627
+ --fibery-color-actionMenuHover: rgb(50, 45, 43);
1628
+ --fibery-color-actionMenuInnerHover: rgba(55, 50, 48, 0.5);
1629
+ --fibery-color-actionMenuButtonColor: rgb(32, 27, 25);
1630
+ --fibery-color-actionMenuButtonHoverColor: rgb(39, 35, 33);
1631
+ --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1632
+ --fibery-color-actionMenuSeparatorColor: rgba(255, 253, 250, 0.15);
1633
+ --fibery-color-separatorColor: rgba(255, 253, 250, 0.1);
1634
+ --fibery-color-separatorColorDimmed: rgba(255, 253, 250, 0.05);
1635
+ --fibery-color-separatorBreadcrumbsColor: rgb(86, 80, 78);
1636
+ --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(255, 253, 250, 0.05);
1637
+ --fibery-color-borderSeparator: 0.5px solid rgba(255, 253, 250, 0.1);
1638
+ --fibery-color-borderSeparatorMedium: 0.5px solid rgba(255, 253, 250, 0.15);
1639
+ --fibery-color-borderSeparatorStrong: 0.5px solid rgba(255, 253, 250, 0.25);
1640
+ --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
1641
+ --fibery-color-borderSolidSeparator: 1px solid rgba(255, 253, 250, 0.1);
1642
+ --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(255, 253, 250, 0.05);
1643
+ --fibery-color-borderSolidFilterGroup: 1px solid rgba(255, 255, 254, 0.03);
1644
+ --fibery-color-borderSolidGrid: 1px solid rgb(55, 50, 48);
1645
+ --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(65, 60, 58);
1646
+ --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
1647
+ --fibery-color-borderSolidCommentBubble: 1px solid rgb(55, 50, 48);
1648
+ --fibery-color-borderBlockQuote: 3px solid rgb(166, 159, 157);
1649
+ --fibery-color-shadowCardDefault: 0 0 0 1px rgba(86, 80, 78, 0.7), 0 1px 4px 0 rgba(27, 22, 17, 0.1);
1650
+ --fibery-color-shadowCardHover: 0 0 0 1px rgba(86, 80, 78, 0.7), 0 2px 6px 0 rgba(27, 22, 17, 0.1);
1651
+ --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(86, 80, 78, 0.7);
1652
+ --fibery-color-iconColor: rgba(224, 212, 206, 0.7);
1653
+ --fibery-color-appIconColor: rgba(253, 246, 239, 0.7);
1654
+ --fibery-color-appIconBgColor: rgba(253, 246, 239, 0.5);
1655
+ --fibery-color-mentionBgColor: rgba(65, 60, 58, 0.4);
1656
+ --fibery-color-colorBgSelectMenu: rgb(39, 35, 33);
1657
+ --fibery-color-shadowSelectMenu:
1658
+ 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);
1659
+ --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
1660
+ --fibery-color-colorBgListItemGeneralHover: rgb(45, 40, 38);
1661
+ --fibery-color-colorBgListItemGeneralFocus: rgb(55, 50, 48);
1662
+ --fibery-color-colorBgListItemGeneralSelected: rgb(1, 51, 63);
1663
+ --fibery-color-colorBgListItemGeneralSelectedHover: rgb(7, 68, 83);
1664
+ --fibery-color-colorBgListItemGeneralSelectedFocus: rgb(7, 68, 83);
1665
+ --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
1666
+ --fibery-color-colorTextListItemGeneralDisabled: rgb(117, 111, 109);
1667
+ --fibery-color-colorBgListItemGeneralSelectedDisabled: rgb(4, 58, 72);
1668
+ --fibery-color-opacityListItemGeneralDisabled: 0.4;
1669
+ --fibery-color-colorSearchSubtitle: rgb(117, 111, 109);
1670
+ --fibery-color-colorBgSearchRowHover: rgb(50, 45, 43);
1671
+ --fibery-color-colorBgSearchRowCreateHover: rgb(1, 51, 63);
1672
+ --fibery-color-opacitySearchItemDone: 0.4;
1673
+ --fibery-color-colorBgEntityBoxDefault: rgb(39, 35, 33);
1674
+ --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(50, 45, 43);
1675
+ --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(26, 22, 20, 0.05);
1676
+ --fibery-color-colorBgEntityBoxDefaultHover: rgb(45, 40, 38);
1677
+ --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(26, 22, 20, 0.1);
1678
+ --fibery-color-colorBgEntityBoxDefaultFocus: rgb(39, 35, 33);
1679
+ --fibery-color-colorOverlayEntityBoxDefaultFocus: rgb(0, 136, 170);
1680
+ --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(0, 136, 170, 0.4);
1681
+ --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(45, 40, 38);
1682
+ --fibery-color-colorOverlayEntityBoxDefaultFocusHover: rgb(0, 136, 170);
1683
+ --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(0, 136, 170, 0.6);
1684
+ --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
1685
+ --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(26, 22, 20, 0.1);
1686
+ --fibery-color-colorBgEntityBoxSelected: rgb(8, 44, 54);
1687
+ --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1688
+ --fibery-color-colorBgEntityBoxSelectedHover: rgb(8, 44, 54);
1689
+ --fibery-color-shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1690
+ --fibery-color-colorBgEntityBoxSelectedDrag: rgb(8, 44, 54);
1691
+ --fibery-color-shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1692
+ --fibery-color-opacityEntityBoxDisabled: 0.65;
1693
+ --fibery-color-opacityEntityBoxDisabledHover: 0.75;
1694
+ --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
1695
+ --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
1696
+ --fibery-color-entityCardBgColor: rgb(50, 45, 43);
1697
+ --fibery-color-entityCardSelectedColor: rgba(55, 50, 48, 0.5);
1698
+ --fibery-color-entityCardHoverColor: rgba(55, 50, 48, 0.5);
1699
+ --fibery-color-entityCardDoneColor: rgba(50, 45, 43, 0.3);
1700
+ --fibery-color-entityCardShadow: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1701
+ --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1702
+ --fibery-color-colorBgSegmentedControl: rgba(39, 35, 33, 0.8);
1703
+ --fibery-color-colorBgMenuHeaderAvatar: rgb(32, 27, 25);
1704
+ --fibery-color-shadowMenuHeaderAvatar: 0 0 0 1px rgba(117, 111, 109, 0.2);
1705
+ --fibery-color-opacityMenuItemDragged: 0.4;
1706
+ --fibery-color-colorBgMenuItemSelectedDragged: rgb(7, 68, 83);
1707
+ --fibery-color-colorTextMenuItem: rgba(224, 212, 206, 0.9);
1708
+ --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
1709
+ --fibery-color-colorBgMenuItemHover: rgb(32, 27, 25);
1710
+ --fibery-color-colorBgMenuItemFocus: rgb(50, 45, 43);
1711
+ --fibery-color-colorBgMenuItemSelected: rgb(8, 44, 54);
1712
+ --fibery-color-colorBgMenuItemSelectedHover: rgb(4, 58, 72);
1713
+ --fibery-color-colorBgPinnedFieldsLabel: rgb(166, 159, 157);
1714
+ --fibery-color-colorBgObjectEditorSeparator: rgb(224, 212, 206);
1715
+ --fibery-color-colorBgMenuItemSelectedFocused: rgb(4, 58, 72);
1716
+ --fibery-color-colorBgFieldEditorContainer: rgb(39, 35, 33);
1717
+ --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(32, 27, 25);
1718
+ --fibery-color-allowedDropColor: rgb(45, 40, 38);
1719
+ --fibery-color-relationViewBgColor: rgb(39, 35, 33);
1720
+ --fibery-color-mySpaceIconColor: rgb(129, 133, 137);
1721
+ --fibery-color-mySpaceIconBg: rgba(112, 132, 153, 0.2);
1722
+ --fibery-color-privateIconColor: rgb(116, 168, 101);
1723
+ --fibery-color-privateIconBg: rgba(116, 168, 101, 0.2);
1724
+ --fibery-color-favoritesIconColor: rgb(235, 169, 68);
1725
+ --fibery-color-favoritesIconBg: rgba(235, 169, 68, 0.2);
1726
+ --fibery-color-swatchDefault: #1fbed3;
1727
+ --fibery-color-unitBg: rgb(55, 50, 48);
1728
+ --fibery-color-unitBgHover: rgb(65, 60, 58);
1729
+ --fibery-color-colorBgBadgeNeutral: rgba(45, 40, 38, 0.8);
1730
+ --fibery-color-colorBgBadgeAccent: rgba(1, 51, 63, 0.8);
1731
+ --fibery-color-colorBgBadgeSuccess: rgb(8, 61, 53);
1732
+ --fibery-color-colorBgBadgeWarning: rgb(58, 50, 0);
1733
+ --fibery-color-colorBgBadgeError: rgb(91, 26, 32);
1734
+ --fibery-color-colorTextBadgeNeutral: rgb(166, 159, 157);
1735
+ --fibery-color-colorTextBadgeAccent: rgb(124, 189, 210);
1736
+ --fibery-color-colorTextBadgeSuccess: rgb(128, 192, 180);
1737
+ --fibery-color-colorTextBadgeWarning: rgb(227, 198, 0);
1738
+ --fibery-color-colorTextBadgeError: rgb(244, 146, 147);
1739
+ --fibery-color-badgeBgColor: rgba(121, 118, 113, 0.2);
1740
+ --fibery-color-tooltipBgColor: rgb(55, 50, 48);
1741
+ --fibery-color-todayMarkerColor: rgb(104, 33, 39);
1742
+ --fibery-color-viewBgOverlayColor: rgba(26, 22, 20, 0.6);
1743
+ --fibery-color-floatEditorMenuBg: rgb(55, 50, 48);
1744
+ --fibery-color-floatEditorActiveColor: rgb(124, 189, 210);
1745
+ --fibery-color-commentColor: rgba(248, 216, 0, 0.4);
1746
+ --fibery-color-cellBackgroundColor: rgb(32, 27, 25);
1747
+ --fibery-color-cellBackgroundHoverColor: rgba(55, 50, 48, 0.3);
1748
+ --fibery-color-cellBorderColor: rgba(117, 111, 109, 0.5);
1749
+ --fibery-color-cellPinnedBorderColor: rgba(117, 111, 109, 0.7);
1750
+ --fibery-color-tableRowWarningColor: rgba(248, 216, 0, 0.4);
1751
+ --fibery-color-errorBgColor: rgba(213, 50, 71, 0.6);
1752
+ --fibery-color-errorTextColor: rgb(244, 179, 178);
1753
+ --fibery-color-errorButtonColor: rgb(225, 78, 91);
1754
+ --fibery-color-warningBgColor: rgba(110, 95, 0, 0.6);
1755
+ --fibery-color-warningButtonColor: rgb(227, 198, 0);
1756
+ --fibery-color-infoBox: rgba(248, 216, 0, 0.2);
1757
+ --fibery-color-appCardBgColor: rgb(32, 27, 25);
1758
+ --fibery-color-appCardHoverColor: rgb(32, 27, 25);
1759
+ --fibery-color-modalBg: rgba(32, 27, 25, 0.5);
1760
+ --fibery-color-modalContentBg: rgb(39, 35, 33);
1761
+ --fibery-color-progressIconBg: rgba(255, 255, 254, 0.18);
1762
+ --fibery-color-progressIconFill: rgba(255, 255, 254, 0.59);
1763
+ --fibery-color-formBg: rgb(32, 27, 25);
1764
+ --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(26, 22, 20, 0.4);
1765
+ --fibery-color-formEditorFieldBg: rgb(45, 40, 38);
1766
+ --fibery-color-filterGroup1Bg: rgb(55, 50, 48);
1767
+ --fibery-color-filterGroup2Bg: rgb(65, 60, 58);
1768
+ --fibery-color-filterGroupBorder: rgba(255, 255, 254, 0.03);
1769
+ --fibery-color-colorBgNotificationHover: rgb(45, 40, 38);
1770
+ --fibery-color-colorBgNotificationSelected: rgb(1, 51, 63);
1771
+ --fibery-color-colorBgNotificationSelectedHover: rgb(7, 68, 83);
1772
+ --fibery-color-disabledInversedTextColor: rgba(255, 253, 250, 0.25);
1773
+ --fibery-color-success: rgb(0, 143, 125);
1774
+ --fibery-color-danger: rgb(225, 78, 91);
1775
+ --fibery-color-active: rgb(225, 78, 91);
1776
+ --fibery-color-warning: rgb(110, 95, 0);
1777
+ --fibery-color-cardBg: rgb(55, 50, 48);
1778
+ --fibery-color-selectedImageBorder: rgba(255, 255, 254, 0.59);
1779
+ --fibery-color-transparent: rgba(255, 255, 255, 0);
1780
+ --fibery-color-progressBg: rgb(243, 236, 229);
1781
+ --fibery-color-progressText: rgb(99, 94, 87);
1782
+ --fibery-color-progressFillBg: rgb(99, 94, 87);
1783
+ --fibery-color-progressFillText: rgb(255, 253, 250);
1784
+ --fibery-color-progressBarFillNeutral: rgba(117, 111, 109, 0.2);
1785
+ --fibery-color-progressBarFill: rgb(22, 152, 183);
1786
+ --fibery-color-progressBarBg: rgba(22, 152, 183, 0.25);
1787
+ --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
1788
+ --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
1789
+ --fibery-color-richTextTableBorder: rgba(255, 255, 254, 0.18);
1790
+ --fibery-color-colorBgDropLine: rgb(0, 106, 135);
1791
+ --fibery-color-viewBg: rgb(26, 22, 20);
1792
+ --fibery-color-viewSecondaryBg: rgb(32, 27, 25);
1793
+ --fibery-color-viewHighlightBg: rgb(8, 44, 54);
1794
+ --fibery-color-boardBg: rgb(26, 22, 20);
1795
+ --fibery-color-boardBgWithOpacity80: rgba(26, 22, 20, 0.8);
1796
+ --fibery-color-boardAxisBgHover: rgb(45, 40, 38);
1797
+ --fibery-color-gridHeaderBgColor: rgb(39, 35, 33);
1798
+ --fibery-color-gridHeaderHoverBgColor: rgb(45, 40, 38);
1799
+ --fibery-color-gridHeaderTextColor: rgb(166, 159, 157);
1800
+ --fibery-color-gridCellBgColor: rgb(32, 27, 25);
1801
+ --fibery-color-gridCellBorderColor: rgb(55, 50, 48);
1802
+ --fibery-color-gridDisabledCellBgColor: rgb(39, 35, 33);
1803
+ --fibery-color-gridSelectedCellBgColor: rgb(8, 44, 54);
1804
+ --fibery-color-gridHighlightedCellBgColor: rgb(4, 58, 72);
1805
+ --fibery-color-gridSelectedCellBorderColor: rgb(0, 85, 107);
1806
+ --fibery-color-gridSelectedPinnedCellBorderColor: rgb(0, 85, 107);
1807
+ --fibery-color-gridDisabledSelectedCellBgColor: rgb(4, 58, 72);
1808
+ --fibery-color-gridActiveCellBorderColor: rgb(0, 136, 170);
1809
+ --fibery-color-timelineEntityHandleColor: rgb(0, 85, 107);
1810
+ --fibery-color-timelineDependencyHoverBgColor: rgb(0, 106, 135);
1811
+ --fibery-color-timelineDependencyOverlapBgColor: rgb(213, 50, 71);
1812
+ --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(244, 146, 147);
1813
+ --fibery-color-timelineCellBgColor: rgb(26, 22, 20);
1814
+ --fibery-color-timelineCellWeekendBgColor: rgb(32, 27, 25);
1815
+ --fibery-color-timelineCellTodayBgColor: rgb(13, 32, 38);
1816
+ --fibery-color-timelineCreateEntityPlaceholderBgColor: rgb(65, 60, 58);
1817
+ --fibery-color-colorBgButtonSolidAccentDefault: rgb(0, 136, 170);
1818
+ --fibery-color-colorBgButtonSolidAccentHover: rgb(22, 152, 183);
1819
+ --fibery-color-colorBgButtonSolidNeutralDefault: rgb(224, 212, 206);
1820
+ --fibery-color-colorBgButtonSolidNeutralHover: rgb(255, 253, 250);
1821
+ --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(213, 50, 71);
1822
+ --fibery-color-colorBgButtonSolidDestructiveHover: rgb(225, 78, 91);
1823
+ --fibery-color-colorTextButtonSolidAccent: rgb(255, 253, 250);
1824
+ --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 253, 250, 0.8);
1825
+ --fibery-color-colorTextButtonSolidNeutral: rgb(32, 27, 25);
1826
+ --fibery-color-colorTextButtonSolidNeutralActive: rgba(32, 27, 25, 0.8);
1827
+ --fibery-color-colorTextButtonSolidDestructive: rgb(255, 253, 250);
1828
+ --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 253, 250, 0.8);
1829
+ --fibery-color-colorIconButtonSolidAccent: rgb(255, 253, 250);
1830
+ --fibery-color-colorIconButtonSolidNeutral: rgb(86, 80, 78);
1831
+ --fibery-color-colorIconButtonSolidDestructive: rgb(255, 253, 250);
1832
+ --fibery-color-colorBorderButtonOutlineAccentDefault: rgb(0, 106, 135);
1833
+ --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(65, 60, 58);
1834
+ --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(136, 27, 42);
1835
+ --fibery-color-colorBgButtonOutlineAccentDefault: rgb(26, 22, 20);
1836
+ --fibery-color-colorBgButtonOutlineAccentHover: rgb(8, 44, 54);
1837
+ --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(26, 22, 20);
1838
+ --fibery-color-colorBgButtonOutlineNeutralHover: rgb(45, 40, 38);
1839
+ --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(26, 22, 20);
1840
+ --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(80, 21, 27);
1841
+ --fibery-color-colorTextButtonOutlineAccent: rgb(124, 189, 210);
1842
+ --fibery-color-colorTextButtonOutlineAccentActive: rgba(124, 189, 210, 0.8);
1843
+ --fibery-color-colorTextButtonOutlineNeutral: rgb(166, 159, 157);
1844
+ --fibery-color-colorTextButtonOutlineNeutralActive: rgba(224, 212, 206, 0.8);
1845
+ --fibery-color-colorTextButtonOutlineDestructive: rgb(244, 146, 147);
1846
+ --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(244, 146, 147, 0.8);
1847
+ --fibery-color-colorIconButtonOutlineAccent: rgb(124, 189, 210);
1848
+ --fibery-color-colorIconButtonOutlineNeutral: rgb(166, 159, 157);
1849
+ --fibery-color-colorIconButtonOutlineDestructive: rgb(244, 146, 147);
1850
+ --fibery-color-colorBgButtonSoftAccentDefault: rgb(1, 51, 63);
1851
+ --fibery-color-colorBgButtonSoftAccentHover: rgb(7, 68, 83);
1852
+ --fibery-color-colorBgButtonSoftNeutralDefault: rgb(39, 35, 33);
1853
+ --fibery-color-colorBgButtonSoftNeutralHover: rgb(65, 60, 58);
1854
+ --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(80, 21, 27);
1855
+ --fibery-color-colorBgButtonSoftDestructiveHover: rgb(104, 33, 39);
1856
+ --fibery-color-colorTextButtonSoftAccent: rgb(124, 189, 210);
1857
+ --fibery-color-colorTextButtonSoftAccentActive: rgba(124, 189, 210, 0.8);
1858
+ --fibery-color-colorTextButtonSoftNeutral: rgb(166, 159, 157);
1859
+ --fibery-color-colorTextButtonSoftNeutralActive: rgba(166, 159, 157, 0.8);
1860
+ --fibery-color-colorTextButtonSoftDestructive: rgb(244, 146, 147);
1861
+ --fibery-color-colorTextButtonSoftDestructiveActive: rgba(244, 146, 147, 0.8);
1862
+ --fibery-color-colorIconButtonSoftAccent: rgb(124, 189, 210);
1863
+ --fibery-color-colorIconButtonSoftNeutral: rgb(166, 159, 157);
1864
+ --fibery-color-colorIconButtonSoftDestructive: rgb(244, 146, 147);
1865
+ --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
1866
+ --fibery-color-colorBgButtonGhostAccentHover: rgba(1, 51, 63, 0.8);
1867
+ --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
1868
+ --fibery-color-colorBgButtonGhostNeutralHover: rgba(55, 50, 48, 0.8);
1869
+ --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
1870
+ --fibery-color-colorBgButtonGhostDestructiveHover: rgb(80, 21, 27);
1871
+ --fibery-color-colorTextButtonGhostAccent: rgb(124, 189, 210);
1872
+ --fibery-color-colorTextButtonGhostAccentActive: rgba(124, 189, 210, 0.8);
1873
+ --fibery-color-colorTextButtonGhostNeutral: rgb(166, 159, 157);
1874
+ --fibery-color-colorTextButtonGhostNeutralActive: rgba(166, 159, 157, 0.8);
1875
+ --fibery-color-colorTextButtonGhostDestructive: rgb(244, 146, 147);
1876
+ --fibery-color-colorTextButtonGhostDestructiveActive: rgba(244, 146, 147, 0.8);
1877
+ --fibery-color-colorIconButtonGhostAccent: rgb(124, 189, 210);
1878
+ --fibery-color-colorIconButtonGhostNeutral: rgb(166, 159, 157);
1879
+ --fibery-color-colorIconButtonGhostDestructive: rgb(244, 146, 147);
1880
+ --fibery-color-colorBorderAccentFocusRing: rgba(0, 138, 169, 0.3);
1881
+ --fibery-color-colorBorderNeutralFocusRing: rgba(163, 157, 150, 0.3);
1882
+ --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 75, 0.3);
1883
+ --fibery-color-colorBgReactionsDefault: rgb(32, 27, 25);
1884
+ --fibery-color-colorBgReactionsHover: rgb(55, 50, 48);
1885
+ --fibery-color-colorBorderReactionsHover: rgb(117, 111, 109);
1886
+ --fibery-color-colorBgReactionsSelectedDefault: rgb(0, 106, 135);
1887
+ --fibery-color-colorBorderReactionsSelectedDefault: rgb(0, 106, 135);
1888
+ --fibery-color-colorBgReactionsSelectedHover: rgb(0, 126, 159);
1889
+ --fibery-color-colorBorderReactionsSelectedHover: rgb(0, 126, 159);
1890
+ --fibery-color-colorTextReactionsSelected: rgb(224, 212, 206);
1891
+ --fibery-color-colorBgToastDefault: rgb(26, 22, 20);
1892
+ --fibery-color-colorBgDbTabHover: rgb(45, 40, 38);
1893
+ --fibery-color-colorBgDbTabFocus: rgb(55, 50, 48);
1894
+ --fibery-color-colorBgTabHover: rgba(166, 159, 157, 0.1);
1895
+ --fibery-color-colorBgMessageContainer: rgb(39, 35, 33);
1896
+ --fibery-color-colorBgMessageContainerHover: rgb(45, 40, 38);
1897
+ --fibery-color-colorBgEntityAvatarDefault: rgb(16, 25, 28);
1898
+ --fibery-color-colorBgEntityAvatarHover: rgb(8, 44, 54);
1899
+ --fibery-color-colorTextEntityAvatarDefault: rgb(0, 106, 135);
1900
+ --fibery-color-colorTextEntityAvatarHover: rgb(0, 136, 170);
1901
+ --fibery-color-colorBgMessageHighlighted: rgb(32, 27, 25);
1902
+ --fibery-color-colorBgEditorImageZoomed: rgb(55, 50, 48);
1903
+ --fibery-color-colorMermaidPrimaryColor: rgb(86, 80, 78);
1904
+ --fibery-color-colorMermaidPrimaryBorderColor: rgb(117, 111, 109);
1905
+ --fibery-color-colorMermaidLineColor: rgb(117, 111, 109);
1906
+ --fibery-color-colorBgWhiteboard: rgb(26, 22, 20);
1907
+ --fibery-color-colorGridDotWhiteboard: rgb(55, 50, 48);
1908
+ --fibery-color-colorSelectionWhiteboardBorderEnabled: rgb(0, 106, 135);
1909
+ --fibery-color-colorHighlightWhiteboardSelection: rgb(0, 106, 135);
1910
+ --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(117, 111, 109, 0.5);
1911
+ --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(117, 111, 109, 0.5);
1912
+ --fibery-color-colorPlaceholderWhiteboardDefault: rgba(0, 106, 135, 0.2);
1913
+ --fibery-color-colorLinkPointWhiteboardDefault: rgb(0, 106, 135);
1914
+ --fibery-color-colorLinkPointWhiteboardFillDefault: #2d2623;
1915
+ --fibery-color-colorMapWhiteboardPreviewDefault: rgba(0, 106, 135, 0.4);
1916
+ --fibery-color-colorCardWhiteboardShadowDefault: rgba(166, 159, 157, 0.05);
1917
+ --fibery-color-colorCardWhiteboardBgDefault: rgb(50, 45, 43);
1918
+ --fibery-color-colorCardWhiteboardBorderDefault: rgba(224, 212, 206, 0.2);
1919
+ --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(224, 212, 206, 0.6);
1920
+ --fibery-color-colorUnitWhiteboardBgDefault: rgb(55, 50, 48);
1921
+ --fibery-color-colorUnitWhiteboardBorderDefault: rgba(224, 212, 206, 0.25);
1922
+ --fibery-color-colorSectionWhiteboardBgInactive: rgb(32, 27, 25);
1923
+ --fibery-color-colorSectionWhiteboardBorderInactive: rgb(55, 50, 48);
1924
+ --fibery-color-colorEmbedWhiteboardEditBorder: rgba(0, 112, 97, 0.9);
1925
+ --fibery-color-colorTextWhiteboardDefault: rgb(224, 212, 206);
1926
+ --fibery-color-colorTextWhiteboardDisabled: rgb(117, 111, 109);
1927
+ --fibery-color-colorTextWhiteboardAccent: rgba(26, 22, 20, 0.6);
1928
+ --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 253, 250);
1929
+ --fibery-color-instrumentsMenuBg: rgb(45, 40, 38);
1930
+ --fibery-color-instrumentsMenuShadow:
1931
+ 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);
1932
+ --fibery-color-commentBubbleBg: rgb(55, 50, 48);
1933
+ --fibery-color-commentsPanelShadow:
1934
+ 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);
1935
+ --fibery-color-searchFiltersBg: rgb(32, 27, 25);
1936
+ --fibery-color-selectedColorBorder: rgba(232, 226, 219, 0.25);
1937
+ --fibery-color-colorBgSegmentedControlDefault: rgb(26, 22, 20);
1938
+ --fibery-color-colorBgSegmentedControlActive: rgb(55, 50, 48);
1939
+ --fibery-color-colorBgSegmentedControlHover: rgb(45, 40, 38);
1940
+ --fibery-color-colorBorderSegmentedControlDefault: rgb(65, 60, 58);
1941
+ --fibery-color-colorBgBannerNeutral: rgb(39, 35, 33);
1942
+ --fibery-color-colorBgBannerPrimary: rgb(8, 44, 54);
1943
+ --fibery-color-colorBgBannerWarning: rgb(43, 36, 0);
1944
+ --fibery-color-colorBgBannerError: rgb(67, 22, 25);
1945
+ --fibery-color-colorBgBannerSuccess: rgb(11, 46, 40);
1946
+ --fibery-color-colorIconBannerNeutral: rgb(224, 212, 206);
1947
+ --fibery-color-colorIconBannerAccent: rgb(124, 189, 210);
1948
+ --fibery-color-colorIconBannerWarning: rgb(227, 198, 0);
1949
+ --fibery-color-colorIconBannerError: rgb(244, 146, 147);
1950
+ --fibery-color-colorIconBannerSuccess: rgb(128, 192, 180);
1951
+ --fibery-color-colorTextBannerNeutral: rgb(224, 212, 206);
1952
+ --fibery-color-colorTextBannerAccent: rgb(124, 189, 210);
1953
+ --fibery-color-colorTextBannerWarning: rgb(227, 198, 0);
1954
+ --fibery-color-colorTextBannerError: rgb(244, 146, 147);
1955
+ --fibery-color-colorTextBannerSuccess: rgb(128, 192, 180);
1956
+ --fibery-color-colorBgChargebeeInfoBox: rgb(26, 22, 20);
1957
+ --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 150);
1958
+ --fibery-color-colorBgErrorMessage: rgb(237, 150, 150);
1959
+ --fibery-color-colorBorderLogoGrid: rgb(45, 40, 38);
1960
+ --fibery-color-colorBorderLogoGridSubtle: rgb(45, 40, 38);
1961
+ --fibery-color-colorBorderLogoGridMedium: rgb(45, 40, 38);
1962
+ --fibery-color-colorStrokeLogoDashed: rgb(86, 80, 78);
1963
+ --fibery-color-colorBgLogoCardTransparent: rgb(32, 27, 25);
1964
+ --fibery-color-colorBgLogoCardDark: rgb(86, 80, 78);
1965
+ --fibery-color-colorBgLogoCardMedium: rgb(45, 40, 38);
1966
+ --fibery-color-colorBgSkeletonFrom: rgba(31, 26, 24, 0.05);
1967
+ --fibery-color-colorBgSkeletonTo: rgba(31, 26, 24, 0.1);
1968
+ --fibery-color-colorShadowInsetEdge: rgba(31, 26, 24, 0.05);
1969
+ --fibery-color-colorShadowBorder: rgba(31, 26, 24, 0.1);
1970
+ --fibery-color-colorShadowElevation: rgba(255, 253, 250, 0.1);
1971
+ --fibery-color-colorShadowOutline: rgba(255, 253, 250, 0.2);
1972
+ --fibery-color-colorPlaceholder: rgba(31, 26, 24, 0.4);
1973
+ --fibery-color-colorPlaceholderSubtle: rgba(31, 26, 24, 0.25);
1974
+ --fibery-color-colorBgSubtleLight: rgba(31, 26, 24, 0.05);
1975
+ --fibery-color-colorStrokeSurface: #1f1a18;
1976
+ --fibery-color-colorTextMilestone: rgba(255, 253, 250, 0.5);
1977
+ --fibery-color-colorSpinnerIcon: rgba(255, 253, 250, 0.9);
1978
+ --fibery-color-colorSpinnerBg: rgba(255, 253, 250, 0.1);
1979
+ --fibery-color-colorBgLaneSubtle: rgba(255, 253, 250, 0.05);
1980
+ --fibery-color-opacity15: 0.15;
1981
+ --fibery-color-opacity20: 0.2;
1982
+ --fibery-color-opacity25: 0.25;
1983
+ --fibery-color-opacity30: 0.3;
1984
+ --fibery-color-opacity40: 0.4;
1985
+ --fibery-color-opacity50: 0.5;
1986
+ --fibery-color-opacity60: 0.6;
1987
+ --fibery-color-opacity65: 0.65;
1988
+ --fibery-color-opacity70: 0.7;
1989
+ --fibery-color-opacity75: 0.75;
1990
+ --fibery-color-opacity80: 0.8;
1991
+ --fibery-color-opacity85: 0.85;
1992
+ --fibery-color-opacity90: 0.9;
1993
+ --fibery-color-whiteA10: rgba(31, 26, 24, 0.1);
1994
+ --fibery-color-whiteA40: rgba(31, 26, 24, 0.4);
1995
+ --fibery-color-whiteA100: #1f1a18;
1996
+ --fibery-color-colorBgFileOverlay: rgba(31, 26, 24, 0.6);
1997
+ --fibery-color-colorBgScrollFade: rgba(31, 26, 24, 0.15);
1998
+ --fibery-color-colorStrokeSelectedOutline: rgba(255, 253, 250, 0.75);
1999
+ --fibery-color-scrollbar: rgba(65, 60, 58, 0.5);
2000
+ }