@fibery/ui-kit 4.2.0 → 5.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 (898) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +10 -12
  3. package/src/antd/input-number.tsx +4 -4
  4. package/src/antd/input.tsx +1 -1
  5. package/src/apca.lc-low.test.ts +1 -3
  6. package/src/apca.test.ts +42 -43
  7. package/src/apca.ts +38 -39
  8. package/src/app-icon-with-fallback.tsx +6 -2
  9. package/src/avatar-colors.ts +71 -0
  10. package/src/avatar.tsx +2 -10
  11. package/src/banner/banner.tsx +1 -2
  12. package/src/box.tsx +26 -16
  13. package/src/button/back-button.tsx +2 -2
  14. package/src/button/make-button-colors.ts +13 -13
  15. package/src/button/select-button.tsx +2 -2
  16. package/src/canvas-colors.ts +71 -118
  17. package/src/checkbox.tsx +3 -3
  18. package/src/collapsible-section.tsx +3 -3
  19. package/src/color-filter.test.ts +13 -0
  20. package/src/color-filter.ts +26 -3
  21. package/src/color-utils.ts +9 -2
  22. package/src/command-menu/nested-command-menu.tsx +2 -2
  23. package/src/date-picker/date-range-picker-popup-content.tsx +3 -2
  24. package/src/date-picker/date-range-picker.tsx +23 -1
  25. package/src/date-picker/relative-date-picker.tsx +3 -2
  26. package/src/date-picker/single-date-picker-popup-content.tsx +3 -2
  27. package/src/date-picker/single-date-picker.tsx +19 -2
  28. package/src/design-system/alpha-coefficients.ts +235 -0
  29. package/src/design-system/alpha.ts +10 -1
  30. package/src/design-system/colors-enum.dark.neutral.test.ts +168 -168
  31. package/src/design-system/colors-enum.dark.warm.test.ts +168 -168
  32. package/src/design-system/colors-enum.light.neutral.test.ts +168 -168
  33. package/src/design-system/colors-enum.light.warm.test.ts +168 -168
  34. package/src/design-system/colors.ts +231 -154
  35. package/src/design-system/fns.avatarPlaceholder.dark.neutral.test.ts +52 -0
  36. package/src/design-system/fns.avatarPlaceholder.dark.warm.test.ts +52 -0
  37. package/src/design-system/fns.avatarPlaceholder.light.neutral.test.ts +52 -0
  38. package/src/design-system/fns.avatarPlaceholder.light.warm.test.ts +52 -0
  39. package/src/design-system/fns.enum.ts +2 -0
  40. package/src/design-system/fns.icon.ts +1 -1
  41. package/src/design-system/fns.ts +43 -13
  42. package/src/design-system/theme.test.ts +4 -6
  43. package/src/design-system/theme.ts +22 -13
  44. package/src/design-system/vars.test.ts +2 -2
  45. package/src/design-system/vars.ts +3 -3
  46. package/src/design-system.ts +3 -1
  47. package/src/dot.tsx +1 -0
  48. package/src/double-apply.ts +2 -2
  49. package/src/emoji-picker/primitives/footer.tsx +1 -1
  50. package/src/emoji-picker/utils/frequently.ts +1 -1
  51. package/src/favorites-icon.tsx +2 -2
  52. package/src/fibermoji-placeholder.tsx +23 -56
  53. package/src/fibery-brand-logo.tsx +82 -0
  54. package/src/field-container.tsx +2 -2
  55. package/src/field-type-icon.tsx +18 -18
  56. package/src/file-item/file-menu-items.tsx +1 -1
  57. package/src/file-item/file-preview-actions.tsx +1 -1
  58. package/src/format-date-from-now.ts +10 -5
  59. package/src/header-layout.tsx +41 -24
  60. package/src/highlight-colors.test.ts +1 -1
  61. package/src/highlight-colors.ts +27 -0
  62. package/src/icons/ast/appearance-auto.ts +1 -1
  63. package/src/icons/ast/architect.ts +12 -0
  64. package/src/icons/ast/arrow-back.ts +12 -0
  65. package/src/icons/ast/arrow-down.ts +12 -0
  66. package/src/icons/ast/{send-arrow.ts → arrow-send.ts} +3 -3
  67. package/src/icons/ast/arrow-up.ts +12 -0
  68. package/src/icons/ast/avatar.ts +12 -0
  69. package/src/icons/ast/backlog.ts +12 -0
  70. package/src/icons/ast/{check-circle-filled.ts → circle-check-filled.ts} +3 -3
  71. package/src/icons/ast/{check-circle.ts → circle-check.ts} +3 -3
  72. package/src/icons/ast/{error-circle-filled.ts → circle-cross-filled.ts} +3 -3
  73. package/src/icons/ast/circle-cross.ts +12 -0
  74. package/src/icons/ast/{info-circle-filled.ts → circle-info-filled.ts} +3 -3
  75. package/src/icons/ast/{info-circle.ts → circle-info.ts} +3 -3
  76. package/src/icons/ast/circle-pause.ts +12 -0
  77. package/src/icons/ast/circle-play.ts +12 -0
  78. package/src/icons/ast/comments.ts +12 -0
  79. package/src/icons/ast/credits-filled.ts +1 -1
  80. package/src/icons/ast/{add-database.ts → database-add.ts} +3 -3
  81. package/src/icons/ast/database-outline.ts +12 -0
  82. package/src/icons/ast/eye-off.ts +12 -0
  83. package/src/icons/ast/favorites-filled.ts +12 -0
  84. package/src/icons/ast/{switch-to-mention.ts → field-units-large.ts} +3 -3
  85. package/src/icons/ast/files.ts +12 -0
  86. package/src/icons/ast/{smart-folder.ts → folder-smart.ts} +3 -3
  87. package/src/icons/ast/fullscreen-mode-off.ts +12 -0
  88. package/src/icons/ast/fullscreen-mode-on.ts +1 -1
  89. package/src/icons/ast/{add-group.ts → group-add.ts} +3 -3
  90. package/src/icons/ast/{image-xmark.ts → image-error.ts} +3 -3
  91. package/src/icons/ast/index.tsx +132 -217
  92. package/src/icons/ast/{add-integration.ts → integration-add.ts} +3 -3
  93. package/src/icons/ast/integration-discourse.ts +12 -0
  94. package/src/icons/ast/integration-fibery.ts +12 -0
  95. package/src/icons/ast/integration-figma.ts +12 -0
  96. package/src/icons/ast/integration-github.ts +12 -0
  97. package/src/icons/ast/integration-gitlab.ts +12 -0
  98. package/src/icons/ast/integration-google-drive.ts +12 -0
  99. package/src/icons/ast/integration-google-map.ts +12 -0
  100. package/src/icons/ast/integration-intercom.ts +12 -0
  101. package/src/icons/ast/integration-jira.ts +12 -0
  102. package/src/icons/ast/integration-loom.ts +12 -0
  103. package/src/icons/ast/integration-miro.ts +12 -0
  104. package/src/icons/ast/integration-mixpanel.ts +12 -0
  105. package/src/icons/ast/integration-slack.ts +12 -0
  106. package/src/icons/ast/{suggest-integration.ts → integration-suggest.ts} +3 -3
  107. package/src/icons/ast/integration-twitter.ts +12 -0
  108. package/src/icons/ast/integration-unsplash.ts +12 -0
  109. package/src/icons/ast/integration-youtube.ts +12 -0
  110. package/src/icons/ast/integration-zendesk.ts +12 -0
  111. package/src/icons/ast/limits.ts +12 -0
  112. package/src/icons/ast/lock-filled.ts +12 -0
  113. package/src/icons/ast/lock.ts +1 -1
  114. package/src/icons/ast/move-down.ts +12 -0
  115. package/src/icons/ast/move-up.ts +12 -0
  116. package/src/icons/ast/open-in-panel.ts +12 -0
  117. package/src/icons/ast/open-link.ts +12 -0
  118. package/src/icons/ast/people-all.ts +12 -0
  119. package/src/icons/ast/people-group-remove.ts +12 -0
  120. package/src/icons/ast/people-group.ts +12 -0
  121. package/src/icons/ast/{invite-people.ts → people-invite.ts} +3 -3
  122. package/src/icons/ast/{remove-people.ts → people-remove.ts} +3 -3
  123. package/src/icons/ast/people-role.ts +12 -0
  124. package/src/icons/ast/people-x.ts +12 -0
  125. package/src/icons/ast/plus.ts +12 -0
  126. package/src/icons/ast/preferences.ts +12 -0
  127. package/src/icons/ast/propagate.ts +12 -0
  128. package/src/icons/ast/{add-reactions.ts → reactions-add.ts} +3 -3
  129. package/src/icons/ast/redo.ts +12 -0
  130. package/src/icons/ast/references.ts +12 -0
  131. package/src/icons/ast/richeditor-block-callout.ts +1 -1
  132. package/src/icons/ast/richeditor-block-code.ts +1 -1
  133. package/src/icons/ast/richeditor-block-embed.ts +1 -1
  134. package/src/icons/ast/richeditor-block-entity.ts +1 -1
  135. package/src/icons/ast/richeditor-block-file.ts +1 -1
  136. package/src/icons/ast/richeditor-block-h1.ts +1 -1
  137. package/src/icons/ast/richeditor-block-h2.ts +1 -1
  138. package/src/icons/ast/richeditor-block-h3.ts +1 -1
  139. package/src/icons/ast/richeditor-block-h4.ts +1 -1
  140. package/src/icons/ast/richeditor-block-mention.ts +1 -1
  141. package/src/icons/ast/richeditor-block-paragraph.ts +1 -1
  142. package/src/icons/ast/richeditor-block-quote.ts +1 -1
  143. package/src/icons/ast/richeditor-checklist-create.ts +1 -1
  144. package/src/icons/ast/richeditor-image-align-center.ts +1 -1
  145. package/src/icons/ast/richeditor-image-align-left.ts +1 -1
  146. package/src/icons/ast/richeditor-image-align-right.ts +1 -1
  147. package/src/icons/ast/richeditor-image.ts +12 -0
  148. package/src/icons/ast/richeditor-linkedhighlight-create.ts +1 -1
  149. package/src/icons/ast/richeditor-list-bullet.ts +1 -1
  150. package/src/icons/ast/richeditor-list-indent.ts +1 -1
  151. package/src/icons/ast/richeditor-list-ordered.ts +1 -1
  152. package/src/icons/ast/richeditor-list-unindent.ts +1 -1
  153. package/src/icons/ast/richeditor-mark-code.ts +1 -1
  154. package/src/icons/ast/richeditor-mark-em.ts +1 -1
  155. package/src/icons/ast/richeditor-mark-highlight.ts +1 -1
  156. package/src/icons/ast/richeditor-mark-strike.ts +1 -1
  157. package/src/icons/ast/richeditor-mark-strong.ts +1 -1
  158. package/src/icons/ast/richeditor-mark-text-background-color.ts +1 -1
  159. package/src/icons/ast/richeditor-mark-underline.ts +1 -1
  160. package/src/icons/ast/richeditor-table-create.ts +1 -1
  161. package/src/icons/ast/richeditor-video-upload.ts +1 -1
  162. package/src/icons/ast/{bolt.ts → rule.ts} +3 -3
  163. package/src/icons/ast/simple-compass.ts +1 -1
  164. package/src/icons/ast/space-add.ts +12 -0
  165. package/src/icons/ast/{move-space.ts → space-move.ts} +3 -3
  166. package/src/icons/ast/type-button.ts +1 -1
  167. package/src/icons/ast/type-checkbox.ts +1 -1
  168. package/src/icons/ast/type-date.ts +1 -1
  169. package/src/icons/ast/type-email.ts +1 -1
  170. package/src/icons/ast/type-emoji.ts +1 -1
  171. package/src/icons/ast/type-formula.ts +1 -1
  172. package/src/icons/ast/type-location.ts +1 -1
  173. package/src/icons/ast/type-lookup.ts +1 -1
  174. package/src/icons/ast/type-money.ts +1 -1
  175. package/src/icons/ast/type-multi-select.ts +1 -1
  176. package/src/icons/ast/type-number.ts +1 -1
  177. package/src/icons/ast/type-percent.ts +1 -1
  178. package/src/icons/ast/type-phone.ts +1 -1
  179. package/src/icons/ast/type-relation.ts +1 -1
  180. package/src/icons/ast/type-rich-text.ts +1 -1
  181. package/src/icons/ast/type-single-select.ts +1 -1
  182. package/src/icons/ast/type-text.ts +1 -1
  183. package/src/icons/ast/undo.ts +12 -0
  184. package/src/icons/ast/units-avatar.ts +1 -1
  185. package/src/icons/ast/units-collection.ts +1 -1
  186. package/src/icons/ast/units-counter.ts +1 -1
  187. package/src/icons/ast/units-date.ts +1 -1
  188. package/src/icons/ast/units-field-icon-button.ts +1 -1
  189. package/src/icons/ast/units-field.ts +1 -1
  190. package/src/icons/ast/units-input.ts +1 -1
  191. package/src/icons/ast/units-normal.ts +12 -0
  192. package/src/icons/ast/units-progress-bar.ts +1 -1
  193. package/src/icons/ast/units-rich-text.ts +1 -1
  194. package/src/icons/ast/units-snippet.ts +1 -1
  195. package/src/icons/ast/unlock.ts +12 -0
  196. package/src/icons/ast/{clear-value.ts → value-clear.ts} +3 -3
  197. package/src/icons/ast/view-app.ts +12 -0
  198. package/src/icons/ast/workflow.ts +12 -0
  199. package/src/icons/react/{anthropic.tsx → architect.tsx} +5 -5
  200. package/src/icons/react/arrow-back.tsx +18 -0
  201. package/src/icons/react/arrow-down.tsx +18 -0
  202. package/src/icons/react/arrow-send.tsx +18 -0
  203. package/src/icons/react/{app-wiki.tsx → arrow-up.tsx} +5 -5
  204. package/src/icons/react/avatar.tsx +18 -0
  205. package/src/icons/react/backlog.tsx +18 -0
  206. package/src/icons/react/circle-check-filled.tsx +18 -0
  207. package/src/icons/react/{add-database.tsx → circle-check.tsx} +5 -5
  208. package/src/icons/react/circle-cross-filled.tsx +18 -0
  209. package/src/icons/react/circle-cross.tsx +18 -0
  210. package/src/icons/react/circle-info-filled.tsx +18 -0
  211. package/src/icons/react/circle-info.tsx +18 -0
  212. package/src/icons/react/circle-pause.tsx +18 -0
  213. package/src/icons/react/circle-play.tsx +18 -0
  214. package/src/icons/react/comments.tsx +18 -0
  215. package/src/icons/react/database-add.tsx +18 -0
  216. package/src/icons/react/database-outline.tsx +18 -0
  217. package/src/icons/react/{chat-ai.tsx → eye-off.tsx} +5 -5
  218. package/src/icons/react/favorites-filled.tsx +18 -0
  219. package/src/icons/react/field-units-large.tsx +18 -0
  220. package/src/icons/react/{apple.tsx → files.tsx} +5 -5
  221. package/src/icons/react/folder-smart.tsx +18 -0
  222. package/src/icons/react/fullscreen-mode-off.tsx +18 -0
  223. package/src/icons/react/{app-store.tsx → group-add.tsx} +5 -5
  224. package/src/icons/react/image-error.tsx +18 -0
  225. package/src/icons/react/index.tsx +132 -217
  226. package/src/icons/react/{add-integration.tsx → integration-add.tsx} +5 -5
  227. package/src/icons/react/integration-discourse.tsx +18 -0
  228. package/src/icons/react/integration-fibery.tsx +18 -0
  229. package/src/icons/react/integration-figma.tsx +18 -0
  230. package/src/icons/react/integration-github.tsx +18 -0
  231. package/src/icons/react/integration-gitlab.tsx +18 -0
  232. package/src/icons/react/integration-google-drive.tsx +18 -0
  233. package/src/icons/react/integration-google-map.tsx +18 -0
  234. package/src/icons/react/{automations-disabled.tsx → integration-intercom.tsx} +5 -5
  235. package/src/icons/react/integration-jira.tsx +18 -0
  236. package/src/icons/react/integration-loom.tsx +18 -0
  237. package/src/icons/react/integration-miro.tsx +18 -0
  238. package/src/icons/react/{extension-references.tsx → integration-mixpanel.tsx} +5 -5
  239. package/src/icons/react/integration-slack.tsx +18 -0
  240. package/src/icons/react/integration-suggest.tsx +18 -0
  241. package/src/icons/react/integration-twitter.tsx +18 -0
  242. package/src/icons/react/integration-unsplash.tsx +18 -0
  243. package/src/icons/react/integration-youtube.tsx +18 -0
  244. package/src/icons/react/integration-zendesk.tsx +18 -0
  245. package/src/icons/react/{notifications.tsx → limits.tsx} +5 -5
  246. package/src/icons/react/lock-filled.tsx +18 -0
  247. package/src/icons/react/{add-group.tsx → move-down.tsx} +5 -5
  248. package/src/icons/react/move-up.tsx +18 -0
  249. package/src/icons/react/open-in-panel.tsx +18 -0
  250. package/src/icons/react/{ai-search.tsx → open-link.tsx} +5 -5
  251. package/src/icons/react/people-all.tsx +18 -0
  252. package/src/icons/react/people-group-remove.tsx +18 -0
  253. package/src/icons/react/people-group.tsx +18 -0
  254. package/src/icons/react/{add-reactions.tsx → people-invite.tsx} +5 -5
  255. package/src/icons/react/people-remove.tsx +18 -0
  256. package/src/icons/react/people-role.tsx +18 -0
  257. package/src/icons/react/people-x.tsx +18 -0
  258. package/src/icons/react/{chat.tsx → plus.tsx} +5 -5
  259. package/src/icons/react/preferences.tsx +18 -0
  260. package/src/icons/react/propagate.tsx +18 -0
  261. package/src/icons/react/reactions-add.tsx +18 -0
  262. package/src/icons/react/{csv.tsx → redo.tsx} +5 -5
  263. package/src/icons/react/references.tsx +18 -0
  264. package/src/icons/react/richeditor-block-callout.tsx +1 -1
  265. package/src/icons/react/richeditor-block-code.tsx +1 -1
  266. package/src/icons/react/richeditor-block-embed.tsx +1 -1
  267. package/src/icons/react/richeditor-block-entity.tsx +1 -1
  268. package/src/icons/react/richeditor-block-file.tsx +1 -1
  269. package/src/icons/react/richeditor-block-h1.tsx +1 -1
  270. package/src/icons/react/richeditor-block-h2.tsx +1 -1
  271. package/src/icons/react/richeditor-block-h3.tsx +1 -1
  272. package/src/icons/react/richeditor-block-h4.tsx +1 -1
  273. package/src/icons/react/richeditor-block-mention.tsx +1 -1
  274. package/src/icons/react/richeditor-block-paragraph.tsx +1 -1
  275. package/src/icons/react/richeditor-block-quote.tsx +1 -1
  276. package/src/icons/react/richeditor-checklist-create.tsx +1 -1
  277. package/src/icons/react/richeditor-image-align-center.tsx +1 -1
  278. package/src/icons/react/richeditor-image-align-left.tsx +1 -1
  279. package/src/icons/react/richeditor-image-align-right.tsx +1 -1
  280. package/src/icons/react/richeditor-image.tsx +18 -0
  281. package/src/icons/react/richeditor-linkedhighlight-create.tsx +1 -1
  282. package/src/icons/react/richeditor-list-bullet.tsx +1 -1
  283. package/src/icons/react/richeditor-list-indent.tsx +1 -1
  284. package/src/icons/react/richeditor-list-ordered.tsx +1 -1
  285. package/src/icons/react/richeditor-list-unindent.tsx +1 -1
  286. package/src/icons/react/richeditor-mark-code.tsx +1 -1
  287. package/src/icons/react/richeditor-mark-em.tsx +1 -1
  288. package/src/icons/react/richeditor-mark-highlight.tsx +1 -1
  289. package/src/icons/react/richeditor-mark-strike.tsx +1 -1
  290. package/src/icons/react/richeditor-mark-strong.tsx +1 -1
  291. package/src/icons/react/richeditor-mark-text-background-color.tsx +1 -1
  292. package/src/icons/react/richeditor-mark-underline.tsx +1 -1
  293. package/src/icons/react/richeditor-table-create.tsx +1 -1
  294. package/src/icons/react/richeditor-video-upload.tsx +1 -1
  295. package/src/icons/react/{back.tsx → rule.tsx} +5 -5
  296. package/src/icons/react/{ai-avatar.tsx → space-add.tsx} +5 -5
  297. package/src/icons/react/space-move.tsx +18 -0
  298. package/src/icons/react/type-button.tsx +1 -1
  299. package/src/icons/react/type-checkbox.tsx +1 -1
  300. package/src/icons/react/type-date.tsx +1 -1
  301. package/src/icons/react/type-email.tsx +1 -1
  302. package/src/icons/react/type-emoji.tsx +1 -1
  303. package/src/icons/react/type-formula.tsx +1 -1
  304. package/src/icons/react/type-location.tsx +1 -1
  305. package/src/icons/react/type-lookup.tsx +1 -1
  306. package/src/icons/react/type-money.tsx +1 -1
  307. package/src/icons/react/type-multi-select.tsx +1 -1
  308. package/src/icons/react/type-number.tsx +1 -1
  309. package/src/icons/react/type-percent.tsx +1 -1
  310. package/src/icons/react/type-phone.tsx +1 -1
  311. package/src/icons/react/type-relation.tsx +1 -1
  312. package/src/icons/react/type-rich-text.tsx +1 -1
  313. package/src/icons/react/type-single-select.tsx +1 -1
  314. package/src/icons/react/type-text.tsx +1 -1
  315. package/src/icons/react/{bolt.tsx → undo.tsx} +5 -5
  316. package/src/icons/react/units-avatar.tsx +1 -1
  317. package/src/icons/react/units-collection.tsx +1 -1
  318. package/src/icons/react/units-counter.tsx +1 -1
  319. package/src/icons/react/units-date.tsx +1 -1
  320. package/src/icons/react/units-field-icon-button.tsx +1 -1
  321. package/src/icons/react/units-field.tsx +1 -1
  322. package/src/icons/react/units-input.tsx +1 -1
  323. package/src/icons/react/units-normal.tsx +18 -0
  324. package/src/icons/react/units-progress-bar.tsx +1 -1
  325. package/src/icons/react/units-rich-text.tsx +1 -1
  326. package/src/icons/react/units-snippet.tsx +1 -1
  327. package/src/icons/react/unlock.tsx +18 -0
  328. package/src/icons/react/value-clear.tsx +18 -0
  329. package/src/icons/react/view-app.tsx +18 -0
  330. package/src/icons/react/workflow.tsx +18 -0
  331. package/src/icons/svg/appearance-auto.svg +1 -1
  332. package/src/icons/svg/{arrow-bottom.svg → arrow-down.svg} +1 -1
  333. package/src/icons/svg/arrow-forward.svg +1 -1
  334. package/src/icons/svg/arrow-left.svg +1 -1
  335. package/src/icons/svg/arrow-right.svg +1 -1
  336. package/src/icons/svg/{arrow-top.svg → arrow-up.svg} +1 -1
  337. package/src/icons/svg/asterisk.svg +2 -2
  338. package/src/icons/svg/{automations-error.svg → circle-cross.svg} +1 -1
  339. package/src/icons/svg/{automations-not-started.svg → circle-pause.svg} +1 -1
  340. package/src/icons/svg/{automations-in-progress.svg → circle-play.svg} +1 -1
  341. package/src/icons/svg/collapse-all-horizontal.svg +1 -1
  342. package/src/icons/svg/collapse-all.svg +1 -1
  343. package/src/icons/svg/credits-filled.svg +1 -1
  344. package/src/icons/svg/entity-create.svg +1 -1
  345. package/src/icons/svg/expand-all-horizontal.svg +1 -1
  346. package/src/icons/svg/fullscreen-mode-on.svg +2 -3
  347. package/src/icons/svg/go-to.svg +1 -1
  348. package/src/icons/svg/integration-unsplash.svg +3 -0
  349. package/src/icons/svg/layout-double.svg +1 -1
  350. package/src/icons/svg/layout-single.svg +1 -1
  351. package/src/icons/svg/limits.svg +3 -0
  352. package/src/icons/svg/lock-filled.svg +4 -0
  353. package/src/icons/svg/lock.svg +5 -4
  354. package/src/icons/svg/page-regular-mode.svg +3 -3
  355. package/src/icons/svg/page-wide-mode.svg +3 -3
  356. package/src/icons/svg/{user-group.svg → people-group.svg} +1 -1
  357. package/src/icons/svg/{user-role.svg → people-role.svg} +1 -1
  358. package/src/icons/svg/{richeditor/list/indent.svg → richeditor-list-indent.svg} +1 -1
  359. package/src/icons/svg/richeditor-mark-code.svg +5 -0
  360. package/src/icons/svg/richeditor-mark-em.svg +3 -0
  361. package/src/icons/svg/richeditor-mark-highlight.svg +3 -0
  362. package/src/icons/svg/richeditor-mark-strike.svg +3 -0
  363. package/src/icons/svg/richeditor-mark-strong.svg +3 -0
  364. package/src/icons/svg/simple-compass.svg +2 -2
  365. package/src/icons/svg/space-app.svg +1 -1
  366. package/src/icons/svg/space-generate.svg +1 -1
  367. package/src/icons/svg/space-scratch.svg +1 -1
  368. package/src/icons/svg/space-template.svg +1 -1
  369. package/src/icons/svg/value-edit.svg +1 -1
  370. package/src/icons/svg/view-app.svg +6 -0
  371. package/src/icons/svg/view-gantt.svg +3 -3
  372. package/src/icons/svg/warning-triangle-filled.svg +1 -1
  373. package/src/images-gallery/slide-buttons.tsx +3 -3
  374. package/src/indicator.tsx +87 -0
  375. package/src/mobile-drawer.tsx +104 -0
  376. package/src/number-input/types.ts +1 -1
  377. package/src/palettes/common.ts +3 -3
  378. package/src/palettes/diff-colors.test.ts +134 -0
  379. package/src/palettes/diff-colors.ts +135 -1
  380. package/src/palettes/inspect.canvas-colors.test.ts +63 -63
  381. package/src/palettes/inspect.defs.colors.neutral-arch.test.ts +196 -64
  382. package/src/palettes/inspect.defs.colors.neutral-user.test.ts +196 -64
  383. package/src/palettes/inspect.defs.colors.warm-arch.test.ts +196 -64
  384. package/src/palettes/inspect.defs.colors.warm-user.test.ts +196 -64
  385. package/src/palettes/show-colors.test.ts +3 -3
  386. package/src/palettes/testkit.test.ts +6 -0
  387. package/src/palettes/testkit.ts +78 -22
  388. package/src/phone.ts +27 -0
  389. package/src/reactions/reaction-picker.tsx +3 -3
  390. package/src/rich-text-embed-error.tsx +2 -2
  391. package/src/root-theme-provider.test.tsx +2 -3
  392. package/src/select/select-in-popover.tsx +41 -25
  393. package/src/select/util.ts +1 -1
  394. package/src/thematic.tsx +10 -9
  395. package/src/theme-provider.test.tsx +18 -18
  396. package/src/theme-provider.tsx +3 -7
  397. package/src/theme-settings-core.ts +118 -0
  398. package/src/theme-settings.ts +2 -117
  399. package/src/theme-snapshots.test.ts +6 -7
  400. package/src/theming.build.ts +21 -15
  401. package/src/theming.generated.css +2162 -2034
  402. package/src/theming.generated.ts +2701 -2549
  403. package/src/toast/toast.tsx +1 -1
  404. package/src/toggle-button/round-toggle-button.tsx +28 -4
  405. package/src/toggle-button/toggle-button.tsx +72 -24
  406. package/src/toggle-on-off.tsx +0 -9
  407. package/src/use-is-phone.tsx +3 -27
  408. package/vitest.config.ts +1 -0
  409. package/src/icons/ast/ai-avatar.ts +0 -12
  410. package/src/icons/ast/ai-search.ts +0 -12
  411. package/src/icons/ast/anthropic.ts +0 -12
  412. package/src/icons/ast/app-details.ts +0 -12
  413. package/src/icons/ast/app-store-one-color.ts +0 -12
  414. package/src/icons/ast/app-store.ts +0 -12
  415. package/src/icons/ast/app-templates.ts +0 -12
  416. package/src/icons/ast/app-webhooks.ts +0 -12
  417. package/src/icons/ast/app-wiki.ts +0 -12
  418. package/src/icons/ast/apple.ts +0 -12
  419. package/src/icons/ast/arrow-bottom.ts +0 -12
  420. package/src/icons/ast/arrow-top.ts +0 -12
  421. package/src/icons/ast/automations-cancelled.ts +0 -12
  422. package/src/icons/ast/automations-disabled.ts +0 -12
  423. package/src/icons/ast/automations-error.ts +0 -12
  424. package/src/icons/ast/automations-in-progress.ts +0 -12
  425. package/src/icons/ast/automations-not-started.ts +0 -12
  426. package/src/icons/ast/automations-success.ts +0 -12
  427. package/src/icons/ast/back.ts +0 -12
  428. package/src/icons/ast/backlog-icon.ts +0 -12
  429. package/src/icons/ast/batch-actions-icon.ts +0 -12
  430. package/src/icons/ast/bell-filled.ts +0 -12
  431. package/src/icons/ast/chat-ai.ts +0 -12
  432. package/src/icons/ast/chat.ts +0 -12
  433. package/src/icons/ast/clean.ts +0 -12
  434. package/src/icons/ast/color-coding-filled.ts +0 -12
  435. package/src/icons/ast/create.ts +0 -12
  436. package/src/icons/ast/cross-circle.ts +0 -12
  437. package/src/icons/ast/csv.ts +0 -12
  438. package/src/icons/ast/database-off.ts +0 -12
  439. package/src/icons/ast/database-stroke.ts +0 -12
  440. package/src/icons/ast/demo.ts +0 -12
  441. package/src/icons/ast/dependency.ts +0 -12
  442. package/src/icons/ast/dividers.ts +0 -12
  443. package/src/icons/ast/document.ts +0 -12
  444. package/src/icons/ast/double-arrow-left.ts +0 -12
  445. package/src/icons/ast/double-arrow-right.ts +0 -12
  446. package/src/icons/ast/double-line.ts +0 -12
  447. package/src/icons/ast/drag-block-handle-single.ts +0 -12
  448. package/src/icons/ast/edit-value.ts +0 -12
  449. package/src/icons/ast/extension-assignments.ts +0 -12
  450. package/src/icons/ast/extension-avatar.ts +0 -12
  451. package/src/icons/ast/extension-comments.ts +0 -12
  452. package/src/icons/ast/extension-files.ts +0 -12
  453. package/src/icons/ast/extension-references.ts +0 -12
  454. package/src/icons/ast/extension-workflow.ts +0 -12
  455. package/src/icons/ast/favorites-checked.ts +0 -12
  456. package/src/icons/ast/fibery-desktop-app.ts +0 -12
  457. package/src/icons/ast/field-unit.ts +0 -12
  458. package/src/icons/ast/figma.ts +0 -12
  459. package/src/icons/ast/file-broken.ts +0 -12
  460. package/src/icons/ast/fullscreen-mode-off-icon.ts +0 -12
  461. package/src/icons/ast/fullscreen-mode-on-icon.ts +0 -12
  462. package/src/icons/ast/gauge.ts +0 -12
  463. package/src/icons/ast/github.ts +0 -12
  464. package/src/icons/ast/gitlab.ts +0 -12
  465. package/src/icons/ast/globe.ts +0 -12
  466. package/src/icons/ast/google-drive.ts +0 -12
  467. package/src/icons/ast/google-map.ts +0 -12
  468. package/src/icons/ast/hide.ts +0 -12
  469. package/src/icons/ast/integrations-integration-discourse-color.ts +0 -12
  470. package/src/icons/ast/integrations-integration-intercom-color.ts +0 -12
  471. package/src/icons/ast/integrations-integration-slack-color.ts +0 -12
  472. package/src/icons/ast/integrations-integration-zendesk-color.ts +0 -12
  473. package/src/icons/ast/intercom.ts +0 -12
  474. package/src/icons/ast/jira.ts +0 -12
  475. package/src/icons/ast/left-panel.ts +0 -12
  476. package/src/icons/ast/level-plus.ts +0 -12
  477. package/src/icons/ast/lock-outline.ts +0 -12
  478. package/src/icons/ast/loom.ts +0 -12
  479. package/src/icons/ast/loupe-zoom.ts +0 -12
  480. package/src/icons/ast/many-people.ts +0 -12
  481. package/src/icons/ast/message-plus-square.ts +0 -12
  482. package/src/icons/ast/miro.ts +0 -12
  483. package/src/icons/ast/mixpanel.ts +0 -12
  484. package/src/icons/ast/move-bottom.ts +0 -12
  485. package/src/icons/ast/move-top.ts +0 -12
  486. package/src/icons/ast/network-add.ts +0 -12
  487. package/src/icons/ast/network.ts +0 -12
  488. package/src/icons/ast/notifications.ts +0 -12
  489. package/src/icons/ast/open-ai.ts +0 -12
  490. package/src/icons/ast/open-as-page.ts +0 -12
  491. package/src/icons/ast/popup.ts +0 -12
  492. package/src/icons/ast/posts.ts +0 -12
  493. package/src/icons/ast/quick-filter-personal.ts +0 -12
  494. package/src/icons/ast/quick-filter.ts +0 -12
  495. package/src/icons/ast/reply.ts +0 -12
  496. package/src/icons/ast/restore.ts +0 -12
  497. package/src/icons/ast/richeditor-actions-more.ts +0 -12
  498. package/src/icons/ast/richeditor-comment-create.ts +0 -12
  499. package/src/icons/ast/richeditor-entity-link-create.ts +0 -12
  500. package/src/icons/ast/richeditor-history-redo.ts +0 -12
  501. package/src/icons/ast/richeditor-history-undo.ts +0 -12
  502. package/src/icons/ast/richeditor-image-upload.ts +0 -12
  503. package/src/icons/ast/richeditor-image-wrap-center.ts +0 -12
  504. package/src/icons/ast/richeditor-image-wrap-left.ts +0 -12
  505. package/src/icons/ast/richeditor-image-wrap-right.ts +0 -12
  506. package/src/icons/ast/richeditor-image-zoom.ts +0 -12
  507. package/src/icons/ast/richeditor-link-create.ts +0 -12
  508. package/src/icons/ast/richeditor-open-link.ts +0 -12
  509. package/src/icons/ast/richeditor-unlink.ts +0 -12
  510. package/src/icons/ast/right-panel.ts +0 -12
  511. package/src/icons/ast/rule-scheduled.ts +0 -12
  512. package/src/icons/ast/settings-off.ts +0 -12
  513. package/src/icons/ast/shared.ts +0 -12
  514. package/src/icons/ast/sidebar-fields-opened.ts +0 -12
  515. package/src/icons/ast/sidebar-fields.ts +0 -12
  516. package/src/icons/ast/sidebar.ts +0 -12
  517. package/src/icons/ast/slack-icon.ts +0 -12
  518. package/src/icons/ast/slack.ts +0 -12
  519. package/src/icons/ast/slide-menu-close.ts +0 -12
  520. package/src/icons/ast/slide-menu-open.ts +0 -12
  521. package/src/icons/ast/sort-on-bottom.ts +0 -12
  522. package/src/icons/ast/sort-on-top.ts +0 -12
  523. package/src/icons/ast/space-list.ts +0 -12
  524. package/src/icons/ast/success.ts +0 -12
  525. package/src/icons/ast/template.ts +0 -12
  526. package/src/icons/ast/thumbs-down.ts +0 -12
  527. package/src/icons/ast/thumbs-up.ts +0 -12
  528. package/src/icons/ast/twitter.ts +0 -12
  529. package/src/icons/ast/type-boolean.ts +0 -12
  530. package/src/icons/ast/type-function.ts +0 -12
  531. package/src/icons/ast/type-id.ts +0 -12
  532. package/src/icons/ast/type-rule.ts +0 -12
  533. package/src/icons/ast/type-url.ts +0 -12
  534. package/src/icons/ast/units-db-badge-abbr.ts +0 -12
  535. package/src/icons/ast/units-db-badge-full.ts +0 -12
  536. package/src/icons/ast/units-db-icon.ts +0 -12
  537. package/src/icons/ast/unlock-outline.ts +0 -12
  538. package/src/icons/ast/upgrade.ts +0 -12
  539. package/src/icons/ast/user-check.ts +0 -12
  540. package/src/icons/ast/user-group-remove.ts +0 -12
  541. package/src/icons/ast/user-group.ts +0 -12
  542. package/src/icons/ast/user-role.ts +0 -12
  543. package/src/icons/ast/user-x.ts +0 -12
  544. package/src/icons/ast/windows.ts +0 -12
  545. package/src/icons/ast/workspace-map.ts +0 -12
  546. package/src/icons/ast/youtube.ts +0 -12
  547. package/src/icons/ast/zoom-in.ts +0 -12
  548. package/src/icons/ast/zoom-out.ts +0 -12
  549. package/src/icons/react/app-details.tsx +0 -18
  550. package/src/icons/react/app-store-one-color.tsx +0 -18
  551. package/src/icons/react/app-templates.tsx +0 -18
  552. package/src/icons/react/app-webhooks.tsx +0 -18
  553. package/src/icons/react/arrow-bottom.tsx +0 -18
  554. package/src/icons/react/arrow-top.tsx +0 -18
  555. package/src/icons/react/automations-cancelled.tsx +0 -18
  556. package/src/icons/react/automations-error.tsx +0 -18
  557. package/src/icons/react/automations-in-progress.tsx +0 -18
  558. package/src/icons/react/automations-not-started.tsx +0 -18
  559. package/src/icons/react/automations-success.tsx +0 -18
  560. package/src/icons/react/backlog-icon.tsx +0 -18
  561. package/src/icons/react/batch-actions-icon.tsx +0 -18
  562. package/src/icons/react/bell-filled.tsx +0 -18
  563. package/src/icons/react/check-circle-filled.tsx +0 -18
  564. package/src/icons/react/check-circle.tsx +0 -18
  565. package/src/icons/react/clean.tsx +0 -18
  566. package/src/icons/react/clear-value.tsx +0 -18
  567. package/src/icons/react/color-coding-filled.tsx +0 -18
  568. package/src/icons/react/create.tsx +0 -18
  569. package/src/icons/react/cross-circle.tsx +0 -18
  570. package/src/icons/react/database-off.tsx +0 -18
  571. package/src/icons/react/database-stroke.tsx +0 -18
  572. package/src/icons/react/demo.tsx +0 -18
  573. package/src/icons/react/dependency.tsx +0 -18
  574. package/src/icons/react/dividers.tsx +0 -18
  575. package/src/icons/react/document.tsx +0 -18
  576. package/src/icons/react/double-arrow-left.tsx +0 -18
  577. package/src/icons/react/double-arrow-right.tsx +0 -18
  578. package/src/icons/react/double-line.tsx +0 -18
  579. package/src/icons/react/drag-block-handle-single.tsx +0 -18
  580. package/src/icons/react/edit-value.tsx +0 -18
  581. package/src/icons/react/error-circle-filled.tsx +0 -18
  582. package/src/icons/react/extension-assignments.tsx +0 -18
  583. package/src/icons/react/extension-avatar.tsx +0 -18
  584. package/src/icons/react/extension-comments.tsx +0 -18
  585. package/src/icons/react/extension-files.tsx +0 -18
  586. package/src/icons/react/extension-workflow.tsx +0 -18
  587. package/src/icons/react/favorites-checked.tsx +0 -18
  588. package/src/icons/react/fibery-desktop-app.tsx +0 -18
  589. package/src/icons/react/field-unit.tsx +0 -18
  590. package/src/icons/react/figma.tsx +0 -18
  591. package/src/icons/react/file-broken.tsx +0 -18
  592. package/src/icons/react/fullscreen-mode-off-icon.tsx +0 -18
  593. package/src/icons/react/fullscreen-mode-on-icon.tsx +0 -18
  594. package/src/icons/react/gauge.tsx +0 -18
  595. package/src/icons/react/github.tsx +0 -18
  596. package/src/icons/react/gitlab.tsx +0 -18
  597. package/src/icons/react/globe.tsx +0 -18
  598. package/src/icons/react/google-drive.tsx +0 -18
  599. package/src/icons/react/google-map.tsx +0 -18
  600. package/src/icons/react/hide.tsx +0 -18
  601. package/src/icons/react/image-xmark.tsx +0 -18
  602. package/src/icons/react/info-circle-filled.tsx +0 -18
  603. package/src/icons/react/info-circle.tsx +0 -18
  604. package/src/icons/react/integrations-integration-discourse-color.tsx +0 -18
  605. package/src/icons/react/integrations-integration-intercom-color.tsx +0 -18
  606. package/src/icons/react/integrations-integration-slack-color.tsx +0 -18
  607. package/src/icons/react/integrations-integration-zendesk-color.tsx +0 -18
  608. package/src/icons/react/intercom.tsx +0 -18
  609. package/src/icons/react/invite-people.tsx +0 -18
  610. package/src/icons/react/jira.tsx +0 -18
  611. package/src/icons/react/left-panel.tsx +0 -18
  612. package/src/icons/react/level-plus.tsx +0 -18
  613. package/src/icons/react/lock-outline.tsx +0 -18
  614. package/src/icons/react/loom.tsx +0 -18
  615. package/src/icons/react/loupe-zoom.tsx +0 -18
  616. package/src/icons/react/many-people.tsx +0 -18
  617. package/src/icons/react/message-plus-square.tsx +0 -18
  618. package/src/icons/react/miro.tsx +0 -18
  619. package/src/icons/react/mixpanel.tsx +0 -18
  620. package/src/icons/react/move-bottom.tsx +0 -18
  621. package/src/icons/react/move-space.tsx +0 -18
  622. package/src/icons/react/move-top.tsx +0 -18
  623. package/src/icons/react/network-add.tsx +0 -18
  624. package/src/icons/react/network.tsx +0 -18
  625. package/src/icons/react/open-ai.tsx +0 -18
  626. package/src/icons/react/open-as-page.tsx +0 -18
  627. package/src/icons/react/popup.tsx +0 -18
  628. package/src/icons/react/posts.tsx +0 -18
  629. package/src/icons/react/quick-filter-personal.tsx +0 -18
  630. package/src/icons/react/quick-filter.tsx +0 -18
  631. package/src/icons/react/remove-people.tsx +0 -18
  632. package/src/icons/react/reply.tsx +0 -18
  633. package/src/icons/react/restore.tsx +0 -18
  634. package/src/icons/react/richeditor-actions-more.tsx +0 -18
  635. package/src/icons/react/richeditor-comment-create.tsx +0 -18
  636. package/src/icons/react/richeditor-entity-link-create.tsx +0 -18
  637. package/src/icons/react/richeditor-history-redo.tsx +0 -18
  638. package/src/icons/react/richeditor-history-undo.tsx +0 -18
  639. package/src/icons/react/richeditor-image-upload.tsx +0 -18
  640. package/src/icons/react/richeditor-image-wrap-center.tsx +0 -18
  641. package/src/icons/react/richeditor-image-wrap-left.tsx +0 -18
  642. package/src/icons/react/richeditor-image-wrap-right.tsx +0 -18
  643. package/src/icons/react/richeditor-image-zoom.tsx +0 -18
  644. package/src/icons/react/richeditor-link-create.tsx +0 -18
  645. package/src/icons/react/richeditor-open-link.tsx +0 -18
  646. package/src/icons/react/richeditor-unlink.tsx +0 -18
  647. package/src/icons/react/right-panel.tsx +0 -18
  648. package/src/icons/react/rule-scheduled.tsx +0 -18
  649. package/src/icons/react/send-arrow.tsx +0 -18
  650. package/src/icons/react/settings-off.tsx +0 -18
  651. package/src/icons/react/shared.tsx +0 -18
  652. package/src/icons/react/sidebar-fields-opened.tsx +0 -18
  653. package/src/icons/react/sidebar-fields.tsx +0 -18
  654. package/src/icons/react/sidebar.tsx +0 -18
  655. package/src/icons/react/slack-icon.tsx +0 -18
  656. package/src/icons/react/slack.tsx +0 -18
  657. package/src/icons/react/slide-menu-close.tsx +0 -18
  658. package/src/icons/react/slide-menu-open.tsx +0 -18
  659. package/src/icons/react/smart-folder.tsx +0 -18
  660. package/src/icons/react/sort-on-bottom.tsx +0 -18
  661. package/src/icons/react/sort-on-top.tsx +0 -18
  662. package/src/icons/react/space-list.tsx +0 -18
  663. package/src/icons/react/success.tsx +0 -18
  664. package/src/icons/react/suggest-integration.tsx +0 -18
  665. package/src/icons/react/switch-to-mention.tsx +0 -18
  666. package/src/icons/react/template.tsx +0 -18
  667. package/src/icons/react/thumbs-down.tsx +0 -18
  668. package/src/icons/react/thumbs-up.tsx +0 -18
  669. package/src/icons/react/twitter.tsx +0 -18
  670. package/src/icons/react/type-boolean.tsx +0 -18
  671. package/src/icons/react/type-function.tsx +0 -18
  672. package/src/icons/react/type-id.tsx +0 -18
  673. package/src/icons/react/type-rule.tsx +0 -18
  674. package/src/icons/react/type-url.tsx +0 -18
  675. package/src/icons/react/units-db-badge-abbr.tsx +0 -18
  676. package/src/icons/react/units-db-badge-full.tsx +0 -18
  677. package/src/icons/react/units-db-icon.tsx +0 -18
  678. package/src/icons/react/unlock-outline.tsx +0 -18
  679. package/src/icons/react/upgrade.tsx +0 -18
  680. package/src/icons/react/user-check.tsx +0 -18
  681. package/src/icons/react/user-group-remove.tsx +0 -18
  682. package/src/icons/react/user-group.tsx +0 -18
  683. package/src/icons/react/user-role.tsx +0 -18
  684. package/src/icons/react/user-x.tsx +0 -18
  685. package/src/icons/react/windows.tsx +0 -18
  686. package/src/icons/react/workspace-map.tsx +0 -18
  687. package/src/icons/react/youtube.tsx +0 -18
  688. package/src/icons/react/zoom-in.tsx +0 -18
  689. package/src/icons/react/zoom-out.tsx +0 -18
  690. package/src/icons/svg/ai-avatar.svg +0 -3
  691. package/src/icons/svg/ai-search.svg +0 -3
  692. package/src/icons/svg/anthropic.svg +0 -3
  693. package/src/icons/svg/app-store-one-color.svg +0 -4
  694. package/src/icons/svg/app-store.svg +0 -4
  695. package/src/icons/svg/app-webhooks.svg +0 -2
  696. package/src/icons/svg/app-wiki.svg +0 -2
  697. package/src/icons/svg/apple.svg +0 -4
  698. package/src/icons/svg/automations-cancelled.svg +0 -3
  699. package/src/icons/svg/automations-disabled.svg +0 -3
  700. package/src/icons/svg/automations-success.svg +0 -3
  701. package/src/icons/svg/batch-actions-icon.svg +0 -4
  702. package/src/icons/svg/bell-filled.svg +0 -4
  703. package/src/icons/svg/chat-ai.svg +0 -5
  704. package/src/icons/svg/chat.svg +0 -3
  705. package/src/icons/svg/clean.svg +0 -6
  706. package/src/icons/svg/color-coding-filled.svg +0 -3
  707. package/src/icons/svg/create.svg +0 -3
  708. package/src/icons/svg/cross-circle.svg +0 -4
  709. package/src/icons/svg/csv.svg +0 -3
  710. package/src/icons/svg/database-off.svg +0 -3
  711. package/src/icons/svg/demo.svg +0 -2
  712. package/src/icons/svg/dependency.svg +0 -3
  713. package/src/icons/svg/document.svg +0 -4
  714. package/src/icons/svg/double-arrow-left.svg +0 -2
  715. package/src/icons/svg/double-arrow-right.svg +0 -2
  716. package/src/icons/svg/double-line.svg +0 -3
  717. package/src/icons/svg/drag-block-handle-single.svg +0 -5
  718. package/src/icons/svg/edit-value.svg +0 -5
  719. package/src/icons/svg/extension/assignments.svg +0 -7
  720. package/src/icons/svg/file-broken.svg +0 -3
  721. package/src/icons/svg/fullscreen-mode-on-icon.svg +0 -3
  722. package/src/icons/svg/gauge.svg +0 -5
  723. package/src/icons/svg/globe.svg +0 -3
  724. package/src/icons/svg/integrations/integration-slack-color.svg +0 -10
  725. package/src/icons/svg/intercom.svg +0 -3
  726. package/src/icons/svg/left-panel.svg +0 -11
  727. package/src/icons/svg/level-plus.svg +0 -4
  728. package/src/icons/svg/lock-outline.svg +0 -5
  729. package/src/icons/svg/loupe-zoom.svg +0 -3
  730. package/src/icons/svg/message-plus-square.svg +0 -4
  731. package/src/icons/svg/network-add.svg +0 -5
  732. package/src/icons/svg/notifications.svg +0 -2
  733. package/src/icons/svg/open-ai.svg +0 -3
  734. package/src/icons/svg/open-as-page.svg +0 -3
  735. package/src/icons/svg/posts.svg +0 -3
  736. package/src/icons/svg/quick-filter-personal.svg +0 -3
  737. package/src/icons/svg/quick-filter.svg +0 -3
  738. package/src/icons/svg/reply.svg +0 -2
  739. package/src/icons/svg/restore.svg +0 -2
  740. package/src/icons/svg/richeditor/actions/more.svg +0 -2
  741. package/src/icons/svg/richeditor/comment/create.svg +0 -5
  742. package/src/icons/svg/richeditor/entity-link/create.svg +0 -2
  743. package/src/icons/svg/richeditor/image/wrap-center.svg +0 -2
  744. package/src/icons/svg/richeditor/image/wrap-left.svg +0 -2
  745. package/src/icons/svg/richeditor/image/wrap-right.svg +0 -2
  746. package/src/icons/svg/richeditor/image/zoom.svg +0 -5
  747. package/src/icons/svg/richeditor/link/create.svg +0 -9
  748. package/src/icons/svg/richeditor/mark/code.svg +0 -5
  749. package/src/icons/svg/richeditor/mark/em.svg +0 -3
  750. package/src/icons/svg/richeditor/mark/highlight.svg +0 -3
  751. package/src/icons/svg/richeditor/mark/strike.svg +0 -3
  752. package/src/icons/svg/richeditor/mark/strong.svg +0 -3
  753. package/src/icons/svg/richeditor/unlink.svg +0 -10
  754. package/src/icons/svg/right-panel.svg +0 -11
  755. package/src/icons/svg/rule-scheduled.svg +0 -5
  756. package/src/icons/svg/settings-off.svg +0 -4
  757. package/src/icons/svg/shared.svg +0 -7
  758. package/src/icons/svg/sidebar-fields-opened.svg +0 -3
  759. package/src/icons/svg/sidebar-fields.svg +0 -6
  760. package/src/icons/svg/sidebar.svg +0 -2
  761. package/src/icons/svg/slack-icon.svg +0 -3
  762. package/src/icons/svg/slide-menu-close.svg +0 -4
  763. package/src/icons/svg/slide-menu-open.svg +0 -4
  764. package/src/icons/svg/sort-on-bottom.svg +0 -4
  765. package/src/icons/svg/sort-on-top.svg +0 -4
  766. package/src/icons/svg/space-list.svg +0 -4
  767. package/src/icons/svg/success.svg +0 -4
  768. package/src/icons/svg/template.svg +0 -3
  769. package/src/icons/svg/thumbs-down.svg +0 -3
  770. package/src/icons/svg/thumbs-up.svg +0 -3
  771. package/src/icons/svg/type/boolean.svg +0 -2
  772. package/src/icons/svg/type/function.svg +0 -2
  773. package/src/icons/svg/type/id.svg +0 -3
  774. package/src/icons/svg/type/rule.svg +0 -2
  775. package/src/icons/svg/type/url.svg +0 -9
  776. package/src/icons/svg/units/db-badge-abbr.svg +0 -4
  777. package/src/icons/svg/units/db-badge-full.svg +0 -4
  778. package/src/icons/svg/units/db-icon.svg +0 -4
  779. package/src/icons/svg/upgrade.svg +0 -2
  780. package/src/icons/svg/user-check.svg +0 -3
  781. package/src/icons/svg/windows.svg +0 -15
  782. package/src/icons/svg/workspace-map.svg +0 -3
  783. package/src/icons/svg/zoom-out.svg +0 -7
  784. package/src/notification-dot.tsx +0 -23
  785. /package/src/icons/svg/{dividers.svg → architect.svg} +0 -0
  786. /package/src/icons/svg/{back.svg → arrow-back.svg} +0 -0
  787. /package/src/icons/svg/{send-arrow.svg → arrow-send.svg} +0 -0
  788. /package/src/icons/svg/{extension/avatar.svg → avatar.svg} +0 -0
  789. /package/src/icons/svg/{backlog-icon.svg → backlog.svg} +0 -0
  790. /package/src/icons/svg/{check-circle-filled.svg → circle-check-filled.svg} +0 -0
  791. /package/src/icons/svg/{check-circle.svg → circle-check.svg} +0 -0
  792. /package/src/icons/svg/{error-circle-filled.svg → circle-cross-filled.svg} +0 -0
  793. /package/src/icons/svg/{info-circle-filled.svg → circle-info-filled.svg} +0 -0
  794. /package/src/icons/svg/{info-circle.svg → circle-info.svg} +0 -0
  795. /package/src/icons/svg/{extension/comments.svg → comments.svg} +0 -0
  796. /package/src/icons/svg/{add-database.svg → database-add.svg} +0 -0
  797. /package/src/icons/svg/{database-stroke.svg → database-outline.svg} +0 -0
  798. /package/src/icons/svg/{hide.svg → eye-off.svg} +0 -0
  799. /package/src/icons/svg/{favorites-checked.svg → favorites-filled.svg} +0 -0
  800. /package/src/icons/svg/{switch-to-mention.svg → field-units-large.svg} +0 -0
  801. /package/src/icons/svg/{extension/files.svg → files.svg} +0 -0
  802. /package/src/icons/svg/{smart-folder.svg → folder-smart.svg} +0 -0
  803. /package/src/icons/svg/{fullscreen-mode-off-icon.svg → fullscreen-mode-off.svg} +0 -0
  804. /package/src/icons/svg/{add-group.svg → group-add.svg} +0 -0
  805. /package/src/icons/svg/{image-xmark.svg → image-error.svg} +0 -0
  806. /package/src/icons/svg/{add-integration.svg → integration-add.svg} +0 -0
  807. /package/src/icons/svg/{integrations/integration-discourse-color.svg → integration-discourse.svg} +0 -0
  808. /package/src/icons/svg/{fibery-desktop-app.svg → integration-fibery.svg} +0 -0
  809. /package/src/icons/svg/{figma.svg → integration-figma.svg} +0 -0
  810. /package/src/icons/svg/{github.svg → integration-github.svg} +0 -0
  811. /package/src/icons/svg/{gitlab.svg → integration-gitlab.svg} +0 -0
  812. /package/src/icons/svg/{google-drive.svg → integration-google-drive.svg} +0 -0
  813. /package/src/icons/svg/{google-map.svg → integration-google-map.svg} +0 -0
  814. /package/src/icons/svg/{integrations/integration-intercom-color.svg → integration-intercom.svg} +0 -0
  815. /package/src/icons/svg/{jira.svg → integration-jira.svg} +0 -0
  816. /package/src/icons/svg/{loom.svg → integration-loom.svg} +0 -0
  817. /package/src/icons/svg/{miro.svg → integration-miro.svg} +0 -0
  818. /package/src/icons/svg/{mixpanel.svg → integration-mixpanel.svg} +0 -0
  819. /package/src/icons/svg/{slack.svg → integration-slack.svg} +0 -0
  820. /package/src/icons/svg/{suggest-integration.svg → integration-suggest.svg} +0 -0
  821. /package/src/icons/svg/{twitter.svg → integration-twitter.svg} +0 -0
  822. /package/src/icons/svg/{youtube.svg → integration-youtube.svg} +0 -0
  823. /package/src/icons/svg/{integrations/integration-zendesk-color.svg → integration-zendesk.svg} +0 -0
  824. /package/src/icons/svg/{move-bottom.svg → move-down.svg} +0 -0
  825. /package/src/icons/svg/{move-top.svg → move-up.svg} +0 -0
  826. /package/src/icons/svg/{popup.svg → open-in-panel.svg} +0 -0
  827. /package/src/icons/svg/{richeditor/open-link.svg → open-link.svg} +0 -0
  828. /package/src/icons/svg/{many-people.svg → people-all.svg} +0 -0
  829. /package/src/icons/svg/{user-group-remove.svg → people-group-remove.svg} +0 -0
  830. /package/src/icons/svg/{invite-people.svg → people-invite.svg} +0 -0
  831. /package/src/icons/svg/{remove-people.svg → people-remove.svg} +0 -0
  832. /package/src/icons/svg/{user-x.svg → people-x.svg} +0 -0
  833. /package/src/icons/svg/{zoom-in.svg → plus.svg} +0 -0
  834. /package/src/icons/svg/{app-details.svg → preferences.svg} +0 -0
  835. /package/src/icons/svg/{network.svg → propagate.svg} +0 -0
  836. /package/src/icons/svg/{add-reactions.svg → reactions-add.svg} +0 -0
  837. /package/src/icons/svg/{richeditor/history/redo.svg → redo.svg} +0 -0
  838. /package/src/icons/svg/{extension/references.svg → references.svg} +0 -0
  839. /package/src/icons/svg/{richeditor/block/callout.svg → richeditor-block-callout.svg} +0 -0
  840. /package/src/icons/svg/{richeditor/block/code.svg → richeditor-block-code.svg} +0 -0
  841. /package/src/icons/svg/{richeditor/block/embed.svg → richeditor-block-embed.svg} +0 -0
  842. /package/src/icons/svg/{richeditor/block/entity.svg → richeditor-block-entity.svg} +0 -0
  843. /package/src/icons/svg/{richeditor/block/file.svg → richeditor-block-file.svg} +0 -0
  844. /package/src/icons/svg/{richeditor/block/h1.svg → richeditor-block-h1.svg} +0 -0
  845. /package/src/icons/svg/{richeditor/block/h2.svg → richeditor-block-h2.svg} +0 -0
  846. /package/src/icons/svg/{richeditor/block/h3.svg → richeditor-block-h3.svg} +0 -0
  847. /package/src/icons/svg/{richeditor/block/h4.svg → richeditor-block-h4.svg} +0 -0
  848. /package/src/icons/svg/{richeditor/block/mention.svg → richeditor-block-mention.svg} +0 -0
  849. /package/src/icons/svg/{richeditor/block/paragraph.svg → richeditor-block-paragraph.svg} +0 -0
  850. /package/src/icons/svg/{richeditor/block/quote.svg → richeditor-block-quote.svg} +0 -0
  851. /package/src/icons/svg/{richeditor/checklist/create.svg → richeditor-checklist-create.svg} +0 -0
  852. /package/src/icons/svg/{richeditor/image/align-center.svg → richeditor-image-align-center.svg} +0 -0
  853. /package/src/icons/svg/{richeditor/image/align-left.svg → richeditor-image-align-left.svg} +0 -0
  854. /package/src/icons/svg/{richeditor/image/align-right.svg → richeditor-image-align-right.svg} +0 -0
  855. /package/src/icons/svg/{richeditor/image/upload.svg → richeditor-image.svg} +0 -0
  856. /package/src/icons/svg/{richeditor/linkedhighlight/create.svg → richeditor-linkedhighlight-create.svg} +0 -0
  857. /package/src/icons/svg/{richeditor/list/bullet.svg → richeditor-list-bullet.svg} +0 -0
  858. /package/src/icons/svg/{richeditor/list/ordered.svg → richeditor-list-ordered.svg} +0 -0
  859. /package/src/icons/svg/{richeditor/list/unindent.svg → richeditor-list-unindent.svg} +0 -0
  860. /package/src/icons/svg/{richeditor/mark/text-background-color.svg → richeditor-mark-text-background-color.svg} +0 -0
  861. /package/src/icons/svg/{richeditor/mark/underline.svg → richeditor-mark-underline.svg} +0 -0
  862. /package/src/icons/svg/{richeditor/table/create.svg → richeditor-table-create.svg} +0 -0
  863. /package/src/icons/svg/{richeditor/video/upload.svg → richeditor-video-upload.svg} +0 -0
  864. /package/src/icons/svg/{bolt.svg → rule.svg} +0 -0
  865. /package/src/icons/svg/{app-templates.svg → space-add.svg} +0 -0
  866. /package/src/icons/svg/{move-space.svg → space-move.svg} +0 -0
  867. /package/src/icons/svg/{type/button.svg → type-button.svg} +0 -0
  868. /package/src/icons/svg/{type/checkbox.svg → type-checkbox.svg} +0 -0
  869. /package/src/icons/svg/{type/date.svg → type-date.svg} +0 -0
  870. /package/src/icons/svg/{type/email.svg → type-email.svg} +0 -0
  871. /package/src/icons/svg/{type/emoji.svg → type-emoji.svg} +0 -0
  872. /package/src/icons/svg/{type/formula.svg → type-formula.svg} +0 -0
  873. /package/src/icons/svg/{type/location.svg → type-location.svg} +0 -0
  874. /package/src/icons/svg/{type/lookup.svg → type-lookup.svg} +0 -0
  875. /package/src/icons/svg/{type/money.svg → type-money.svg} +0 -0
  876. /package/src/icons/svg/{type/multi-select.svg → type-multi-select.svg} +0 -0
  877. /package/src/icons/svg/{type/number.svg → type-number.svg} +0 -0
  878. /package/src/icons/svg/{type/percent.svg → type-percent.svg} +0 -0
  879. /package/src/icons/svg/{type/phone.svg → type-phone.svg} +0 -0
  880. /package/src/icons/svg/{type/relation.svg → type-relation.svg} +0 -0
  881. /package/src/icons/svg/{type/rich-text.svg → type-rich-text.svg} +0 -0
  882. /package/src/icons/svg/{type/single-select.svg → type-single-select.svg} +0 -0
  883. /package/src/icons/svg/{type/text.svg → type-text.svg} +0 -0
  884. /package/src/icons/svg/{richeditor/history/undo.svg → undo.svg} +0 -0
  885. /package/src/icons/svg/{units/avatar.svg → units-avatar.svg} +0 -0
  886. /package/src/icons/svg/{units/collection.svg → units-collection.svg} +0 -0
  887. /package/src/icons/svg/{units/counter.svg → units-counter.svg} +0 -0
  888. /package/src/icons/svg/{units/date.svg → units-date.svg} +0 -0
  889. /package/src/icons/svg/{units/field-icon-button.svg → units-field-icon-button.svg} +0 -0
  890. /package/src/icons/svg/{units/field.svg → units-field.svg} +0 -0
  891. /package/src/icons/svg/{units/input.svg → units-input.svg} +0 -0
  892. /package/src/icons/svg/{field-unit.svg → units-normal.svg} +0 -0
  893. /package/src/icons/svg/{units/progress-bar.svg → units-progress-bar.svg} +0 -0
  894. /package/src/icons/svg/{units/rich-text.svg → units-rich-text.svg} +0 -0
  895. /package/src/icons/svg/{units/snippet.svg → units-snippet.svg} +0 -0
  896. /package/src/icons/svg/{unlock-outline.svg → unlock.svg} +0 -0
  897. /package/src/icons/svg/{clear-value.svg → value-clear.svg} +0 -0
  898. /package/src/icons/svg/{extension/workflow.svg → workflow.svg} +0 -0
@@ -1,2060 +1,2188 @@
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. */
1
+ /* Auto-generated by theme-snapshots.test.ts for namespace "fibery". */
2
+ /* IDE DX only: lets editors resolve vars by name. Not imported at runtime. */
3
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:
4
+ --surfaceElevationS: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
5
+ --surfaceElevationM: 0 4px 8px 0 rgba(0, 0, 0, 0.09);
6
+ --surfaceElevationL: 0 8px 12px 0 rgba(0, 0, 0, 0.09);
7
+ --shadow50: 0 0 0 1px rgba(23, 23, 23, 0.05);
8
+ --shadow100: 0 1px 4px 0 rgba(23, 23, 23, 0.05);
9
+ --shadow200: 0 2px 6px 0 rgba(23, 23, 23, 0.05);
10
+ --shadow300: 0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15);
11
+ --shadow400: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15);
12
+ --shadow500: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15);
13
+ --shadow600: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2);
14
+ --actionMenuShadow:
15
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:
16
+ --shadowPopup:
17
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-panelBorder: 0 0 0 1px rgba(199, 199, 199, 0.2);
65
- --fibery-color-panelContentBg: rgb(247, 247, 247);
66
- --fibery-color-dbSettingsSidebarBg: rgb(247, 247, 247);
67
- --fibery-color-dbSettingsSidebarItemHover: rgb(237, 237, 237);
68
- --fibery-color-dbSettingsSidebarIconBg: rgb(255, 255, 255);
69
- --fibery-color-dbSettingsSidebarIconBorder: 0 1px 4px 0 rgba(94, 94, 94, 0.1), 0 0 0 0.5px rgba(232, 232, 232, 0.5);
70
- --fibery-color-dbSettingsCardBg: rgb(247, 247, 247);
71
- --fibery-color-dbSettingsCardBorder: 0 0 0 1px rgba(227, 227, 227, 0.8);
72
- --fibery-color-colorBgRelationContainer: rgb(252, 252, 252);
73
- --fibery-color-colorAI: #9d63d4;
74
- --fibery-color-colorBgAI: rgba(157, 99, 212, 0.1);
75
- --fibery-color-colorBgAIFloatingLauncher: rgb(252, 252, 252);
76
- --fibery-color-colorBgAIFloatingPanelContent: rgb(252, 252, 252);
77
- --fibery-color-colorBgAISidebarContent: rgb(252, 252, 252);
78
- --fibery-color-colorBgFloatingPanel: rgb(255, 255, 255);
79
- --fibery-color-shadowFloatingPanel: 0 0 0 1px rgba(120, 120, 120, 0.15), 0 3px 12px 0 rgba(94, 94, 94, 0.15);
80
- --fibery-color-pageContentBg: rgb(255, 255, 255);
81
- --fibery-color-colorBgPopup: rgb(255, 255, 255);
82
- --fibery-color-menuBg: rgb(245, 245, 245);
83
- --fibery-color-menuTextColor: rgb(23, 23, 23);
84
- --fibery-color-menuItemHoverColor: rgb(232, 232, 232);
85
- --fibery-color-menuSelectedTextColor: rgb(247, 247, 247);
86
- --fibery-color-menuIconColor: rgba(23, 23, 23, 0.7);
87
- --fibery-color-textColor: rgb(23, 23, 23);
88
- --fibery-color-textSelectionColor: rgba(73, 120, 212, 0.2);
89
- --fibery-color-accentTextColor: rgb(120, 120, 120);
90
- --fibery-color-disabledTextColor: rgb(158, 158, 158);
91
- --fibery-color-inversedTextColor: rgb(245, 245, 245);
92
- --fibery-color-colorTextSecondary: rgba(23, 23, 23, 0.7);
93
- --fibery-color-linkColor: #3869cc;
94
- --fibery-color-linkBorder: 0.5px solid rgba(56, 105, 204, 0.4);
95
- --fibery-color-linkHoverColor: #3869cc;
96
- --fibery-color-linkBorderHover: 0.5px solid rgba(56, 105, 204, 0.75);
97
- --fibery-color-codeColor: rgb(211, 62, 78);
98
- --fibery-color-codeBgColor: rgb(245, 245, 245);
99
- --fibery-color-codeBlockBgColor: rgb(245, 245, 245);
100
- --fibery-color-addedDiffTextColor: rgb(0, 144, 130);
101
- --fibery-color-removedDiffTextColor: rgb(175, 36, 56);
102
- --fibery-color-entityNodeColor: rgb(36, 36, 36);
103
- --fibery-color-entityNodeBorder: 0.5px solid rgba(36, 36, 36, 0.3);
104
- --fibery-color-entityNodeHoverColor: rgb(61, 61, 61);
105
- --fibery-color-entityNodeBorderHover: 0.5px solid rgba(94, 94, 94, 0.8);
106
- --fibery-color-entityNodeBgColor: rgb(247, 247, 247);
107
- --fibery-color-shortcutTextColor: rgb(158, 158, 158);
108
- --fibery-color-shortcutBorder: 1px solid rgba(199, 199, 199, 0.5);
109
- --fibery-color-shortcutBorderColor: rgba(199, 199, 199, 0.5);
110
- --fibery-color-inputBgColor: rgb(255, 255, 255);
111
- --fibery-color-inputDisabledBgColor: rgba(227, 227, 227, 0.3);
112
- --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(227, 227, 227, 0.6);
113
- --fibery-color-inputCopyBgColor: rgb(245, 245, 245);
114
- --fibery-color-inputBorderColor: 0 0 0 1px rgba(227, 227, 227, 0.8);
115
- --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(219, 219, 219);
116
- --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(199, 199, 199);
117
- --fibery-color-inputBorderBlendMode: multiply;
118
- --fibery-color-inputPlaceholderTextColor: rgb(158, 158, 158);
119
- --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(175, 36, 56);
120
- --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(175, 36, 56, 0.4);
121
- --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(175, 36, 56, 0.25);
122
- --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(175, 36, 56, 0.25);
123
- --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(246, 217, 0);
124
- --fibery-color-buttonPrimaryColor: #4978d4;
125
- --fibery-color-buttonColor: rgb(120, 120, 120);
126
- --fibery-color-buttonPrimaryTextColor: rgb(247, 247, 247);
127
- --fibery-color-checkboxColor: rgba(23, 23, 23, 0.7);
128
- --fibery-color-colorBorderBlockQuote: rgb(94, 94, 94);
129
- --fibery-color-colorBgActionsMenu: rgb(255, 255, 255);
130
- --fibery-color-colorBgActionsMenuItemHover: rgb(237, 237, 237);
131
- --fibery-color-colorBgActionsMenuItemSelected: rgba(232, 239, 253, 0.8);
132
- --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(219, 229, 250, 0.8);
133
- --fibery-color-colorBgActionsMenuItemDangerHover: rgba(211, 62, 78, 0.1);
134
- --fibery-color-colorBgActionsMenuItemDangerActive: rgba(211, 62, 78, 0.8);
135
- --fibery-color-actionMenuBg: rgb(255, 255, 255);
136
- --fibery-color-actionMenuInnerBg: rgb(255, 255, 255);
137
- --fibery-color-actionMenuHover: rgb(237, 237, 237);
138
- --fibery-color-actionMenuInnerHover: rgb(237, 237, 237);
139
- --fibery-color-actionMenuButtonColor: rgb(255, 255, 255);
140
- --fibery-color-actionMenuButtonHoverColor: rgb(252, 252, 252);
141
- --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
142
- --fibery-color-actionMenuSeparatorColor: rgba(0, 0, 0, 0.1);
143
- --fibery-color-separatorColor: rgba(0, 0, 0, 0.1);
144
- --fibery-color-separatorColorDimmed: rgba(0, 0, 0, 0.05);
145
- --fibery-color-separatorBreadcrumbsColor: rgb(199, 199, 199);
146
- --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(0, 0, 0, 0.05);
147
- --fibery-color-borderSeparator: 0.5px solid rgba(0, 0, 0, 0.1);
148
- --fibery-color-borderSeparatorMedium: 0.5px solid rgba(0, 0, 0, 0.15);
149
- --fibery-color-borderSeparatorStrong: 0.5px solid rgba(0, 0, 0, 0.25);
150
- --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
151
- --fibery-color-borderSolidSeparator: 1px solid rgba(0, 0, 0, 0.1);
152
- --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(0, 0, 0, 0.05);
153
- --fibery-color-borderSolidFilterGroup: 1px solid rgba(0, 0, 0, 0.05);
154
- --fibery-color-borderSolidGrid: 1px solid rgb(232, 232, 232);
155
- --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(199, 199, 199);
156
- --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
157
- --fibery-color-borderSolidCommentBubble: 1px solid rgb(255, 255, 255);
158
- --fibery-color-borderBlockQuote: 3px solid rgb(94, 94, 94);
159
- --fibery-color-shadowCardDefault: 0 0 0 1px rgba(227, 227, 227, 0.8), 0 1px 4px 0 rgba(23, 23, 23, 0.05);
160
- --fibery-color-shadowCardHover: 0 0 0 1px rgba(227, 227, 227, 0.8), 0 2px 6px 0 rgba(23, 23, 23, 0.05);
161
- --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(227, 227, 227, 0.8);
162
- --fibery-color-iconColor: rgba(23, 23, 23, 0.7);
163
- --fibery-color-appIconColor: rgba(247, 247, 247, 0.9);
164
- --fibery-color-appIconBgColor: rgba(252, 252, 252, 0.9);
165
- --fibery-color-mentionBgColor: rgba(219, 219, 219, 0.3);
166
- --fibery-color-colorBgSelectMenu: rgb(252, 252, 252);
167
- --fibery-color-shadowSelectMenu:
18
+ --shadowSidebar: -3px 0 10px 0 rgba(120, 120, 120, 0.1);
19
+ --highlightBgYellow: rgb(255, 236, 196);
20
+ --highlightFgYellow: rgb(167, 125, 0);
21
+ --highlightFgOnBgYellow: rgb(139, 104, 0);
22
+ --highlightBgGreen: rgb(218, 246, 202);
23
+ --highlightFgGreen: rgb(80, 147, 0);
24
+ --highlightFgOnBgGreen: rgb(66, 123, 0);
25
+ --highlightBgAquamarine: rgb(196, 249, 222);
26
+ --highlightFgAquamarine: rgb(0, 149, 104);
27
+ --highlightFgOnBgAquamarine: rgb(0, 123, 85);
28
+ --highlightBgAqua: rgb(186, 249, 240);
29
+ --highlightFgAqua: rgb(0, 147, 135);
30
+ --highlightFgOnBgAqua: rgb(0, 121, 111);
31
+ --highlightBgBlue: rgb(225, 238, 255);
32
+ --highlightFgBlue: rgb(0, 130, 243);
33
+ --highlightFgOnBgBlue: rgb(0, 106, 201);
34
+ --highlightBgPurple: rgb(245, 233, 255);
35
+ --highlightFgPurple: rgb(185, 76, 249);
36
+ --highlightFgOnBgPurple: rgb(160, 44, 221);
37
+ --highlightBgPink: rgb(255, 231, 243);
38
+ --highlightFgPink: rgb(232, 38, 172);
39
+ --highlightFgOnBgPink: rgb(196, 0, 142);
40
+ --highlightBgRed: rgb(255, 232, 230);
41
+ --highlightFgRed: rgb(250, 9, 44);
42
+ --highlightFgOnBgRed: rgb(207, 0, 33);
43
+ --highlightBgGrey: rgb(238, 238, 238);
44
+ --highlightFgGrey: rgb(132, 132, 132);
45
+ --highlightFgOnBgGrey: rgb(110, 110, 110);
46
+ --colorPickerCssFilter: none;
47
+ --colorAccentBgSubtle: rgba(73, 120, 212, 0.1);
48
+ --colorAccentBgMild: rgba(73, 120, 212, 0.15);
49
+ --colorAccentBgMedium: rgba(73, 120, 212, 0.2);
50
+ --colorAccentBgStrong: rgba(73, 120, 212, 0.3);
51
+ --colorAccentBgBold: rgba(73, 120, 212, 0.35);
52
+ --colorAccentBgVivid: rgba(73, 120, 212, 0.6);
53
+ --colorAccentStroke: rgba(73, 120, 212, 0.25);
54
+ --colorAccentStrokeHover: rgba(73, 120, 212, 0.4);
55
+ --colorAccentStrokeFocus: rgba(73, 120, 212, 0.5);
56
+ --colorAccentSolid: rgba(73, 120, 212, 0.8);
57
+ --colorAccent: #4978d4;
58
+ --darkenPrimary: rgb(62, 96, 161);
59
+ --whiteColor: rgb(255, 255, 255);
60
+ --blackColor: rgb(0, 0, 0);
61
+ --mainBg: rgb(245, 245, 245);
62
+ --panelBg: rgb(255, 255, 255);
63
+ --panelBorder: 0 0 0 1px rgba(199, 199, 199, 0.2);
64
+ --panelContentBg: rgb(247, 247, 247);
65
+ --dbSettingsSidebarBg: rgb(247, 247, 247);
66
+ --dbSettingsSidebarItemHover: rgb(237, 237, 237);
67
+ --dbSettingsSidebarIconBg: rgb(255, 255, 255);
68
+ --dbSettingsSidebarIconBorder: 0 1px 4px 0 rgba(94, 94, 94, 0.1), 0 0 0 0.5px rgba(232, 232, 232, 0.5);
69
+ --dbSettingsCardBg: rgb(247, 247, 247);
70
+ --dbSettingsCardBorder: 0 0 0 1px rgba(227, 227, 227, 0.8);
71
+ --colorBgRelationContainer: rgb(252, 252, 252);
72
+ --colorAI: #9d63d4;
73
+ --colorBgAI: rgba(157, 99, 212, 0.1);
74
+ --colorBgAIFloatingLauncher: rgb(252, 252, 252);
75
+ --colorBgAIFloatingPanelContent: rgb(252, 252, 252);
76
+ --colorBgAISidebarContent: rgb(252, 252, 252);
77
+ --colorBgFloatingPanel: rgb(255, 255, 255);
78
+ --shadowFloatingPanel: 0 0 0 1px rgba(120, 120, 120, 0.15), 0 3px 12px 0 rgba(94, 94, 94, 0.15);
79
+ --pageContentBg: rgb(255, 255, 255);
80
+ --colorBgPopup: rgb(255, 255, 255);
81
+ --menuBg: rgb(245, 245, 245);
82
+ --menuTextColor: rgb(23, 23, 23);
83
+ --menuItemHoverColor: rgb(232, 232, 232);
84
+ --menuSelectedTextColor: rgb(247, 247, 247);
85
+ --menuIconColor: rgba(23, 23, 23, 0.7);
86
+ --textColor: rgb(23, 23, 23);
87
+ --textSelectionColor: rgba(73, 120, 212, 0.2);
88
+ --accentTextColor: rgb(120, 120, 120);
89
+ --disabledTextColor: rgb(158, 158, 158);
90
+ --inversedTextColor: rgb(245, 245, 245);
91
+ --colorTextSecondary: rgba(23, 23, 23, 0.7);
92
+ --linkColor: #3869cc;
93
+ --linkBorder: 0.5px solid rgba(56, 105, 204, 0.4);
94
+ --linkHoverColor: #3869cc;
95
+ --linkBorderHover: 0.5px solid rgba(56, 105, 204, 0.75);
96
+ --codeColor: rgb(211, 62, 78);
97
+ --codeBgColor: rgb(245, 245, 245);
98
+ --codeBlockBgColor: rgb(245, 245, 245);
99
+ --addedDiffTextColor: rgb(0, 144, 130);
100
+ --removedDiffTextColor: rgb(175, 36, 56);
101
+ --entityNodeColor: rgb(36, 36, 36);
102
+ --entityNodeBorder: 0.5px solid rgba(36, 36, 36, 0.3);
103
+ --entityNodeHoverColor: rgb(61, 61, 61);
104
+ --entityNodeBorderHover: 0.5px solid rgba(94, 94, 94, 0.8);
105
+ --entityNodeBgColor: rgb(247, 247, 247);
106
+ --shortcutTextColor: rgb(158, 158, 158);
107
+ --shortcutBorder: 1px solid rgba(199, 199, 199, 0.5);
108
+ --shortcutBorderColor: rgba(199, 199, 199, 0.5);
109
+ --inputBgColor: rgb(255, 255, 255);
110
+ --inputDisabledBgColor: rgba(227, 227, 227, 0.3);
111
+ --inputDisabledBorderColor: 0 0 0 1px rgba(227, 227, 227, 0.6);
112
+ --inputCopyBgColor: rgb(245, 245, 245);
113
+ --inputBorderColor: 0 0 0 1px rgba(227, 227, 227, 0.8);
114
+ --inputBorderHoverColor: 0 0 0 1px rgb(219, 219, 219);
115
+ --inputBorderFocusColor: 0 0 0 1px rgb(199, 199, 199);
116
+ --inputBorderBlendMode: multiply;
117
+ --inputPlaceholderTextColor: rgb(158, 158, 158);
118
+ --inputErrorBorderColor: 0 0 0 1px rgb(175, 36, 56);
119
+ --inputErrorBorderHoverColor: 0 0 0 1px rgba(175, 36, 56, 0.4);
120
+ --inputErrorBorderFocusColor: 0 0 0 1px rgba(175, 36, 56, 0.25);
121
+ --inputErrorBorderFocusShadow: 0 0 0 3px rgba(175, 36, 56, 0.25);
122
+ --inputBorderWarningColor: 0 0 0 1px rgb(246, 217, 0);
123
+ --buttonPrimaryColor: #4978d4;
124
+ --buttonColor: rgb(120, 120, 120);
125
+ --buttonPrimaryTextColor: rgb(247, 247, 247);
126
+ --checkboxColor: rgba(23, 23, 23, 0.7);
127
+ --colorBorderBlockQuote: rgb(94, 94, 94);
128
+ --colorBgActionsMenu: rgb(255, 255, 255);
129
+ --colorBgActionsMenuItemHover: rgb(237, 237, 237);
130
+ --colorBgActionsMenuItemSelected: rgba(232, 239, 253, 0.8);
131
+ --colorBgActionsMenuItemSelectedHover: rgba(219, 229, 250, 0.8);
132
+ --colorBgActionsMenuItemDangerHover: rgba(211, 62, 78, 0.1);
133
+ --colorBgActionsMenuItemDangerActive: rgba(211, 62, 78, 0.8);
134
+ --actionMenuBg: rgb(255, 255, 255);
135
+ --actionMenuInnerBg: rgb(255, 255, 255);
136
+ --actionMenuHover: rgb(237, 237, 237);
137
+ --actionMenuInnerHover: rgb(237, 237, 237);
138
+ --actionMenuButtonColor: rgb(255, 255, 255);
139
+ --actionMenuButtonHoverColor: rgb(252, 252, 252);
140
+ --actionMenuButtonShadow: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
141
+ --actionMenuSeparatorColor: rgba(0, 0, 0, 0.1);
142
+ --separatorColor: rgba(0, 0, 0, 0.1);
143
+ --separatorColorDimmed: rgba(0, 0, 0, 0.05);
144
+ --separatorBreadcrumbsColor: rgb(199, 199, 199);
145
+ --borderSeparatorDimmed: 0.5px solid rgba(0, 0, 0, 0.05);
146
+ --borderSeparator: 0.5px solid rgba(0, 0, 0, 0.1);
147
+ --borderSeparatorMedium: 0.5px solid rgba(0, 0, 0, 0.15);
148
+ --borderSeparatorStrong: 0.5px solid rgba(0, 0, 0, 0.25);
149
+ --borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
150
+ --borderSolidSeparator: 1px solid rgba(0, 0, 0, 0.1);
151
+ --borderSolidSeparatorDimmed: 1px solid rgba(0, 0, 0, 0.05);
152
+ --borderSolidFilterGroup: 1px solid rgba(0, 0, 0, 0.05);
153
+ --borderSolidGrid: 1px solid rgb(232, 232, 232);
154
+ --borderSolidOutlineNeutral: 1px solid rgb(199, 199, 199);
155
+ --borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
156
+ --borderSolidCommentBubble: 1px solid rgb(255, 255, 255);
157
+ --borderBlockQuote: 3px solid rgb(94, 94, 94);
158
+ --shadowCardDefault: 0 0 0 1px rgba(227, 227, 227, 0.8), 0 1px 4px 0 rgba(23, 23, 23, 0.05);
159
+ --shadowCardHover: 0 0 0 1px rgba(227, 227, 227, 0.8), 0 2px 6px 0 rgba(23, 23, 23, 0.05);
160
+ --shadowCardInset: inset 0 0 0 1px rgba(227, 227, 227, 0.8);
161
+ --iconColor: rgba(23, 23, 23, 0.7);
162
+ --colorIconDestructive: rgb(175, 36, 56);
163
+ --appIconColor: rgba(247, 247, 247, 0.9);
164
+ --appIconBgColor: rgba(252, 252, 252, 0.9);
165
+ --mentionBgColor: rgba(219, 219, 219, 0.3);
166
+ --colorBgSelectMenu: rgb(252, 252, 252);
167
+ --shadowSelectMenu:
168
168
  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);
169
- --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
170
- --fibery-color-colorBgListItemGeneralHover: rgb(245, 245, 245);
171
- --fibery-color-colorBgListItemGeneralFocus: rgb(237, 237, 237);
172
- --fibery-color-colorBgListItemGeneralSelected: #dbe5fa;
173
- --fibery-color-colorBgListItemGeneralSelectedHover: #cad9f6;
174
- --fibery-color-colorBgListItemGeneralSelectedFocus: #cad9f6;
175
- --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
176
- --fibery-color-colorTextListItemGeneralDisabled: rgb(158, 158, 158);
177
- --fibery-color-colorBgListItemGeneralSelectedDisabled: #dbe5fa;
178
- --fibery-color-opacityListItemGeneralDisabled: 0.4;
179
- --fibery-color-colorSearchSubtitle: rgb(158, 158, 158);
180
- --fibery-color-colorBgSearchPanel: rgb(255, 255, 255);
181
- --fibery-color-colorBgSearchRowHover: rgb(237, 237, 237);
182
- --fibery-color-colorBgSearchRowCreateHover: #e8effd;
183
- --fibery-color-opacitySearchItemDone: 0.4;
184
- --fibery-color-colorBgEntityBoxDefault: rgb(255, 255, 255);
185
- --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(232, 232, 232);
186
- --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
187
- --fibery-color-colorBgEntityBoxDefaultHover: rgb(255, 255, 255);
188
- --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(23, 23, 23, 0.1);
189
- --fibery-color-colorBgEntityBoxDefaultFocus: rgb(255, 255, 255);
190
- --fibery-color-colorOverlayEntityBoxDefaultFocus: #4978d4;
191
- --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(73, 120, 212, 0.4);
192
- --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(255, 255, 255);
193
- --fibery-color-colorOverlayEntityBoxDefaultFocusHover: #4978d4;
194
- --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(73, 120, 212, 0.6);
195
- --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
196
- --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(23, 23, 23, 0.1);
197
- --fibery-color-colorBgEntityBoxSelected: #fafcff;
198
- --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4);
199
- --fibery-color-colorBgEntityBoxSelectedHover: #f1f5fe;
200
- --fibery-color-shadowStrokeEntityBoxSelectedHover:
201
- 0 0 0 1px rgba(73, 120, 212, 0.6), 0 0 0 3px rgba(73, 120, 212, 0.4);
202
- --fibery-color-colorBgEntityBoxSelectedDrag: #f1f5fe;
203
- --fibery-color-shadowStrokeEntityBoxSelectedDrag:
204
- 0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4);
205
- --fibery-color-opacityEntityBoxDisabled: 0.65;
206
- --fibery-color-opacityEntityBoxDisabledHover: 0.75;
207
- --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
208
- --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
209
- --fibery-color-entityCardBgColor: rgb(255, 255, 255);
210
- --fibery-color-entityCardSelectedColor: rgba(247, 247, 247, 0.8);
211
- --fibery-color-entityCardHoverColor: rgba(247, 247, 247, 0.8);
212
- --fibery-color-entityCardDoneColor: rgba(237, 237, 237, 0.3);
213
- --fibery-color-entityCardShadow: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
214
- --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
215
- --fibery-color-colorBgSegmentedControl: rgba(232, 232, 232, 0.8);
216
- --fibery-color-colorBgMenuHeaderAvatar: rgb(255, 255, 255);
217
- --fibery-color-shadowMenuHeaderAvatar: 0 1px 4px 0 rgba(94, 94, 94, 0.1), 0 0 0 0.5px rgba(232, 232, 232, 0.5);
218
- --fibery-color-opacityMenuItemDragged: 0.4;
219
- --fibery-color-colorBgMenuItemSelectedDragged: #cad9f6;
220
- --fibery-color-colorTextMenuItem: rgba(23, 23, 23, 0.9);
221
- --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
222
- --fibery-color-colorBgMenuItemHover: rgb(232, 232, 232);
223
- --fibery-color-colorBgMenuItemFocus: rgb(227, 227, 227);
224
- --fibery-color-colorBgMenuItemSelected: rgba(219, 229, 250, 0.8);
225
- --fibery-color-colorBgMenuItemSelectedHover: rgba(202, 217, 246, 0.7);
226
- --fibery-color-colorBgPinnedFieldsLabel: rgb(94, 94, 94);
227
- --fibery-color-colorBgObjectEditorSeparator: rgb(23, 23, 23);
228
- --fibery-color-colorBgMenuItemSelectedFocused: #cad9f6;
229
- --fibery-color-colorBgFieldEditorContainer: rgb(247, 247, 247);
230
- --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(227, 227, 227);
231
- --fibery-color-allowedDropColor: rgb(237, 237, 237);
232
- --fibery-color-relationViewBgColor: rgb(247, 247, 247);
233
- --fibery-color-mySpaceIconColor: rgb(122, 132, 142);
234
- --fibery-color-mySpaceIconBg: rgba(106, 132, 155, 0.2);
235
- --fibery-color-privateIconColor: rgb(105, 172, 94);
236
- --fibery-color-privateIconBg: rgba(105, 172, 94, 0.2);
237
- --fibery-color-favoritesIconColor: rgb(238, 166, 74);
238
- --fibery-color-favoritesIconBg: rgba(251, 163, 47, 0.2);
239
- --fibery-color-swatchDefault: #2978fb;
240
- --fibery-color-unitBg: rgb(245, 245, 245);
241
- --fibery-color-unitBgHover: rgb(237, 237, 237);
242
- --fibery-color-colorBgBadgeNeutral: rgba(232, 232, 232, 0.7);
243
- --fibery-color-colorBgBadgeAccent: rgba(219, 229, 250, 0.7);
244
- --fibery-color-colorBgBadgeSuccess: rgb(214, 234, 230);
245
- --fibery-color-colorBgBadgeWarning: rgb(255, 242, 160);
246
- --fibery-color-colorBgBadgeError: rgb(253, 220, 219);
247
- --fibery-color-colorTextBadgeNeutral: rgb(94, 94, 94);
248
- --fibery-color-colorTextBadgeAccent: #345eb2;
249
- --fibery-color-colorTextBadgeSuccess: rgb(0, 116, 104);
250
- --fibery-color-colorTextBadgeWarning: rgb(129, 113, 0);
251
- --fibery-color-colorTextBadgeError: rgb(175, 36, 56);
252
- --fibery-color-badgeBgColor: rgba(120, 120, 120, 0.2);
253
- --fibery-color-tooltipBgColor: rgb(46, 46, 46);
254
- --fibery-color-todayMarkerColor: rgb(237, 150, 151);
255
- --fibery-color-viewBgOverlayColor: rgba(199, 199, 199, 0.2);
256
- --fibery-color-floatEditorMenuBg: rgb(252, 252, 252);
257
- --fibery-color-floatEditorActiveColor: #345eb2;
258
- --fibery-color-commentColor: rgba(247, 231, 135, 0.6);
259
- --fibery-color-cellBackgroundColor: rgb(247, 247, 247);
260
- --fibery-color-cellBackgroundHoverColor: rgba(227, 227, 227, 0.3);
261
- --fibery-color-cellBorderColor: rgba(199, 199, 199, 0.5);
262
- --fibery-color-cellPinnedBorderColor: rgba(199, 199, 199, 0.7);
263
- --fibery-color-tableRowWarningColor: rgba(247, 231, 135, 0.6);
264
- --fibery-color-errorBgColor: rgba(211, 62, 78, 0.2);
265
- --fibery-color-errorTextColor: rgb(175, 36, 56);
266
- --fibery-color-errorButtonColor: rgb(211, 62, 78);
267
- --fibery-color-warningBgColor: rgba(247, 231, 135, 0.6);
268
- --fibery-color-warningButtonColor: rgb(129, 113, 0);
269
- --fibery-color-infoBox: rgba(255, 248, 185, 0.5);
270
- --fibery-color-appCardBgColor: rgb(255, 255, 255);
271
- --fibery-color-appCardHoverColor: rgba(252, 252, 252, 0.95);
272
- --fibery-color-modalBg: rgba(94, 94, 94, 0.2);
273
- --fibery-color-modalContentBg: rgb(255, 255, 255);
274
- --fibery-color-progressIconBg: rgba(0, 0, 0, 0.14);
275
- --fibery-color-progressIconFill: rgba(0, 0, 0, 0.57);
276
- --fibery-color-formBg: rgb(247, 247, 247);
277
- --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(120, 120, 120, 0.1);
278
- --fibery-color-formEditorFieldBg: rgb(245, 245, 245);
279
- --fibery-color-filterGroup1Bg: rgb(247, 247, 247);
280
- --fibery-color-filterGroup2Bg: rgb(245, 245, 245);
281
- --fibery-color-filterGroupBorder: rgba(0, 0, 0, 0.05);
282
- --fibery-color-colorBgNotificationHover: rgb(245, 245, 245);
283
- --fibery-color-colorBgNotificationSelected: #f1f5fe;
284
- --fibery-color-colorBgNotificationSelectedHover: #e8effd;
285
- --fibery-color-disabledInversedTextColor: rgba(0, 0, 0, 0.25);
286
- --fibery-color-success: rgb(0, 144, 130);
287
- --fibery-color-danger: rgb(211, 62, 78);
288
- --fibery-color-active: rgb(211, 62, 78);
289
- --fibery-color-warning: rgb(246, 217, 0);
290
- --fibery-color-cardBg: rgb(255, 255, 255);
291
- --fibery-color-selectedImageBorder: rgba(0, 0, 0, 0.22);
292
- --fibery-color-transparent: rgba(255, 255, 255, 0);
293
- --fibery-color-progressBg: rgb(237, 237, 237);
294
- --fibery-color-progressText: rgb(94, 94, 94);
295
- --fibery-color-progressFillBg: rgb(94, 94, 94);
296
- --fibery-color-progressFillText: rgb(255, 255, 255);
297
- --fibery-color-progressBarFillNeutral: rgba(158, 158, 158, 0.2);
298
- --fibery-color-progressBarFill: #4978d4;
299
- --fibery-color-progressBarBg: rgba(73, 120, 212, 0.25);
300
- --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
301
- --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
302
- --fibery-color-richTextTableBorder: rgba(0, 0, 0, 0.09);
303
- --fibery-color-colorBgDropLine: #96b1e9;
304
- --fibery-color-viewBg: rgb(252, 252, 252);
305
- --fibery-color-colorBgViewMetaItem: rgb(255, 255, 255);
306
- --fibery-color-collectionViewBg: rgb(252, 252, 252);
307
- --fibery-color-collectionViewBorder: 0 0 0 1px rgba(227, 227, 227, 0.6);
308
- --fibery-color-viewSecondaryBg: rgb(247, 247, 247);
309
- --fibery-color-viewHighlightBg: #f1f5fe;
310
- --fibery-color-boardBg: rgb(252, 252, 252);
311
- --fibery-color-boardBgWithOpacity80: rgba(252, 252, 252, 0.8);
312
- --fibery-color-boardAxisBgHover: rgb(237, 237, 237);
313
- --fibery-color-gridHeaderBgColor: rgb(247, 247, 247);
314
- --fibery-color-gridHeaderHoverBgColor: rgb(245, 245, 245);
315
- --fibery-color-gridHeaderTextColor: rgb(120, 120, 120);
316
- --fibery-color-gridCellBgColor: rgb(255, 255, 255);
317
- --fibery-color-gridCellBorderColor: rgb(232, 232, 232);
318
- --fibery-color-gridDisabledCellBgColor: rgb(247, 247, 247);
319
- --fibery-color-gridSelectedCellBgColor: #f1f5fe;
320
- --fibery-color-gridHighlightedCellBgColor: #e8effd;
321
- --fibery-color-gridSelectedCellBorderColor: #cad9f6;
322
- --fibery-color-gridSelectedPinnedCellBorderColor: #b2c7f0;
323
- --fibery-color-gridDisabledSelectedCellBgColor: #e8effd;
324
- --fibery-color-gridActiveCellBorderColor: #96b1e9;
325
- --fibery-color-timelineEntityHandleColor: #b2c7f0;
326
- --fibery-color-timelineDependencyHoverBgColor: #96b1e9;
327
- --fibery-color-timelineDependencyOverlapBgColor: rgb(211, 62, 78);
328
- --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(175, 36, 56);
329
- --fibery-color-timelineCellBgColor: rgb(252, 252, 252);
330
- --fibery-color-timelineCellWeekendBgColor: rgb(247, 247, 247);
331
- --fibery-color-timelineCellTodayBgColor: #e8effd;
332
- --fibery-color-timelineCreateEntityPlaceholderBgColor: rgba(94, 94, 94, 0.2);
333
- --fibery-color-colorBgButtonSolidAccentDefault: #4978d4;
334
- --fibery-color-colorBgButtonSolidAccentHover: #345eb2;
335
- --fibery-color-colorBgButtonSolidNeutralDefault: rgb(23, 23, 23);
336
- --fibery-color-colorBgButtonSolidNeutralHover: rgba(23, 23, 23, 0.85);
337
- --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(211, 62, 78);
338
- --fibery-color-colorBgButtonSolidDestructiveHover: rgb(175, 36, 56);
339
- --fibery-color-colorTextButtonSolidAccent: rgb(255, 255, 255);
340
- --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 255, 255, 0.8);
341
- --fibery-color-colorTextButtonSolidNeutral: rgb(255, 255, 255);
342
- --fibery-color-colorTextButtonSolidNeutralActive: rgb(255, 255, 255);
343
- --fibery-color-colorTextButtonSolidDestructive: rgb(255, 255, 255);
344
- --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 255, 255, 0.8);
345
- --fibery-color-colorIconButtonSolidAccent: rgb(255, 255, 255);
346
- --fibery-color-colorIconButtonSolidNeutral: rgb(255, 255, 255);
347
- --fibery-color-colorIconButtonSolidDestructive: rgb(255, 255, 255);
348
- --fibery-color-colorBorderButtonOutlineAccentDefault: #96b1e9;
349
- --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(199, 199, 199);
350
- --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(244, 179, 179);
351
- --fibery-color-colorBgButtonOutlineAccentDefault: rgb(255, 255, 255);
352
- --fibery-color-colorBgButtonOutlineAccentHover: #f1f5fe;
353
- --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(255, 255, 255);
354
- --fibery-color-colorBgButtonOutlineNeutralHover: rgb(237, 237, 237);
355
- --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(255, 255, 255);
356
- --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(255, 232, 232);
357
- --fibery-color-colorTextButtonOutlineAccent: #345eb2;
358
- --fibery-color-colorTextButtonOutlineAccentActive: rgba(52, 94, 178, 0.8);
359
- --fibery-color-colorTextButtonOutlineNeutral: rgb(94, 94, 94);
360
- --fibery-color-colorTextButtonOutlineNeutralActive: rgba(23, 23, 23, 0.8);
361
- --fibery-color-colorTextButtonOutlineDestructive: rgb(175, 36, 56);
362
- --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(175, 36, 56, 0.8);
363
- --fibery-color-colorIconButtonOutlineAccent: #345eb2;
364
- --fibery-color-colorIconButtonOutlineNeutral: rgb(94, 94, 94);
365
- --fibery-color-colorIconButtonOutlineDestructive: rgb(175, 36, 56);
366
- --fibery-color-colorBgButtonSoftAccentDefault: #f1f5fe;
367
- --fibery-color-colorBgButtonSoftAccentHover: #dbe5fa;
368
- --fibery-color-colorBgButtonSoftNeutralDefault: rgb(245, 245, 245);
369
- --fibery-color-colorBgButtonSoftNeutralHover: rgb(219, 219, 219);
370
- --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(255, 232, 232);
371
- --fibery-color-colorBgButtonSoftDestructiveHover: rgb(250, 203, 203);
372
- --fibery-color-colorTextButtonSoftAccent: #345eb2;
373
- --fibery-color-colorTextButtonSoftAccentActive: rgba(52, 94, 178, 0.8);
374
- --fibery-color-colorTextButtonSoftNeutral: rgb(94, 94, 94);
375
- --fibery-color-colorTextButtonSoftNeutralActive: rgba(94, 94, 94, 0.8);
376
- --fibery-color-colorTextButtonSoftDestructive: rgb(175, 36, 56);
377
- --fibery-color-colorTextButtonSoftDestructiveActive: rgba(175, 36, 56, 0.8);
378
- --fibery-color-colorIconButtonSoftAccent: #345eb2;
379
- --fibery-color-colorIconButtonSoftNeutral: rgb(94, 94, 94);
380
- --fibery-color-colorIconButtonSoftDestructive: rgb(175, 36, 56);
381
- --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
382
- --fibery-color-colorBgButtonGhostAccentHover: rgba(232, 239, 253, 0.8);
383
- --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
384
- --fibery-color-colorBgButtonGhostNeutralHover: rgba(219, 219, 219, 0.5);
385
- --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
386
- --fibery-color-colorBgButtonGhostDestructiveHover: rgb(255, 232, 232);
387
- --fibery-color-colorTextButtonGhostAccent: #345eb2;
388
- --fibery-color-colorTextButtonGhostAccentActive: rgba(52, 94, 178, 0.8);
389
- --fibery-color-colorTextButtonGhostNeutral: rgb(94, 94, 94);
390
- --fibery-color-colorTextButtonGhostNeutralActive: rgba(94, 94, 94, 0.8);
391
- --fibery-color-colorTextButtonGhostDestructive: rgb(175, 36, 56);
392
- --fibery-color-colorTextButtonGhostDestructiveActive: rgba(175, 36, 56, 0.8);
393
- --fibery-color-colorIconButtonGhostAccent: #345eb2;
394
- --fibery-color-colorIconButtonGhostNeutral: rgb(94, 94, 94);
395
- --fibery-color-colorIconButtonGhostDestructive: rgb(175, 36, 56);
396
- --fibery-color-colorBorderAccentFocusRing: rgba(73, 120, 212, 0.3);
397
- --fibery-color-colorBorderNeutralFocusRing: rgba(158, 158, 158, 0.3);
398
- --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 78, 0.3);
399
- --fibery-color-colorBgReactionsDefault: rgb(255, 255, 255);
400
- --fibery-color-colorBgReactionsHover: rgb(245, 245, 245);
401
- --fibery-color-colorBorderReactionsHover: rgb(199, 199, 199);
402
- --fibery-color-colorBgReactionsSelectedDefault: #f1f5fe;
403
- --fibery-color-colorBorderReactionsSelectedDefault: #96b1e9;
404
- --fibery-color-colorBgReactionsSelectedHover: #fafcff;
405
- --fibery-color-colorBorderReactionsSelectedHover: #4978d4;
406
- --fibery-color-colorTextReactionsSelected: #3869cc;
407
- --fibery-color-colorBgToastDefault: rgb(252, 252, 252);
408
- --fibery-color-colorBgDbTabHover: rgb(245, 245, 245);
409
- --fibery-color-colorBgDbTabFocus: rgb(227, 227, 227);
410
- --fibery-color-colorBgTabHover: rgba(94, 94, 94, 0.1);
411
- --fibery-color-colorBgMessageContainer: rgb(245, 245, 245);
412
- --fibery-color-colorBgMessageContainerHover: rgb(237, 237, 237);
413
- --fibery-color-colorBgEntityAvatarDefault: #fbfcfe;
414
- --fibery-color-colorBgEntityAvatarHover: #f1f5fe;
415
- --fibery-color-colorTextEntityAvatarDefault: #96b1e9;
416
- --fibery-color-colorTextEntityAvatarHover: #4978d4;
417
- --fibery-color-colorBgMessageHighlighted: rgb(255, 255, 255);
418
- --fibery-color-colorBgCommentHover: rgb(247, 247, 247);
419
- --fibery-color-colorBgCodeEditor: rgb(255, 255, 255);
420
- --fibery-color-colorBgEditorImageZoomed: rgb(245, 245, 245);
421
- --fibery-color-colorMermaidPrimaryColor: rgb(247, 247, 247);
422
- --fibery-color-colorMermaidPrimaryBorderColor: rgb(158, 158, 158);
423
- --fibery-color-colorMermaidLineColor: rgb(120, 120, 120);
424
- --fibery-color-colorBgWhiteboard: rgb(255, 255, 255);
425
- --fibery-color-colorGridDotWhiteboard: rgb(227, 227, 227);
426
- --fibery-color-colorSelectionWhiteboardBorderEnabled: #96b1e9;
427
- --fibery-color-colorHighlightWhiteboardSelection: #96b1e9;
428
- --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(158, 158, 158, 0.5);
429
- --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(158, 158, 158, 0.5);
430
- --fibery-color-colorPlaceholderWhiteboardDefault: rgba(150, 177, 233, 0.2);
431
- --fibery-color-colorLinkPointWhiteboardDefault: #96b1e9;
432
- --fibery-color-colorLinkPointWhiteboardFillDefault: rgb(255, 255, 255);
433
- --fibery-color-colorMapWhiteboardPreviewDefault: rgba(150, 177, 233, 0.4);
434
- --fibery-color-colorCardWhiteboardShadowDefault: rgba(94, 94, 94, 0.05);
435
- --fibery-color-colorCardWhiteboardBgDefault: rgb(255, 255, 255);
436
- --fibery-color-colorCardWhiteboardBorderDefault: rgba(23, 23, 23, 0.2);
437
- --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(23, 23, 23, 0.6);
438
- --fibery-color-colorUnitWhiteboardBgDefault: rgb(245, 245, 245);
439
- --fibery-color-colorUnitWhiteboardBorderDefault: rgba(23, 23, 23, 0.2);
440
- --fibery-color-colorSectionWhiteboardBgInactive: rgb(247, 247, 247);
441
- --fibery-color-colorSectionWhiteboardBorderInactive: rgb(227, 227, 227);
442
- --fibery-color-colorEmbedWhiteboardEditBorder: rgba(134, 191, 181, 0.9);
443
- --fibery-color-colorTextWhiteboardDefault: rgb(23, 23, 23);
444
- --fibery-color-colorTextWhiteboardDisabled: rgb(158, 158, 158);
445
- --fibery-color-colorTextWhiteboardAccent: rgba(23, 23, 23, 0.6);
446
- --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 255, 255);
447
- --fibery-color-instrumentsMenuBg: rgb(255, 255, 255);
448
- --fibery-color-instrumentsMenuShadow:
169
+ --colorBgListItemGeneral: rgba(255, 255, 255, 0);
170
+ --colorBgListItemGeneralHover: rgb(245, 245, 245);
171
+ --colorBgListItemGeneralFocus: rgb(237, 237, 237);
172
+ --colorBgListItemGeneralSelected: #dbe5fa;
173
+ --colorBgListItemGeneralSelectedHover: #cad9f6;
174
+ --colorBgListItemGeneralSelectedFocus: #cad9f6;
175
+ --colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
176
+ --colorTextListItemGeneralDisabled: rgb(158, 158, 158);
177
+ --colorBgListItemGeneralSelectedDisabled: #dbe5fa;
178
+ --opacityListItemGeneralDisabled: 0.4;
179
+ --colorSearchSubtitle: rgb(158, 158, 158);
180
+ --colorBgSearchPanel: rgb(255, 255, 255);
181
+ --colorBgSearchRowHover: rgb(237, 237, 237);
182
+ --colorBgSearchRowCreateHover: #e8effd;
183
+ --opacitySearchItemDone: 0.4;
184
+ --colorBgEntityBoxDefault: rgb(255, 255, 255);
185
+ --shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(232, 232, 232);
186
+ --shadowEntityBoxDefault: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
187
+ --colorBgEntityBoxDefaultHover: rgb(255, 255, 255);
188
+ --shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(23, 23, 23, 0.1);
189
+ --colorBgEntityBoxDefaultFocus: rgb(255, 255, 255);
190
+ --colorOverlayEntityBoxDefaultFocus: #4978d4;
191
+ --shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(73, 120, 212, 0.4);
192
+ --colorBgEntityBoxDefaultFocusHover: rgb(255, 255, 255);
193
+ --colorOverlayEntityBoxDefaultFocusHover: #4978d4;
194
+ --shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(73, 120, 212, 0.6);
195
+ --opacityEntityBoxDefaultDrag: 0.4;
196
+ --shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(23, 23, 23, 0.1);
197
+ --colorBgEntityBoxSelected: #fafcff;
198
+ --shadowStrokeEntityBoxSelected: 0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4);
199
+ --colorBgEntityBoxSelectedHover: #f1f5fe;
200
+ --shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgba(73, 120, 212, 0.6), 0 0 0 3px rgba(73, 120, 212, 0.4);
201
+ --colorBgEntityBoxSelectedDrag: #f1f5fe;
202
+ --shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgba(73, 120, 212, 0.4), 0 0 0 3px rgba(73, 120, 212, 0.4);
203
+ --opacityEntityBoxDisabled: 0.65;
204
+ --opacityEntityBoxDisabledHover: 0.75;
205
+ --opacityEntityBoxDisabledFocus: 0.75;
206
+ --opacityEntityBoxDisabledDrag: 0.4;
207
+ --entityCardBgColor: rgb(255, 255, 255);
208
+ --entityCardSelectedColor: rgba(247, 247, 247, 0.8);
209
+ --entityCardHoverColor: rgba(247, 247, 247, 0.8);
210
+ --entityCardDoneColor: rgba(237, 237, 237, 0.3);
211
+ --entityCardShadow: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
212
+ --entityCardShadowHover: 0 0 0 1px rgba(120, 120, 120, 0.1), 0 2px 4px -4px rgba(120, 120, 120, 0.2);
213
+ --colorBgSegmentedControl: rgba(232, 232, 232, 0.8);
214
+ --colorBgMenuHeaderAvatar: rgb(255, 255, 255);
215
+ --shadowMenuHeaderAvatar: 0 1px 4px 0 rgba(94, 94, 94, 0.1), 0 0 0 0.5px rgba(232, 232, 232, 0.5);
216
+ --opacityMenuItemDragged: 0.4;
217
+ --colorBgMenuItemSelectedDragged: #cad9f6;
218
+ --colorTextMenuItem: rgba(23, 23, 23, 0.9);
219
+ --colorBgMenuItem: rgba(255, 255, 255, 0);
220
+ --colorBgMenuItemHover: rgb(232, 232, 232);
221
+ --colorBgMenuItemFocus: rgb(227, 227, 227);
222
+ --colorBgMenuItemSelected: rgba(219, 229, 250, 0.8);
223
+ --colorBgMenuItemSelectedHover: rgba(202, 217, 246, 0.7);
224
+ --colorBgPinnedFieldsLabel: rgb(94, 94, 94);
225
+ --colorBgObjectEditorSeparator: rgb(23, 23, 23);
226
+ --colorBgMenuItemSelectedFocused: #cad9f6;
227
+ --colorBgFieldEditorContainer: rgb(247, 247, 247);
228
+ --colorBgFieldEditorLinkEqualSign: rgb(227, 227, 227);
229
+ --allowedDropColor: rgb(237, 237, 237);
230
+ --relationViewBgColor: rgb(247, 247, 247);
231
+ --mySpaceIconColor: rgb(122, 132, 142);
232
+ --mySpaceIconBg: rgba(106, 132, 155, 0.2);
233
+ --privateIconColor: rgb(105, 172, 94);
234
+ --privateIconBg: rgba(105, 172, 94, 0.2);
235
+ --favoritesIconColor: rgb(238, 166, 74);
236
+ --favoritesIconBg: rgba(251, 163, 47, 0.2);
237
+ --swatchDefault: #2978fb;
238
+ --unitBg: rgb(245, 245, 245);
239
+ --unitBgHover: rgb(237, 237, 237);
240
+ --colorBgBadgeNeutral: rgba(232, 232, 232, 0.7);
241
+ --colorBgBadgeAccent: rgba(219, 229, 250, 0.7);
242
+ --colorBgBadgeSuccess: rgb(214, 234, 230);
243
+ --colorBgBadgeWarning: rgb(255, 242, 160);
244
+ --colorBgBadgeError: rgb(253, 220, 219);
245
+ --colorTextBadgeNeutral: rgb(94, 94, 94);
246
+ --colorTextBadgeAccent: #345eb2;
247
+ --colorTextBadgeSuccess: rgb(0, 116, 104);
248
+ --colorTextBadgeWarning: rgb(129, 113, 0);
249
+ --colorTextBadgeError: rgb(175, 36, 56);
250
+ --badgeBgColor: rgba(120, 120, 120, 0.2);
251
+ --tooltipBgColor: rgb(46, 46, 46);
252
+ --todayMarkerColor: rgb(237, 150, 151);
253
+ --viewBgOverlayColor: rgba(199, 199, 199, 0.2);
254
+ --floatEditorMenuBg: rgb(252, 252, 252);
255
+ --floatEditorActiveColor: #345eb2;
256
+ --commentColor: rgba(247, 231, 135, 0.6);
257
+ --cellBackgroundColor: rgb(247, 247, 247);
258
+ --cellBackgroundHoverColor: rgba(227, 227, 227, 0.3);
259
+ --cellBorderColor: rgba(199, 199, 199, 0.5);
260
+ --cellPinnedBorderColor: rgba(199, 199, 199, 0.7);
261
+ --tableRowWarningColor: rgba(247, 231, 135, 0.6);
262
+ --errorBgColor: rgba(211, 62, 78, 0.2);
263
+ --errorTextColor: rgb(175, 36, 56);
264
+ --errorButtonColor: rgb(211, 62, 78);
265
+ --warningBgColor: rgba(247, 231, 135, 0.6);
266
+ --warningButtonColor: rgb(129, 113, 0);
267
+ --infoBox: rgba(255, 248, 185, 0.5);
268
+ --appCardBgColor: rgb(255, 255, 255);
269
+ --appCardHoverColor: rgba(252, 252, 252, 0.95);
270
+ --modalBg: rgba(94, 94, 94, 0.2);
271
+ --modalContentBg: rgb(255, 255, 255);
272
+ --progressIconBg: rgba(0, 0, 0, 0.14);
273
+ --progressIconFill: rgba(0, 0, 0, 0.57);
274
+ --formBg: rgb(247, 247, 247);
275
+ --formHeaderShadow: 0 0 6px 0 rgba(120, 120, 120, 0.1);
276
+ --formEditorFieldBg: rgb(245, 245, 245);
277
+ --filterGroup1Bg: rgb(247, 247, 247);
278
+ --filterGroup2Bg: rgb(245, 245, 245);
279
+ --filterGroupBorder: rgba(0, 0, 0, 0.05);
280
+ --colorBgNotificationHover: rgb(245, 245, 245);
281
+ --colorBgNotificationSelected: #f1f5fe;
282
+ --colorBgNotificationSelectedHover: #e8effd;
283
+ --disabledInversedTextColor: rgba(0, 0, 0, 0.25);
284
+ --success: rgb(0, 144, 130);
285
+ --danger: rgb(211, 62, 78);
286
+ --active: rgb(211, 62, 78);
287
+ --warning: rgb(246, 217, 0);
288
+ --cardBg: rgb(255, 255, 255);
289
+ --selectedImageBorder: rgba(0, 0, 0, 0.22);
290
+ --transparent: rgba(255, 255, 255, 0);
291
+ --progressBg: rgb(237, 237, 237);
292
+ --progressText: rgb(94, 94, 94);
293
+ --progressFillBg: rgb(94, 94, 94);
294
+ --progressFillText: rgb(255, 255, 255);
295
+ --progressBarFillNeutral: rgba(158, 158, 158, 0.2);
296
+ --progressBarFill: #4978d4;
297
+ --progressBarBg: rgba(73, 120, 212, 0.25);
298
+ --colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
299
+ --colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
300
+ --richTextTableBorder: rgba(0, 0, 0, 0.09);
301
+ --colorBgDropLine: #96b1e9;
302
+ --viewBg: rgb(252, 252, 252);
303
+ --colorBgViewMetaItem: rgb(255, 255, 255);
304
+ --collectionViewBg: rgb(252, 252, 252);
305
+ --collectionViewBorder: 0 0 0 1px rgba(227, 227, 227, 0.6);
306
+ --viewSecondaryBg: rgb(247, 247, 247);
307
+ --viewHighlightBg: #f1f5fe;
308
+ --boardBg: rgb(252, 252, 252);
309
+ --boardBgWithOpacity80: rgba(252, 252, 252, 0.8);
310
+ --boardAxisBgHover: rgb(237, 237, 237);
311
+ --gridHeaderBgColor: rgb(247, 247, 247);
312
+ --gridHeaderHoverBgColor: rgb(245, 245, 245);
313
+ --gridHeaderTextColor: rgb(120, 120, 120);
314
+ --gridCellBgColor: rgb(255, 255, 255);
315
+ --gridCellBorderColor: rgb(232, 232, 232);
316
+ --gridDisabledCellBgColor: rgb(247, 247, 247);
317
+ --gridSelectedCellBgColor: #f1f5fe;
318
+ --gridHighlightedCellBgColor: #e8effd;
319
+ --gridSelectedCellBorderColor: #cad9f6;
320
+ --gridSelectedPinnedCellBorderColor: #b2c7f0;
321
+ --gridDisabledSelectedCellBgColor: #e8effd;
322
+ --gridActiveCellBorderColor: #96b1e9;
323
+ --timelineEntityHandleColor: #b2c7f0;
324
+ --timelineDependencyHoverBgColor: #96b1e9;
325
+ --timelineDependencyOverlapBgColor: rgb(211, 62, 78);
326
+ --timelineDependencyOverlapHoverBgColor: rgb(175, 36, 56);
327
+ --timelineCellBgColor: rgb(252, 252, 252);
328
+ --timelineCellWeekendBgColor: rgb(247, 247, 247);
329
+ --timelineCellTodayBgColor: #e8effd;
330
+ --timelineCreateEntityPlaceholderBgColor: rgba(94, 94, 94, 0.2);
331
+ --colorBgButtonSolidAccentDefault: #4978d4;
332
+ --colorBgButtonSolidAccentHover: #345eb2;
333
+ --colorBgButtonSolidNeutralDefault: rgb(23, 23, 23);
334
+ --colorBgButtonSolidNeutralHover: rgba(23, 23, 23, 0.85);
335
+ --colorBgButtonSolidDestructiveDefault: rgb(211, 62, 78);
336
+ --colorBgButtonSolidDestructiveHover: rgb(175, 36, 56);
337
+ --colorTextButtonSolidAccent: rgb(255, 255, 255);
338
+ --colorTextButtonSolidAccentActive: rgba(255, 255, 255, 0.8);
339
+ --colorTextButtonSolidNeutral: rgb(255, 255, 255);
340
+ --colorTextButtonSolidNeutralActive: rgb(255, 255, 255);
341
+ --colorTextButtonSolidDestructive: rgb(255, 255, 255);
342
+ --colorTextButtonSolidDestructiveActive: rgba(255, 255, 255, 0.8);
343
+ --colorIconButtonSolidAccent: rgb(255, 255, 255);
344
+ --colorIconButtonSolidNeutral: rgb(255, 255, 255);
345
+ --colorIconButtonSolidDestructive: rgb(255, 255, 255);
346
+ --colorBorderButtonOutlineAccentDefault: #96b1e9;
347
+ --colorBorderButtonOutlineNeutralDefault: rgb(199, 199, 199);
348
+ --colorBorderButtonOutlineDestructiveDefault: rgb(244, 179, 179);
349
+ --colorBgButtonOutlineAccentDefault: rgb(255, 255, 255);
350
+ --colorBgButtonOutlineAccentHover: #f1f5fe;
351
+ --colorBgButtonOutlineNeutralDefault: rgb(255, 255, 255);
352
+ --colorBgButtonOutlineNeutralHover: rgb(237, 237, 237);
353
+ --colorBgButtonOutlineDestructiveDefault: rgb(255, 255, 255);
354
+ --colorBgButtonOutlineDestructiveHover: rgb(255, 232, 232);
355
+ --colorTextButtonOutlineAccent: #345eb2;
356
+ --colorTextButtonOutlineAccentActive: rgba(52, 94, 178, 0.8);
357
+ --colorTextButtonOutlineNeutral: rgb(94, 94, 94);
358
+ --colorTextButtonOutlineNeutralActive: rgba(23, 23, 23, 0.8);
359
+ --colorTextButtonOutlineDestructive: rgb(175, 36, 56);
360
+ --colorTextButtonOutlineDestructiveActive: rgba(175, 36, 56, 0.8);
361
+ --colorIconButtonOutlineAccent: #345eb2;
362
+ --colorIconButtonOutlineNeutral: rgb(94, 94, 94);
363
+ --colorIconButtonOutlineDestructive: rgb(175, 36, 56);
364
+ --colorBgButtonSoftAccentDefault: #f1f5fe;
365
+ --colorBgButtonSoftAccentHover: #dbe5fa;
366
+ --colorBgButtonSoftNeutralDefault: rgb(245, 245, 245);
367
+ --colorBgButtonSoftNeutralHover: rgb(219, 219, 219);
368
+ --colorBgButtonSoftDestructiveDefault: rgb(255, 232, 232);
369
+ --colorBgButtonSoftDestructiveHover: rgb(250, 203, 203);
370
+ --colorTextButtonSoftAccent: #345eb2;
371
+ --colorTextButtonSoftAccentActive: rgba(52, 94, 178, 0.8);
372
+ --colorTextButtonSoftNeutral: rgb(94, 94, 94);
373
+ --colorTextButtonSoftNeutralActive: rgba(94, 94, 94, 0.8);
374
+ --colorTextButtonSoftDestructive: rgb(175, 36, 56);
375
+ --colorTextButtonSoftDestructiveActive: rgba(175, 36, 56, 0.8);
376
+ --colorIconButtonSoftAccent: #345eb2;
377
+ --colorIconButtonSoftNeutral: rgb(94, 94, 94);
378
+ --colorIconButtonSoftDestructive: rgb(175, 36, 56);
379
+ --colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
380
+ --colorBgButtonGhostAccentHover: rgba(232, 239, 253, 0.8);
381
+ --colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
382
+ --colorBgButtonGhostNeutralHover: rgba(219, 219, 219, 0.5);
383
+ --colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
384
+ --colorBgButtonGhostDestructiveHover: rgb(255, 232, 232);
385
+ --colorTextButtonGhostAccent: #345eb2;
386
+ --colorTextButtonGhostAccentActive: rgba(52, 94, 178, 0.8);
387
+ --colorTextButtonGhostNeutral: rgb(94, 94, 94);
388
+ --colorTextButtonGhostNeutralActive: rgba(94, 94, 94, 0.8);
389
+ --colorTextButtonGhostDestructive: rgb(175, 36, 56);
390
+ --colorTextButtonGhostDestructiveActive: rgba(175, 36, 56, 0.8);
391
+ --colorIconButtonGhostAccent: #345eb2;
392
+ --colorIconButtonGhostNeutral: rgb(94, 94, 94);
393
+ --colorIconButtonGhostDestructive: rgb(175, 36, 56);
394
+ --colorBorderAccentFocusRing: rgba(73, 120, 212, 0.3);
395
+ --colorBorderNeutralFocusRing: rgba(158, 158, 158, 0.3);
396
+ --colorBorderDestructiveFocusRing: rgba(211, 62, 78, 0.3);
397
+ --colorBgReactionsDefault: rgb(255, 255, 255);
398
+ --colorBgReactionsHover: rgb(245, 245, 245);
399
+ --colorBorderReactionsHover: rgb(199, 199, 199);
400
+ --colorBgReactionsSelectedDefault: #f1f5fe;
401
+ --colorBorderReactionsSelectedDefault: #96b1e9;
402
+ --colorBgReactionsSelectedHover: #fafcff;
403
+ --colorBorderReactionsSelectedHover: #4978d4;
404
+ --colorTextReactionsSelected: #3869cc;
405
+ --colorBgToggleButtonUnselectedNormal: rgb(255, 255, 255);
406
+ --colorBgToggleButtonUnselectedHover: rgb(245, 245, 245);
407
+ --colorBgToggleButtonSelectedNormal: #f1f5fe;
408
+ --colorBgToggleButtonSelectedHover: #fafcff;
409
+ --colorBorderToggleButtonUnselectedNormal: rgb(199, 199, 199);
410
+ --colorBorderToggleButtonUnselectedHover: rgb(199, 199, 199);
411
+ --colorBorderToggleButtonSelectedNormal: #96b1e9;
412
+ --colorBorderToggleButtonSelectedHover: #4978d4;
413
+ --colorTextToggleButtonUnselectedNormal: rgb(94, 94, 94);
414
+ --colorTextToggleButtonUnselectedHover: rgb(94, 94, 94);
415
+ --colorTextToggleButtonSelectedNormal: #3869cc;
416
+ --colorTextToggleButtonSelectedHover: #3869cc;
417
+ --colorIconToggleButtonUnselectedNormal: rgb(94, 94, 94);
418
+ --colorIconToggleButtonUnselectedHover: rgb(94, 94, 94);
419
+ --colorIconToggleButtonSelectedNormal: #345eb2;
420
+ --colorIconToggleButtonSelectedHover: #345eb2;
421
+ --colorBgRoundToggleButtonUnselectedNormal: rgb(255, 255, 255);
422
+ --colorBgRoundToggleButtonUnselectedHover: rgb(245, 245, 245);
423
+ --colorBgRoundToggleButtonSelectedNormal: #e8effd;
424
+ --colorBgRoundToggleButtonSelectedHover: #f1f5fe;
425
+ --colorBorderRoundToggleButtonUnselectedNormal: rgb(199, 199, 199);
426
+ --colorBorderRoundToggleButtonUnselectedHover: rgb(199, 199, 199);
427
+ --colorBorderRoundToggleButtonSelectedNormal: #96b1e9;
428
+ --colorBorderRoundToggleButtonSelectedHover: #4978d4;
429
+ --colorTextRoundToggleButtonUnselectedNormal: rgb(94, 94, 94);
430
+ --colorTextRoundToggleButtonUnselectedHover: rgb(94, 94, 94);
431
+ --colorTextRoundToggleButtonSelectedNormal: #3869cc;
432
+ --colorTextRoundToggleButtonSelectedHover: #3869cc;
433
+ --colorIconRoundToggleButtonUnselectedNormal: rgb(94, 94, 94);
434
+ --colorIconRoundToggleButtonUnselectedHover: rgb(94, 94, 94);
435
+ --colorIconRoundToggleButtonSelectedNormal: #345eb2;
436
+ --colorIconRoundToggleButtonSelectedHover: #345eb2;
437
+ --colorBgToastDefault: rgb(252, 252, 252);
438
+ --colorBgDbTabHover: rgb(245, 245, 245);
439
+ --colorBgDbTabFocus: rgb(227, 227, 227);
440
+ --colorBgTabHover: rgba(94, 94, 94, 0.1);
441
+ --colorBgMessageContainer: rgb(245, 245, 245);
442
+ --colorBgMessageContainerHover: rgb(237, 237, 237);
443
+ --colorBgEntityAvatarDefault: #fbfcfe;
444
+ --colorBgEntityAvatarHover: #f1f5fe;
445
+ --colorTextEntityAvatarDefault: #96b1e9;
446
+ --colorTextEntityAvatarHover: #4978d4;
447
+ --colorBgMessageHighlighted: rgb(255, 255, 255);
448
+ --colorBgCommentHover: rgb(247, 247, 247);
449
+ --colorBgCodeEditor: rgb(255, 255, 255);
450
+ --colorBgEditorImageZoomed: rgb(245, 245, 245);
451
+ --colorMermaidPrimaryColor: rgb(247, 247, 247);
452
+ --colorMermaidPrimaryBorderColor: rgb(158, 158, 158);
453
+ --colorMermaidLineColor: rgb(120, 120, 120);
454
+ --colorBgWhiteboard: rgb(255, 255, 255);
455
+ --colorGridDotWhiteboard: rgb(227, 227, 227);
456
+ --colorSelectionWhiteboardBorderEnabled: #96b1e9;
457
+ --colorHighlightWhiteboardSelection: #96b1e9;
458
+ --colorHighlightWhiteboardSelectionLocked: rgba(158, 158, 158, 0.5);
459
+ --colorSelectionWhiteboardBorderDisabled: rgba(158, 158, 158, 0.5);
460
+ --colorPlaceholderWhiteboardDefault: rgba(150, 177, 233, 0.2);
461
+ --colorLinkPointWhiteboardDefault: #96b1e9;
462
+ --colorLinkPointWhiteboardFillDefault: rgb(255, 255, 255);
463
+ --colorMapWhiteboardPreviewDefault: rgba(150, 177, 233, 0.4);
464
+ --colorCardWhiteboardShadowDefault: rgba(94, 94, 94, 0.05);
465
+ --colorCardWhiteboardBgDefault: rgb(255, 255, 255);
466
+ --colorCardWhiteboardBorderDefault: rgba(23, 23, 23, 0.2);
467
+ --colorUnitHeaderWhiteboardDefault: rgba(23, 23, 23, 0.6);
468
+ --colorUnitWhiteboardBgDefault: rgb(245, 245, 245);
469
+ --colorUnitWhiteboardBorderDefault: rgba(23, 23, 23, 0.2);
470
+ --colorSectionWhiteboardBgInactive: rgb(247, 247, 247);
471
+ --colorSectionWhiteboardBorderInactive: rgb(227, 227, 227);
472
+ --colorUploadPreviewBg: rgba(94, 94, 94, 0.65);
473
+ --colorEmbedWhiteboardEditBorder: rgba(134, 191, 181, 0.9);
474
+ --colorTextWhiteboardDefault: rgb(23, 23, 23);
475
+ --colorTextWhiteboardDisabled: rgb(158, 158, 158);
476
+ --colorTextWhiteboardAccent: rgba(23, 23, 23, 0.6);
477
+ --colorTextWhiteboardInversedDefault: rgb(255, 255, 255);
478
+ --instrumentsMenuBg: rgb(255, 255, 255);
479
+ --instrumentsMenuShadow:
449
480
  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);
450
- --fibery-color-commentBubbleBg: rgb(255, 255, 255);
451
- --fibery-color-commentsPanelShadow:
481
+ --commentBubbleBg: rgb(255, 255, 255);
482
+ --commentsPanelShadow:
452
483
  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);
453
- --fibery-color-searchFiltersBg: rgb(252, 252, 252);
454
- --fibery-color-selectedColorBorder: rgba(227, 227, 227, 0.25);
455
- --fibery-color-colorBgSegmentedControlDefault: rgb(245, 245, 245);
456
- --fibery-color-colorBgSegmentedControlActive: rgb(252, 252, 252);
457
- --fibery-color-colorBgSegmentedControlHover: rgb(232, 232, 232);
458
- --fibery-color-colorBorderSegmentedControlDefault: rgb(227, 227, 227);
459
- --fibery-color-colorBgBannerNeutral: rgb(245, 245, 245);
460
- --fibery-color-colorBgBannerPrimary: #f1f5fe;
461
- --fibery-color-colorBgBannerWarning: rgb(255, 251, 207);
462
- --fibery-color-colorBgBannerError: rgb(255, 241, 241);
463
- --fibery-color-colorBgBannerSuccess: rgb(239, 247, 245);
464
- --fibery-color-colorIconBannerNeutral: rgb(23, 23, 23);
465
- --fibery-color-colorIconBannerAccent: #345eb2;
466
- --fibery-color-colorIconBannerWarning: rgb(129, 113, 0);
467
- --fibery-color-colorIconBannerError: rgb(175, 36, 56);
468
- --fibery-color-colorIconBannerSuccess: rgb(0, 116, 104);
469
- --fibery-color-colorTextBannerNeutral: rgb(23, 23, 23);
470
- --fibery-color-colorTextBannerAccent: #345eb2;
471
- --fibery-color-colorTextBannerWarning: rgb(129, 113, 0);
472
- --fibery-color-colorTextBannerError: rgb(175, 36, 56);
473
- --fibery-color-colorTextBannerSuccess: rgb(0, 116, 104);
474
- --fibery-color-colorBgChargebeeInfoBox: rgb(245, 245, 245);
475
- --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 151);
476
- --fibery-color-colorBgErrorMessage: rgb(237, 150, 151);
477
- --fibery-color-colorBorderLogoGrid: rgb(237, 237, 237);
478
- --fibery-color-colorBorderLogoGridSubtle: rgba(237, 237, 237, 0.2);
479
- --fibery-color-colorBorderLogoGridMedium: rgba(237, 237, 237, 0.4);
480
- --fibery-color-colorStrokeLogoDashed: rgb(227, 227, 227);
481
- --fibery-color-colorBgLogoCardTransparent: rgb(255, 255, 255);
482
- --fibery-color-colorBgLogoCardDark: rgb(199, 199, 199);
483
- --fibery-color-colorBgLogoCardMedium: rgb(237, 237, 237);
484
- --fibery-color-colorBgSkeletonFrom: rgba(255, 255, 255, 0.05);
485
- --fibery-color-colorBgSkeletonTo: rgba(255, 255, 255, 0.1);
486
- --fibery-color-colorShadowInsetEdge: rgba(255, 255, 255, 0.05);
487
- --fibery-color-colorShadowBorder: rgba(255, 255, 255, 0.1);
488
- --fibery-color-colorShadowElevation: rgba(0, 0, 0, 0.1);
489
- --fibery-color-colorShadowOutline: rgba(0, 0, 0, 0.2);
490
- --fibery-color-colorPlaceholder: rgba(255, 255, 255, 0.4);
491
- --fibery-color-colorPlaceholderSubtle: rgba(255, 255, 255, 0.25);
492
- --fibery-color-colorBgSubtleLight: rgba(255, 255, 255, 0.05);
493
- --fibery-color-colorStrokeSurface: rgb(255, 255, 255);
494
- --fibery-color-colorTextMilestone: rgba(0, 0, 0, 0.5);
495
- --fibery-color-colorSpinnerIcon: rgba(0, 0, 0, 0.9);
496
- --fibery-color-colorSpinnerBg: rgba(0, 0, 0, 0.1);
497
- --fibery-color-colorBgLaneSubtle: rgba(0, 0, 0, 0.05);
498
- --fibery-color-opacity15: 0.15;
499
- --fibery-color-opacity20: 0.2;
500
- --fibery-color-opacity25: 0.25;
501
- --fibery-color-opacity30: 0.3;
502
- --fibery-color-opacity40: 0.4;
503
- --fibery-color-opacity50: 0.5;
504
- --fibery-color-opacity60: 0.6;
505
- --fibery-color-opacity65: 0.65;
506
- --fibery-color-opacity70: 0.7;
507
- --fibery-color-opacity75: 0.75;
508
- --fibery-color-opacity80: 0.8;
509
- --fibery-color-opacity85: 0.85;
510
- --fibery-color-opacity90: 0.9;
511
- --fibery-color-whiteA10: rgba(255, 255, 255, 0.1);
512
- --fibery-color-whiteA40: rgba(255, 255, 255, 0.4);
513
- --fibery-color-whiteA100: rgb(255, 255, 255);
514
- --fibery-color-colorBgFileOverlay: rgba(0, 0, 0, 0.6);
515
- --fibery-color-colorBgScrollFade: rgba(255, 255, 255, 0.15);
516
- --fibery-color-colorStrokeSelectedOutline: rgba(0, 0, 0, 0.75);
517
- --fibery-color-scrollbar: rgba(158, 158, 158, 0.5);
484
+ --searchFiltersBg: rgb(252, 252, 252);
485
+ --selectedColorBorder: rgba(227, 227, 227, 0.25);
486
+ --colorBgSegmentedControlDefault: rgb(245, 245, 245);
487
+ --colorBgSegmentedControlActive: rgb(252, 252, 252);
488
+ --colorBgSegmentedControlHover: rgb(232, 232, 232);
489
+ --colorBorderSegmentedControlDefault: rgb(227, 227, 227);
490
+ --colorBgBannerNeutral: rgb(245, 245, 245);
491
+ --colorBgBannerAccent: #f1f5fe;
492
+ --colorBgBannerWarning: rgb(255, 251, 207);
493
+ --colorBgBannerError: rgb(255, 241, 241);
494
+ --colorBgBannerSuccess: rgb(239, 247, 245);
495
+ --colorIconBannerNeutral: rgb(94, 94, 94);
496
+ --colorIconBannerAccent: #345eb2;
497
+ --colorIconBannerWarning: rgb(129, 113, 0);
498
+ --colorIconBannerError: rgb(175, 36, 56);
499
+ --colorIconBannerSuccess: rgb(0, 116, 104);
500
+ --colorTextBannerNeutral: rgb(23, 23, 23);
501
+ --colorTextBannerAccent: #345eb2;
502
+ --colorTextBannerWarning: rgb(129, 113, 0);
503
+ --colorTextBannerError: rgb(175, 36, 56);
504
+ --colorTextBannerSuccess: rgb(0, 116, 104);
505
+ --colorBgChargebeeInfoBox: rgb(245, 245, 245);
506
+ --newCommentHorizontalRulerColor: rgb(237, 150, 151);
507
+ --colorBgErrorMessage: rgb(237, 150, 151);
508
+ --colorBorderLogoGrid: rgb(237, 237, 237);
509
+ --colorBorderLogoGridSubtle: rgba(237, 237, 237, 0.2);
510
+ --colorBorderLogoGridMedium: rgba(237, 237, 237, 0.4);
511
+ --colorStrokeLogoDashed: rgb(227, 227, 227);
512
+ --colorBgLogoCardTransparent: rgb(255, 255, 255);
513
+ --colorBgLogoCardDark: rgb(199, 199, 199);
514
+ --colorBgLogoCardMedium: rgb(237, 237, 237);
515
+ --colorBgSkeletonFrom: rgba(255, 255, 255, 0.05);
516
+ --colorBgSkeletonTo: rgba(255, 255, 255, 0.1);
517
+ --colorShadowInsetEdge: rgba(255, 255, 255, 0.05);
518
+ --colorShadowBorder: rgba(255, 255, 255, 0.1);
519
+ --colorShadowElevation: rgba(0, 0, 0, 0.1);
520
+ --colorShadowOutline: rgba(0, 0, 0, 0.2);
521
+ --colorPlaceholder: rgba(255, 255, 255, 0.4);
522
+ --colorPlaceholderSubtle: rgba(255, 255, 255, 0.25);
523
+ --colorBgSubtleLight: rgba(255, 255, 255, 0.05);
524
+ --colorStrokeSurface: rgb(255, 255, 255);
525
+ --colorTextMilestone: rgba(0, 0, 0, 0.5);
526
+ --colorSpinnerIcon: rgba(0, 0, 0, 0.9);
527
+ --colorSpinnerBg: rgba(0, 0, 0, 0.1);
528
+ --colorBgLaneSubtle: rgba(0, 0, 0, 0.05);
529
+ --opacity15: 0.15;
530
+ --opacity20: 0.2;
531
+ --opacity25: 0.25;
532
+ --opacity30: 0.3;
533
+ --opacity40: 0.4;
534
+ --opacity50: 0.5;
535
+ --opacity60: 0.6;
536
+ --opacity65: 0.65;
537
+ --opacity70: 0.7;
538
+ --opacity75: 0.75;
539
+ --opacity80: 0.8;
540
+ --opacity85: 0.85;
541
+ --opacity90: 0.9;
542
+ --whiteA10: rgba(255, 255, 255, 0.1);
543
+ --whiteA40: rgba(255, 255, 255, 0.4);
544
+ --whiteA100: rgb(255, 255, 255);
545
+ --colorBgFileOverlay: rgba(0, 0, 0, 0.6);
546
+ --colorBgScrollFade: rgba(255, 255, 255, 0.15);
547
+ --colorStrokeSelectedOutline: rgba(0, 0, 0, 0.75);
548
+ --scrollbar: rgba(158, 158, 158, 0.5);
518
549
  }
519
550
  :root.dark-theme {
520
- --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
521
- --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(255, 255, 255, 0.09);
522
- --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(255, 255, 255, 0.09);
523
- --fibery-color-shadow50: 0 0 0 1px rgba(237, 237, 237, 0.1);
524
- --fibery-color-shadow100: 0 1px 4px 0 rgba(23, 23, 23, 0.1);
525
- --fibery-color-shadow200: 0 2px 6px 0 rgba(23, 23, 23, 0.1);
526
- --fibery-color-shadow300: 0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15);
527
- --fibery-color-shadow400: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15);
528
- --fibery-color-shadow500: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15);
529
- --fibery-color-shadow600: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2);
530
- --fibery-color-actionMenuShadow:
551
+ --surfaceElevationS: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
552
+ --surfaceElevationM: 0 4px 8px 0 rgba(255, 255, 255, 0.09);
553
+ --surfaceElevationL: 0 8px 12px 0 rgba(255, 255, 255, 0.09);
554
+ --shadow50: 0 0 0 1px rgba(237, 237, 237, 0.1);
555
+ --shadow100: 0 1px 4px 0 rgba(23, 23, 23, 0.1);
556
+ --shadow200: 0 2px 6px 0 rgba(23, 23, 23, 0.1);
557
+ --shadow300: 0 3px 6px -3px rgba(23, 23, 23, 0.1), 0 8px 20px -4px rgba(23, 23, 23, 0.15);
558
+ --shadow400: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 16px 40px 0 rgba(23, 23, 23, 0.15);
559
+ --shadow500: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 20px 50px 0 rgba(23, 23, 23, 0.15);
560
+ --shadow600: 0 0 1px 0 rgba(23, 23, 23, 0.2), 0 26px 80px 0 rgba(23, 23, 23, 0.2);
561
+ --actionMenuShadow:
531
562
  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);
532
- --fibery-color-shadowPopup:
563
+ --shadowPopup: 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);
564
+ --shadowSidebar: -3px 0 10px 0 rgba(23, 23, 23, 0.8);
565
+ --highlightBgYellow: rgb(81, 63, 19);
566
+ --highlightFgYellow: rgb(223, 182, 90);
567
+ --highlightFgOnBgYellow: rgb(239, 197, 106);
568
+ --highlightBgGreen: rgb(49, 71, 35);
569
+ --highlightFgGreen: rgb(152, 201, 121);
570
+ --highlightFgOnBgGreen: rgb(168, 217, 136);
571
+ --highlightBgAquamarine: rgb(23, 73, 53);
572
+ --highlightFgAquamarine: rgb(100, 206, 160);
573
+ --highlightFgOnBgAquamarine: rgb(117, 223, 176);
574
+ --highlightBgAqua: rgb(0, 73, 67);
575
+ --highlightFgAqua: rgb(66, 207, 192);
576
+ --highlightFgOnBgAqua: rgb(87, 224, 209);
577
+ --highlightBgBlue: rgb(40, 67, 99);
578
+ --highlightFgBlue: rgb(138, 191, 255);
579
+ --highlightFgOnBgBlue: rgb(167, 207, 255);
580
+ --highlightBgPurple: rgb(78, 57, 93);
581
+ --highlightFgPurple: rgb(215, 170, 250);
582
+ --highlightFgOnBgPurple: rgb(226, 189, 255);
583
+ --highlightBgPink: rgb(92, 53, 75);
584
+ --highlightFgPink: rgb(248, 160, 210);
585
+ --highlightFgOnBgPink: rgb(255, 182, 222);
586
+ --highlightBgRed: rgb(97, 52, 49);
587
+ --highlightFgRed: rgb(255, 163, 155);
588
+ --highlightFgOnBgRed: rgb(255, 186, 180);
589
+ --highlightBgGrey: rgb(66, 66, 66);
590
+ --highlightFgGrey: rgb(187, 187, 187);
591
+ --highlightFgOnBgGrey: rgb(203, 203, 203);
592
+ --colorPickerCssFilter: none;
593
+ --colorAccentBgSubtle: rgba(73, 120, 212, 0.1);
594
+ --colorAccentBgMild: rgba(73, 120, 212, 0.15);
595
+ --colorAccentBgMedium: rgba(73, 120, 212, 0.2);
596
+ --colorAccentBgStrong: rgba(73, 120, 212, 0.3);
597
+ --colorAccentBgBold: rgba(73, 120, 212, 0.35);
598
+ --colorAccentBgVivid: rgba(73, 120, 212, 0.6);
599
+ --colorAccentStroke: rgba(73, 120, 212, 0.25);
600
+ --colorAccentStrokeHover: rgba(73, 120, 212, 0.4);
601
+ --colorAccentStrokeFocus: rgba(73, 120, 212, 0.5);
602
+ --colorAccentSolid: rgba(73, 120, 212, 0.8);
603
+ --colorAccent: #4b74d2;
604
+ --darkenPrimary: rgb(62, 96, 161);
605
+ --whiteColor: rgb(255, 255, 255);
606
+ --blackColor: rgb(0, 0, 0);
607
+ --mainBg: rgb(36, 36, 36);
608
+ --panelBg: rgb(23, 23, 23);
609
+ --panelBorder: 0 0 0 1px rgba(82, 82, 82, 0.2);
610
+ --panelContentBg: rgb(23, 23, 23);
611
+ --dbSettingsSidebarBg: rgb(28, 28, 28);
612
+ --dbSettingsSidebarItemHover: rgb(41, 41, 41);
613
+ --dbSettingsSidebarIconBg: rgb(36, 36, 36);
614
+ --dbSettingsSidebarIconBorder: 0 0 0 1px rgba(112, 112, 112, 0.2);
615
+ --dbSettingsCardBg: rgb(28, 28, 28);
616
+ --dbSettingsCardBorder: 0 0 0 1px rgba(51, 51, 51, 0.6);
617
+ --colorBgRelationContainer: rgb(28, 28, 28);
618
+ --colorAI: #8349b6;
619
+ --colorBgAI: rgba(131, 73, 182, 0.1);
620
+ --colorBgAIFloatingLauncher: rgb(41, 41, 41);
621
+ --colorBgAIFloatingPanelContent: rgb(36, 36, 36);
622
+ --colorBgAISidebarContent: rgb(23, 23, 23);
623
+ --colorBgFloatingPanel: rgb(41, 41, 41);
624
+ --shadowFloatingPanel: 0 0 0 1px rgb(51, 51, 51), 0 3px 12px 0 rgba(23, 23, 23, 0.5);
625
+ --pageContentBg: rgb(28, 28, 28);
626
+ --colorBgPopup: rgb(36, 36, 36);
627
+ --menuBg: rgb(36, 36, 36);
628
+ --menuTextColor: rgb(237, 237, 237);
629
+ --menuItemHoverColor: rgb(51, 51, 51);
630
+ --menuSelectedTextColor: rgb(247, 247, 247);
631
+ --menuIconColor: rgba(237, 237, 237, 0.7);
632
+ --textColor: rgb(237, 237, 237);
633
+ --textSelectionColor: rgba(75, 116, 210, 0.4);
634
+ --accentTextColor: rgb(127, 127, 127);
635
+ --disabledTextColor: rgb(112, 112, 112);
636
+ --inversedTextColor: rgb(51, 51, 51);
637
+ --colorTextSecondary: rgba(237, 237, 237, 0.65);
638
+ --linkColor: #97b1ed;
639
+ --linkBorder: 0.5px solid rgba(151, 177, 237, 0.4);
640
+ --linkHoverColor: #97b1ed;
641
+ --linkBorderHover: 0.5px solid rgba(151, 177, 237, 0.75);
642
+ --codeColor: rgb(237, 150, 151);
643
+ --codeBgColor: rgb(41, 41, 41);
644
+ --codeBlockBgColor: rgb(41, 41, 41);
645
+ --addedDiffTextColor: rgb(127, 192, 182);
646
+ --removedDiffTextColor: rgb(244, 146, 148);
647
+ --entityNodeColor: rgb(199, 199, 199);
648
+ --entityNodeBorder: 0.5px solid rgba(199, 199, 199, 0.4);
649
+ --entityNodeHoverColor: rgb(219, 219, 219);
650
+ --entityNodeBorderHover: 0.5px solid rgba(219, 219, 219, 0.8);
651
+ --entityNodeBgColor: rgb(36, 36, 36);
652
+ --shortcutTextColor: rgb(161, 161, 161);
653
+ --shortcutBorder: 1px solid rgba(127, 127, 127, 0.2);
654
+ --shortcutBorderColor: rgba(127, 127, 127, 0.2);
655
+ --inputBgColor: rgb(23, 23, 23);
656
+ --inputDisabledBgColor: rgba(51, 51, 51, 0.3);
657
+ --inputDisabledBorderColor: 0 0 0 1px rgba(82, 82, 82, 0.3);
658
+ --inputCopyBgColor: rgb(41, 41, 41);
659
+ --inputBorderColor: 0 0 0 1px rgba(82, 82, 82, 0.4);
660
+ --inputBorderHoverColor: 0 0 0 1px rgb(61, 61, 61);
661
+ --inputBorderFocusColor: 0 0 0 1px rgb(112, 112, 112);
662
+ --inputBorderBlendMode: lighten;
663
+ --inputPlaceholderTextColor: rgb(112, 112, 112);
664
+ --inputErrorBorderColor: 0 0 0 1px rgb(244, 179, 179);
665
+ --inputErrorBorderHoverColor: 0 0 0 1px rgba(244, 179, 179, 0.4);
666
+ --inputErrorBorderFocusColor: 0 0 0 1px rgba(244, 179, 179, 0.25);
667
+ --inputErrorBorderFocusShadow: 0 0 0 3px rgba(244, 179, 179, 0.25);
668
+ --inputBorderWarningColor: 0 0 0 1px rgb(109, 95, 0);
669
+ --buttonPrimaryColor: #4b74d2;
670
+ --buttonColor: rgb(127, 127, 127);
671
+ --buttonPrimaryTextColor: rgb(227, 227, 227);
672
+ --checkboxColor: rgba(237, 237, 237, 0.7);
673
+ --colorBorderBlockQuote: rgb(161, 161, 161);
674
+ --colorBgActionsMenu: rgb(36, 36, 36);
675
+ --colorBgActionsMenuItemHover: rgb(46, 46, 46);
676
+ --colorBgActionsMenuItemSelected: rgba(28, 43, 79, 0.8);
677
+ --colorBgActionsMenuItemSelectedHover: rgba(41, 59, 102, 0.8);
678
+ --colorBgActionsMenuItemDangerHover: rgba(225, 78, 91, 0.1);
679
+ --colorBgActionsMenuItemDangerActive: rgba(225, 78, 91, 0.8);
680
+ --actionMenuBg: rgb(36, 36, 36);
681
+ --actionMenuInnerBg: rgb(41, 41, 41);
682
+ --actionMenuHover: rgb(46, 46, 46);
683
+ --actionMenuInnerHover: rgba(51, 51, 51, 0.5);
684
+ --actionMenuButtonColor: rgb(28, 28, 28);
685
+ --actionMenuButtonHoverColor: rgb(36, 36, 36);
686
+ --actionMenuButtonShadow: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
687
+ --actionMenuSeparatorColor: rgba(255, 255, 255, 0.15);
688
+ --separatorColor: rgba(255, 255, 255, 0.1);
689
+ --separatorColorDimmed: rgba(255, 255, 255, 0.05);
690
+ --separatorBreadcrumbsColor: rgb(82, 82, 82);
691
+ --borderSeparatorDimmed: 0.5px solid rgba(255, 255, 255, 0.05);
692
+ --borderSeparator: 0.5px solid rgba(255, 255, 255, 0.1);
693
+ --borderSeparatorMedium: 0.5px solid rgba(255, 255, 255, 0.15);
694
+ --borderSeparatorStrong: 0.5px solid rgba(255, 255, 255, 0.25);
695
+ --borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
696
+ --borderSolidSeparator: 1px solid rgba(255, 255, 255, 0.1);
697
+ --borderSolidSeparatorDimmed: 1px solid rgba(255, 255, 255, 0.05);
698
+ --borderSolidFilterGroup: 1px solid rgba(255, 255, 255, 0.03);
699
+ --borderSolidGrid: 1px solid rgb(51, 51, 51);
700
+ --borderSolidOutlineNeutral: 1px solid rgb(61, 61, 61);
701
+ --borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
702
+ --borderSolidCommentBubble: 1px solid rgb(51, 51, 51);
703
+ --borderBlockQuote: 3px solid rgb(161, 161, 161);
704
+ --shadowCardDefault: 0 0 0 1px rgba(82, 82, 82, 0.4), 0 1px 4px 0 rgba(23, 23, 23, 0.1);
705
+ --shadowCardHover: 0 0 0 1px rgba(82, 82, 82, 0.4), 0 2px 6px 0 rgba(23, 23, 23, 0.1);
706
+ --shadowCardInset: inset 0 0 0 1px rgba(82, 82, 82, 0.4);
707
+ --iconColor: rgba(237, 237, 237, 0.7);
708
+ --colorIconDestructive: rgb(244, 146, 148);
709
+ --appIconColor: rgba(247, 247, 247, 0.7);
710
+ --appIconBgColor: rgba(247, 247, 247, 0.5);
711
+ --mentionBgColor: rgba(61, 61, 61, 0.4);
712
+ --colorBgSelectMenu: rgb(36, 36, 36);
713
+ --shadowSelectMenu:
533
714
  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);
534
- --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(23, 23, 23, 0.8);
535
- --fibery-color-highlightBgYellow: rgb(81, 63, 19);
536
- --fibery-color-highlightFgYellow: rgb(223, 182, 90);
537
- --fibery-color-highlightFgOnBgYellow: rgb(239, 197, 106);
538
- --fibery-color-highlightBgGreen: rgb(49, 71, 35);
539
- --fibery-color-highlightFgGreen: rgb(152, 201, 121);
540
- --fibery-color-highlightFgOnBgGreen: rgb(168, 217, 136);
541
- --fibery-color-highlightBgAquamarine: rgb(23, 73, 53);
542
- --fibery-color-highlightFgAquamarine: rgb(100, 206, 160);
543
- --fibery-color-highlightFgOnBgAquamarine: rgb(117, 223, 176);
544
- --fibery-color-highlightBgAqua: rgb(0, 73, 67);
545
- --fibery-color-highlightFgAqua: rgb(66, 207, 192);
546
- --fibery-color-highlightFgOnBgAqua: rgb(87, 224, 209);
547
- --fibery-color-highlightBgBlue: rgb(40, 67, 99);
548
- --fibery-color-highlightFgBlue: rgb(138, 191, 255);
549
- --fibery-color-highlightFgOnBgBlue: rgb(167, 207, 255);
550
- --fibery-color-highlightBgPurple: rgb(78, 57, 93);
551
- --fibery-color-highlightFgPurple: rgb(215, 170, 250);
552
- --fibery-color-highlightFgOnBgPurple: rgb(226, 189, 255);
553
- --fibery-color-highlightBgPink: rgb(92, 53, 75);
554
- --fibery-color-highlightFgPink: rgb(248, 160, 210);
555
- --fibery-color-highlightFgOnBgPink: rgb(255, 182, 222);
556
- --fibery-color-highlightBgRed: rgb(97, 52, 49);
557
- --fibery-color-highlightFgRed: rgb(255, 163, 155);
558
- --fibery-color-highlightFgOnBgRed: rgb(255, 186, 180);
559
- --fibery-color-highlightBgGrey: rgb(66, 66, 66);
560
- --fibery-color-highlightFgGrey: rgb(187, 187, 187);
561
- --fibery-color-highlightFgOnBgGrey: rgb(203, 203, 203);
562
- --fibery-color-colorPickerCssFilter: none;
563
- --fibery-color-mode: dark;
564
- --fibery-color-colorAccentBgSubtle: rgba(73, 120, 212, 0.1);
565
- --fibery-color-colorAccentBgMild: rgba(73, 120, 212, 0.15);
566
- --fibery-color-colorAccentBgMedium: rgba(73, 120, 212, 0.2);
567
- --fibery-color-colorAccentBgStrong: rgba(73, 120, 212, 0.3);
568
- --fibery-color-colorAccentBgBold: rgba(73, 120, 212, 0.35);
569
- --fibery-color-colorAccentBgVivid: rgba(73, 120, 212, 0.6);
570
- --fibery-color-colorAccentStroke: rgba(73, 120, 212, 0.25);
571
- --fibery-color-colorAccentStrokeHover: rgba(73, 120, 212, 0.4);
572
- --fibery-color-colorAccentStrokeFocus: rgba(73, 120, 212, 0.5);
573
- --fibery-color-colorAccentSolid: rgba(73, 120, 212, 0.8);
574
- --fibery-color-colorAccent: #4b74d2;
575
- --fibery-color-darkenPrimary: rgb(62, 96, 161);
576
- --fibery-color-whiteColor: rgb(255, 255, 255);
577
- --fibery-color-blackColor: rgb(0, 0, 0);
578
- --fibery-color-mainBg: rgb(36, 36, 36);
579
- --fibery-color-panelBg: rgb(23, 23, 23);
580
- --fibery-color-panelBorder: 0 0 0 1px rgba(82, 82, 82, 0.2);
581
- --fibery-color-panelContentBg: rgb(23, 23, 23);
582
- --fibery-color-dbSettingsSidebarBg: rgb(28, 28, 28);
583
- --fibery-color-dbSettingsSidebarItemHover: rgb(41, 41, 41);
584
- --fibery-color-dbSettingsSidebarIconBg: rgb(36, 36, 36);
585
- --fibery-color-dbSettingsSidebarIconBorder: 0 0 0 1px rgba(112, 112, 112, 0.2);
586
- --fibery-color-dbSettingsCardBg: rgb(28, 28, 28);
587
- --fibery-color-dbSettingsCardBorder: 0 0 0 1px rgba(51, 51, 51, 0.6);
588
- --fibery-color-colorBgRelationContainer: rgb(28, 28, 28);
589
- --fibery-color-colorAI: #8349b6;
590
- --fibery-color-colorBgAI: rgba(131, 73, 182, 0.1);
591
- --fibery-color-colorBgAIFloatingLauncher: rgb(41, 41, 41);
592
- --fibery-color-colorBgAIFloatingPanelContent: rgb(36, 36, 36);
593
- --fibery-color-colorBgAISidebarContent: rgb(23, 23, 23);
594
- --fibery-color-colorBgFloatingPanel: rgb(41, 41, 41);
595
- --fibery-color-shadowFloatingPanel: 0 0 0 1px rgb(51, 51, 51), 0 3px 12px 0 rgba(23, 23, 23, 0.5);
596
- --fibery-color-pageContentBg: rgb(28, 28, 28);
597
- --fibery-color-colorBgPopup: rgb(36, 36, 36);
598
- --fibery-color-menuBg: rgb(36, 36, 36);
599
- --fibery-color-menuTextColor: rgb(237, 237, 237);
600
- --fibery-color-menuItemHoverColor: rgb(51, 51, 51);
601
- --fibery-color-menuSelectedTextColor: rgb(247, 247, 247);
602
- --fibery-color-menuIconColor: rgba(237, 237, 237, 0.7);
603
- --fibery-color-textColor: rgb(237, 237, 237);
604
- --fibery-color-textSelectionColor: rgba(75, 116, 210, 0.4);
605
- --fibery-color-accentTextColor: rgb(127, 127, 127);
606
- --fibery-color-disabledTextColor: rgb(112, 112, 112);
607
- --fibery-color-inversedTextColor: rgb(51, 51, 51);
608
- --fibery-color-colorTextSecondary: rgba(237, 237, 237, 0.65);
609
- --fibery-color-linkColor: #97b1ed;
610
- --fibery-color-linkBorder: 0.5px solid rgba(151, 177, 237, 0.4);
611
- --fibery-color-linkHoverColor: #97b1ed;
612
- --fibery-color-linkBorderHover: 0.5px solid rgba(151, 177, 237, 0.75);
613
- --fibery-color-codeColor: rgb(237, 150, 151);
614
- --fibery-color-codeBgColor: rgb(41, 41, 41);
615
- --fibery-color-codeBlockBgColor: rgb(41, 41, 41);
616
- --fibery-color-addedDiffTextColor: rgb(127, 192, 182);
617
- --fibery-color-removedDiffTextColor: rgb(244, 146, 148);
618
- --fibery-color-entityNodeColor: rgb(199, 199, 199);
619
- --fibery-color-entityNodeBorder: 0.5px solid rgba(199, 199, 199, 0.4);
620
- --fibery-color-entityNodeHoverColor: rgb(219, 219, 219);
621
- --fibery-color-entityNodeBorderHover: 0.5px solid rgba(219, 219, 219, 0.8);
622
- --fibery-color-entityNodeBgColor: rgb(36, 36, 36);
623
- --fibery-color-shortcutTextColor: rgb(161, 161, 161);
624
- --fibery-color-shortcutBorder: 1px solid rgba(127, 127, 127, 0.2);
625
- --fibery-color-shortcutBorderColor: rgba(127, 127, 127, 0.2);
626
- --fibery-color-inputBgColor: rgb(23, 23, 23);
627
- --fibery-color-inputDisabledBgColor: rgba(51, 51, 51, 0.3);
628
- --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(82, 82, 82, 0.3);
629
- --fibery-color-inputCopyBgColor: rgb(41, 41, 41);
630
- --fibery-color-inputBorderColor: 0 0 0 1px rgba(82, 82, 82, 0.4);
631
- --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(61, 61, 61);
632
- --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(112, 112, 112);
633
- --fibery-color-inputBorderBlendMode: lighten;
634
- --fibery-color-inputPlaceholderTextColor: rgb(112, 112, 112);
635
- --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(244, 179, 179);
636
- --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(244, 179, 179, 0.4);
637
- --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(244, 179, 179, 0.25);
638
- --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(244, 179, 179, 0.25);
639
- --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(109, 95, 0);
640
- --fibery-color-buttonPrimaryColor: #4b74d2;
641
- --fibery-color-buttonColor: rgb(127, 127, 127);
642
- --fibery-color-buttonPrimaryTextColor: rgb(227, 227, 227);
643
- --fibery-color-checkboxColor: rgba(237, 237, 237, 0.7);
644
- --fibery-color-colorBorderBlockQuote: rgb(161, 161, 161);
645
- --fibery-color-colorBgActionsMenu: rgb(36, 36, 36);
646
- --fibery-color-colorBgActionsMenuItemHover: rgb(46, 46, 46);
647
- --fibery-color-colorBgActionsMenuItemSelected: rgba(28, 43, 79, 0.8);
648
- --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(41, 59, 102, 0.8);
649
- --fibery-color-colorBgActionsMenuItemDangerHover: rgba(225, 78, 91, 0.1);
650
- --fibery-color-colorBgActionsMenuItemDangerActive: rgba(225, 78, 91, 0.8);
651
- --fibery-color-actionMenuBg: rgb(36, 36, 36);
652
- --fibery-color-actionMenuInnerBg: rgb(41, 41, 41);
653
- --fibery-color-actionMenuHover: rgb(46, 46, 46);
654
- --fibery-color-actionMenuInnerHover: rgba(51, 51, 51, 0.5);
655
- --fibery-color-actionMenuButtonColor: rgb(28, 28, 28);
656
- --fibery-color-actionMenuButtonHoverColor: rgb(36, 36, 36);
657
- --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
658
- --fibery-color-actionMenuSeparatorColor: rgba(255, 255, 255, 0.15);
659
- --fibery-color-separatorColor: rgba(255, 255, 255, 0.1);
660
- --fibery-color-separatorColorDimmed: rgba(255, 255, 255, 0.05);
661
- --fibery-color-separatorBreadcrumbsColor: rgb(82, 82, 82);
662
- --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(255, 255, 255, 0.05);
663
- --fibery-color-borderSeparator: 0.5px solid rgba(255, 255, 255, 0.1);
664
- --fibery-color-borderSeparatorMedium: 0.5px solid rgba(255, 255, 255, 0.15);
665
- --fibery-color-borderSeparatorStrong: 0.5px solid rgba(255, 255, 255, 0.25);
666
- --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
667
- --fibery-color-borderSolidSeparator: 1px solid rgba(255, 255, 255, 0.1);
668
- --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(255, 255, 255, 0.05);
669
- --fibery-color-borderSolidFilterGroup: 1px solid rgba(255, 255, 255, 0.03);
670
- --fibery-color-borderSolidGrid: 1px solid rgb(51, 51, 51);
671
- --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(61, 61, 61);
672
- --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
673
- --fibery-color-borderSolidCommentBubble: 1px solid rgb(51, 51, 51);
674
- --fibery-color-borderBlockQuote: 3px solid rgb(161, 161, 161);
675
- --fibery-color-shadowCardDefault: 0 0 0 1px rgba(82, 82, 82, 0.4), 0 1px 4px 0 rgba(23, 23, 23, 0.1);
676
- --fibery-color-shadowCardHover: 0 0 0 1px rgba(82, 82, 82, 0.4), 0 2px 6px 0 rgba(23, 23, 23, 0.1);
677
- --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(82, 82, 82, 0.4);
678
- --fibery-color-iconColor: rgba(237, 237, 237, 0.7);
679
- --fibery-color-appIconColor: rgba(247, 247, 247, 0.7);
680
- --fibery-color-appIconBgColor: rgba(247, 247, 247, 0.5);
681
- --fibery-color-mentionBgColor: rgba(61, 61, 61, 0.4);
682
- --fibery-color-colorBgSelectMenu: rgb(36, 36, 36);
683
- --fibery-color-shadowSelectMenu:
684
- 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);
685
- --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
686
- --fibery-color-colorBgListItemGeneralHover: rgb(41, 41, 41);
687
- --fibery-color-colorBgListItemGeneralFocus: rgb(51, 51, 51);
688
- --fibery-color-colorBgListItemGeneralSelected: #223259;
689
- --fibery-color-colorBgListItemGeneralSelectedHover: #293b66;
690
- --fibery-color-colorBgListItemGeneralSelectedFocus: #293b66;
691
- --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
692
- --fibery-color-colorTextListItemGeneralDisabled: rgb(112, 112, 112);
693
- --fibery-color-colorBgListItemGeneralSelectedDisabled: #223259;
694
- --fibery-color-opacityListItemGeneralDisabled: 0.4;
695
- --fibery-color-colorSearchSubtitle: rgb(112, 112, 112);
696
- --fibery-color-colorBgSearchPanel: rgb(28, 28, 28);
697
- --fibery-color-colorBgSearchRowHover: rgb(36, 36, 36);
698
- --fibery-color-colorBgSearchRowCreateHover: #1c2b4f;
699
- --fibery-color-opacitySearchItemDone: 0.4;
700
- --fibery-color-colorBgEntityBoxDefault: rgb(36, 36, 36);
701
- --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(46, 46, 46);
702
- --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
703
- --fibery-color-colorBgEntityBoxDefaultHover: rgb(41, 41, 41);
704
- --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(23, 23, 23, 0.1);
705
- --fibery-color-colorBgEntityBoxDefaultFocus: rgb(36, 36, 36);
706
- --fibery-color-colorOverlayEntityBoxDefaultFocus: #4b74d2;
707
- --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(75, 116, 210, 0.4);
708
- --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(41, 41, 41);
709
- --fibery-color-colorOverlayEntityBoxDefaultFocusHover: #4b74d2;
710
- --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(75, 116, 210, 0.6);
711
- --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
712
- --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(23, 23, 23, 0.1);
713
- --fibery-color-colorBgEntityBoxSelected: #1a2642;
714
- --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
715
- --fibery-color-colorBgEntityBoxSelectedHover: #1a2642;
716
- --fibery-color-shadowStrokeEntityBoxSelectedHover: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
717
- --fibery-color-colorBgEntityBoxSelectedDrag: #1a2642;
718
- --fibery-color-shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
719
- --fibery-color-opacityEntityBoxDisabled: 0.65;
720
- --fibery-color-opacityEntityBoxDisabledHover: 0.75;
721
- --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
722
- --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
723
- --fibery-color-entityCardBgColor: rgb(46, 46, 46);
724
- --fibery-color-entityCardSelectedColor: rgba(51, 51, 51, 0.5);
725
- --fibery-color-entityCardHoverColor: rgba(51, 51, 51, 0.5);
726
- --fibery-color-entityCardDoneColor: rgba(46, 46, 46, 0.3);
727
- --fibery-color-entityCardShadow: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
728
- --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
729
- --fibery-color-colorBgSegmentedControl: rgba(28, 28, 28, 0.8);
730
- --fibery-color-colorBgMenuHeaderAvatar: rgb(28, 28, 28);
731
- --fibery-color-shadowMenuHeaderAvatar: 0 0 0 1px rgba(112, 112, 112, 0.2);
732
- --fibery-color-opacityMenuItemDragged: 0.4;
733
- --fibery-color-colorBgMenuItemSelectedDragged: #293b66;
734
- --fibery-color-colorTextMenuItem: rgba(237, 237, 237, 0.9);
735
- --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
736
- --fibery-color-colorBgMenuItemHover: rgb(46, 46, 46);
737
- --fibery-color-colorBgMenuItemFocus: rgb(51, 51, 51);
738
- --fibery-color-colorBgMenuItemSelected: #1a2642;
739
- --fibery-color-colorBgMenuItemSelectedHover: #223259;
740
- --fibery-color-colorBgPinnedFieldsLabel: rgb(161, 161, 161);
741
- --fibery-color-colorBgObjectEditorSeparator: rgb(237, 237, 237);
742
- --fibery-color-colorBgMenuItemSelectedFocused: #223259;
743
- --fibery-color-colorBgFieldEditorContainer: rgb(36, 36, 36);
744
- --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(28, 28, 28);
745
- --fibery-color-allowedDropColor: rgb(41, 41, 41);
746
- --fibery-color-relationViewBgColor: rgb(36, 36, 36);
747
- --fibery-color-mySpaceIconColor: rgb(122, 132, 142);
748
- --fibery-color-mySpaceIconBg: rgba(106, 132, 155, 0.2);
749
- --fibery-color-privateIconColor: rgb(105, 172, 94);
750
- --fibery-color-privateIconBg: rgba(105, 172, 94, 0.2);
751
- --fibery-color-favoritesIconColor: rgb(238, 166, 74);
752
- --fibery-color-favoritesIconBg: rgba(251, 163, 47, 0.2);
753
- --fibery-color-swatchDefault: #2978fb;
754
- --fibery-color-unitBg: rgb(51, 51, 51);
755
- --fibery-color-unitBgHover: rgb(61, 61, 61);
756
- --fibery-color-colorBgBadgeNeutral: rgba(41, 41, 41, 0.8);
757
- --fibery-color-colorBgBadgeAccent: rgba(28, 43, 79, 0.8);
758
- --fibery-color-colorBgBadgeSuccess: rgb(7, 61, 55);
759
- --fibery-color-colorBgBadgeWarning: rgb(58, 50, 0);
760
- --fibery-color-colorBgBadgeError: rgb(91, 26, 32);
761
- --fibery-color-colorTextBadgeNeutral: rgb(161, 161, 161);
762
- --fibery-color-colorTextBadgeAccent: #97b1ed;
763
- --fibery-color-colorTextBadgeSuccess: rgb(127, 192, 182);
764
- --fibery-color-colorTextBadgeWarning: rgb(225, 199, 0);
765
- --fibery-color-colorTextBadgeError: rgb(244, 146, 148);
766
- --fibery-color-badgeBgColor: rgba(120, 120, 120, 0.2);
767
- --fibery-color-tooltipBgColor: rgb(51, 51, 51);
768
- --fibery-color-todayMarkerColor: rgb(104, 33, 39);
769
- --fibery-color-viewBgOverlayColor: rgba(23, 23, 23, 0.6);
770
- --fibery-color-floatEditorMenuBg: rgb(51, 51, 51);
771
- --fibery-color-floatEditorActiveColor: #97b1ed;
772
- --fibery-color-commentColor: rgba(246, 217, 1, 0.4);
773
- --fibery-color-cellBackgroundColor: rgb(28, 28, 28);
774
- --fibery-color-cellBackgroundHoverColor: rgba(51, 51, 51, 0.3);
775
- --fibery-color-cellBorderColor: rgba(112, 112, 112, 0.5);
776
- --fibery-color-cellPinnedBorderColor: rgba(112, 112, 112, 0.7);
777
- --fibery-color-tableRowWarningColor: rgba(246, 217, 1, 0.4);
778
- --fibery-color-errorBgColor: rgba(213, 50, 72, 0.6);
779
- --fibery-color-errorTextColor: rgb(244, 179, 179);
780
- --fibery-color-errorButtonColor: rgb(225, 78, 91);
781
- --fibery-color-warningBgColor: rgba(109, 95, 0, 0.6);
782
- --fibery-color-warningButtonColor: rgb(225, 199, 0);
783
- --fibery-color-infoBox: rgba(246, 217, 1, 0.2);
784
- --fibery-color-appCardBgColor: rgb(28, 28, 28);
785
- --fibery-color-appCardHoverColor: rgb(28, 28, 28);
786
- --fibery-color-modalBg: rgba(28, 28, 28, 0.5);
787
- --fibery-color-modalContentBg: rgb(36, 36, 36);
788
- --fibery-color-progressIconBg: rgba(255, 255, 255, 0.18);
789
- --fibery-color-progressIconFill: rgba(255, 255, 255, 0.59);
790
- --fibery-color-formBg: rgb(28, 28, 28);
791
- --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(23, 23, 23, 0.4);
792
- --fibery-color-formEditorFieldBg: rgb(41, 41, 41);
793
- --fibery-color-filterGroup1Bg: rgb(51, 51, 51);
794
- --fibery-color-filterGroup2Bg: rgb(61, 61, 61);
795
- --fibery-color-filterGroupBorder: rgba(255, 255, 255, 0.03);
796
- --fibery-color-colorBgNotificationHover: rgb(28, 28, 28);
797
- --fibery-color-colorBgNotificationSelected: #151c2d;
798
- --fibery-color-colorBgNotificationSelectedHover: #1a2642;
799
- --fibery-color-disabledInversedTextColor: rgba(255, 255, 255, 0.25);
800
- --fibery-color-success: rgb(0, 142, 128);
801
- --fibery-color-danger: rgb(225, 78, 91);
802
- --fibery-color-active: rgb(225, 78, 91);
803
- --fibery-color-warning: rgb(109, 95, 0);
804
- --fibery-color-cardBg: rgb(51, 51, 51);
805
- --fibery-color-selectedImageBorder: rgba(255, 255, 255, 0.59);
806
- --fibery-color-transparent: rgba(255, 255, 255, 0);
807
- --fibery-color-progressBg: rgb(237, 237, 237);
808
- --fibery-color-progressText: rgb(94, 94, 94);
809
- --fibery-color-progressFillBg: rgb(94, 94, 94);
810
- --fibery-color-progressFillText: rgb(255, 255, 255);
811
- --fibery-color-progressBarFillNeutral: rgba(112, 112, 112, 0.2);
812
- --fibery-color-progressBarFill: #5f85dd;
813
- --fibery-color-progressBarBg: rgba(95, 133, 221, 0.25);
814
- --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
815
- --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
816
- --fibery-color-richTextTableBorder: rgba(255, 255, 255, 0.18);
817
- --fibery-color-colorBgDropLine: #3258ae;
818
- --fibery-color-viewBg: rgb(23, 23, 23);
819
- --fibery-color-colorBgViewMetaItem: rgb(28, 28, 28);
820
- --fibery-color-collectionViewBg: rgb(28, 28, 28);
821
- --fibery-color-collectionViewBorder: 0 0 0 1px rgba(82, 82, 82, 0.3);
822
- --fibery-color-viewSecondaryBg: rgb(28, 28, 28);
823
- --fibery-color-viewHighlightBg: #1a2642;
824
- --fibery-color-boardBg: rgb(23, 23, 23);
825
- --fibery-color-boardBgWithOpacity80: rgba(23, 23, 23, 0.8);
826
- --fibery-color-boardAxisBgHover: rgb(41, 41, 41);
827
- --fibery-color-gridHeaderBgColor: rgb(36, 36, 36);
828
- --fibery-color-gridHeaderHoverBgColor: rgb(41, 41, 41);
829
- --fibery-color-gridHeaderTextColor: rgb(161, 161, 161);
830
- --fibery-color-gridCellBgColor: rgb(28, 28, 28);
831
- --fibery-color-gridCellBorderColor: rgb(51, 51, 51);
832
- --fibery-color-gridDisabledCellBgColor: rgb(36, 36, 36);
833
- --fibery-color-gridSelectedCellBgColor: #1a2642;
834
- --fibery-color-gridHighlightedCellBgColor: #223259;
835
- --fibery-color-gridSelectedCellBorderColor: #2d4786;
836
- --fibery-color-gridSelectedPinnedCellBorderColor: #2d4786;
837
- --fibery-color-gridDisabledSelectedCellBgColor: #223259;
838
- --fibery-color-gridActiveCellBorderColor: #4b74d2;
839
- --fibery-color-timelineEntityHandleColor: #2d4786;
840
- --fibery-color-timelineDependencyHoverBgColor: #3258ae;
841
- --fibery-color-timelineDependencyOverlapBgColor: rgb(213, 50, 72);
842
- --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(244, 146, 148);
843
- --fibery-color-timelineCellBgColor: rgb(23, 23, 23);
844
- --fibery-color-timelineCellWeekendBgColor: rgb(28, 28, 28);
845
- --fibery-color-timelineCellTodayBgColor: #151c2d;
846
- --fibery-color-timelineCreateEntityPlaceholderBgColor: rgb(61, 61, 61);
847
- --fibery-color-colorBgButtonSolidAccentDefault: #4b74d2;
848
- --fibery-color-colorBgButtonSolidAccentHover: #5f85dd;
849
- --fibery-color-colorBgButtonSolidNeutralDefault: rgb(237, 237, 237);
850
- --fibery-color-colorBgButtonSolidNeutralHover: rgb(255, 255, 255);
851
- --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(213, 50, 72);
852
- --fibery-color-colorBgButtonSolidDestructiveHover: rgb(225, 78, 91);
853
- --fibery-color-colorTextButtonSolidAccent: rgb(255, 255, 255);
854
- --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 255, 255, 0.8);
855
- --fibery-color-colorTextButtonSolidNeutral: rgb(28, 28, 28);
856
- --fibery-color-colorTextButtonSolidNeutralActive: rgba(28, 28, 28, 0.8);
857
- --fibery-color-colorTextButtonSolidDestructive: rgb(255, 255, 255);
858
- --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 255, 255, 0.8);
859
- --fibery-color-colorIconButtonSolidAccent: rgb(255, 255, 255);
860
- --fibery-color-colorIconButtonSolidNeutral: rgb(82, 82, 82);
861
- --fibery-color-colorIconButtonSolidDestructive: rgb(255, 255, 255);
862
- --fibery-color-colorBorderButtonOutlineAccentDefault: #3258ae;
863
- --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(61, 61, 61);
864
- --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(135, 27, 42);
865
- --fibery-color-colorBgButtonOutlineAccentDefault: rgb(23, 23, 23);
866
- --fibery-color-colorBgButtonOutlineAccentHover: #1a2642;
867
- --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(23, 23, 23);
868
- --fibery-color-colorBgButtonOutlineNeutralHover: rgb(41, 41, 41);
869
- --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(23, 23, 23);
870
- --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(80, 21, 27);
871
- --fibery-color-colorTextButtonOutlineAccent: #97b1ed;
872
- --fibery-color-colorTextButtonOutlineAccentActive: rgba(151, 177, 237, 0.8);
873
- --fibery-color-colorTextButtonOutlineNeutral: rgb(161, 161, 161);
874
- --fibery-color-colorTextButtonOutlineNeutralActive: rgba(237, 237, 237, 0.8);
875
- --fibery-color-colorTextButtonOutlineDestructive: rgb(244, 146, 148);
876
- --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(244, 146, 148, 0.8);
877
- --fibery-color-colorIconButtonOutlineAccent: #97b1ed;
878
- --fibery-color-colorIconButtonOutlineNeutral: rgb(161, 161, 161);
879
- --fibery-color-colorIconButtonOutlineDestructive: rgb(244, 146, 148);
880
- --fibery-color-colorBgButtonSoftAccentDefault: #1c2b4f;
881
- --fibery-color-colorBgButtonSoftAccentHover: #293b66;
882
- --fibery-color-colorBgButtonSoftNeutralDefault: rgb(36, 36, 36);
883
- --fibery-color-colorBgButtonSoftNeutralHover: rgb(61, 61, 61);
884
- --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(80, 21, 27);
885
- --fibery-color-colorBgButtonSoftDestructiveHover: rgb(104, 33, 39);
886
- --fibery-color-colorTextButtonSoftAccent: #97b1ed;
887
- --fibery-color-colorTextButtonSoftAccentActive: rgba(151, 177, 237, 0.8);
888
- --fibery-color-colorTextButtonSoftNeutral: rgb(161, 161, 161);
889
- --fibery-color-colorTextButtonSoftNeutralActive: rgba(161, 161, 161, 0.8);
890
- --fibery-color-colorTextButtonSoftDestructive: rgb(244, 146, 148);
891
- --fibery-color-colorTextButtonSoftDestructiveActive: rgba(244, 146, 148, 0.8);
892
- --fibery-color-colorIconButtonSoftAccent: #97b1ed;
893
- --fibery-color-colorIconButtonSoftNeutral: rgb(161, 161, 161);
894
- --fibery-color-colorIconButtonSoftDestructive: rgb(244, 146, 148);
895
- --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
896
- --fibery-color-colorBgButtonGhostAccentHover: rgba(28, 43, 79, 0.8);
897
- --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
898
- --fibery-color-colorBgButtonGhostNeutralHover: rgba(51, 51, 51, 0.8);
899
- --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
900
- --fibery-color-colorBgButtonGhostDestructiveHover: rgb(80, 21, 27);
901
- --fibery-color-colorTextButtonGhostAccent: #97b1ed;
902
- --fibery-color-colorTextButtonGhostAccentActive: rgba(151, 177, 237, 0.8);
903
- --fibery-color-colorTextButtonGhostNeutral: rgb(161, 161, 161);
904
- --fibery-color-colorTextButtonGhostNeutralActive: rgba(161, 161, 161, 0.8);
905
- --fibery-color-colorTextButtonGhostDestructive: rgb(244, 146, 148);
906
- --fibery-color-colorTextButtonGhostDestructiveActive: rgba(244, 146, 148, 0.8);
907
- --fibery-color-colorIconButtonGhostAccent: #97b1ed;
908
- --fibery-color-colorIconButtonGhostNeutral: rgb(161, 161, 161);
909
- --fibery-color-colorIconButtonGhostDestructive: rgb(244, 146, 148);
910
- --fibery-color-colorBorderAccentFocusRing: rgba(73, 120, 212, 0.3);
911
- --fibery-color-colorBorderNeutralFocusRing: rgba(158, 158, 158, 0.3);
912
- --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 78, 0.3);
913
- --fibery-color-colorBgReactionsDefault: rgb(28, 28, 28);
914
- --fibery-color-colorBgReactionsHover: rgb(51, 51, 51);
915
- --fibery-color-colorBorderReactionsHover: rgb(112, 112, 112);
916
- --fibery-color-colorBgReactionsSelectedDefault: #3258ae;
917
- --fibery-color-colorBorderReactionsSelectedDefault: #3258ae;
918
- --fibery-color-colorBgReactionsSelectedHover: #3869cc;
919
- --fibery-color-colorBorderReactionsSelectedHover: #3869cc;
920
- --fibery-color-colorTextReactionsSelected: rgb(237, 237, 237);
921
- --fibery-color-colorBgToastDefault: rgb(23, 23, 23);
922
- --fibery-color-colorBgDbTabHover: rgb(41, 41, 41);
923
- --fibery-color-colorBgDbTabFocus: rgb(51, 51, 51);
924
- --fibery-color-colorBgTabHover: rgba(161, 161, 161, 0.1);
925
- --fibery-color-colorBgMessageContainer: rgb(36, 36, 36);
926
- --fibery-color-colorBgMessageContainerHover: rgb(41, 41, 41);
927
- --fibery-color-colorBgEntityAvatarDefault: #131720;
928
- --fibery-color-colorBgEntityAvatarHover: #1a2642;
929
- --fibery-color-colorTextEntityAvatarDefault: #3258ae;
930
- --fibery-color-colorTextEntityAvatarHover: #4b74d2;
931
- --fibery-color-colorBgMessageHighlighted: rgb(28, 28, 28);
932
- --fibery-color-colorBgCommentHover: rgb(28, 28, 28);
933
- --fibery-color-colorBgCodeEditor: rgb(36, 36, 36);
934
- --fibery-color-colorBgEditorImageZoomed: rgb(51, 51, 51);
935
- --fibery-color-colorMermaidPrimaryColor: rgb(82, 82, 82);
936
- --fibery-color-colorMermaidPrimaryBorderColor: rgb(112, 112, 112);
937
- --fibery-color-colorMermaidLineColor: rgb(112, 112, 112);
938
- --fibery-color-colorBgWhiteboard: rgb(23, 23, 23);
939
- --fibery-color-colorGridDotWhiteboard: rgb(51, 51, 51);
940
- --fibery-color-colorSelectionWhiteboardBorderEnabled: #3258ae;
941
- --fibery-color-colorHighlightWhiteboardSelection: #3258ae;
942
- --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(112, 112, 112, 0.5);
943
- --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(112, 112, 112, 0.5);
944
- --fibery-color-colorPlaceholderWhiteboardDefault: rgba(50, 88, 174, 0.2);
945
- --fibery-color-colorLinkPointWhiteboardDefault: #3258ae;
946
- --fibery-color-colorLinkPointWhiteboardFillDefault: #0d0d0d;
947
- --fibery-color-colorMapWhiteboardPreviewDefault: rgba(50, 88, 174, 0.4);
948
- --fibery-color-colorCardWhiteboardShadowDefault: rgba(161, 161, 161, 0.05);
949
- --fibery-color-colorCardWhiteboardBgDefault: rgb(46, 46, 46);
950
- --fibery-color-colorCardWhiteboardBorderDefault: rgba(237, 237, 237, 0.2);
951
- --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(237, 237, 237, 0.6);
952
- --fibery-color-colorUnitWhiteboardBgDefault: rgb(51, 51, 51);
953
- --fibery-color-colorUnitWhiteboardBorderDefault: rgba(237, 237, 237, 0.25);
954
- --fibery-color-colorSectionWhiteboardBgInactive: rgb(28, 28, 28);
955
- --fibery-color-colorSectionWhiteboardBorderInactive: rgb(51, 51, 51);
956
- --fibery-color-colorEmbedWhiteboardEditBorder: rgba(0, 112, 99, 0.9);
957
- --fibery-color-colorTextWhiteboardDefault: rgb(237, 237, 237);
958
- --fibery-color-colorTextWhiteboardDisabled: rgb(112, 112, 112);
959
- --fibery-color-colorTextWhiteboardAccent: rgba(23, 23, 23, 0.6);
960
- --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 255, 255);
961
- --fibery-color-instrumentsMenuBg: rgb(41, 41, 41);
962
- --fibery-color-instrumentsMenuShadow:
715
+ --colorBgListItemGeneral: rgba(255, 255, 255, 0);
716
+ --colorBgListItemGeneralHover: rgb(41, 41, 41);
717
+ --colorBgListItemGeneralFocus: rgb(51, 51, 51);
718
+ --colorBgListItemGeneralSelected: #223259;
719
+ --colorBgListItemGeneralSelectedHover: #293b66;
720
+ --colorBgListItemGeneralSelectedFocus: #293b66;
721
+ --colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
722
+ --colorTextListItemGeneralDisabled: rgb(112, 112, 112);
723
+ --colorBgListItemGeneralSelectedDisabled: #223259;
724
+ --opacityListItemGeneralDisabled: 0.4;
725
+ --colorSearchSubtitle: rgb(112, 112, 112);
726
+ --colorBgSearchPanel: rgb(28, 28, 28);
727
+ --colorBgSearchRowHover: rgb(36, 36, 36);
728
+ --colorBgSearchRowCreateHover: #1c2b4f;
729
+ --opacitySearchItemDone: 0.4;
730
+ --colorBgEntityBoxDefault: rgb(36, 36, 36);
731
+ --shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(46, 46, 46);
732
+ --shadowEntityBoxDefault: 0 2px 4px 0 rgba(23, 23, 23, 0.05);
733
+ --colorBgEntityBoxDefaultHover: rgb(41, 41, 41);
734
+ --shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(23, 23, 23, 0.1);
735
+ --colorBgEntityBoxDefaultFocus: rgb(36, 36, 36);
736
+ --colorOverlayEntityBoxDefaultFocus: #4b74d2;
737
+ --shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(75, 116, 210, 0.4);
738
+ --colorBgEntityBoxDefaultFocusHover: rgb(41, 41, 41);
739
+ --colorOverlayEntityBoxDefaultFocusHover: #4b74d2;
740
+ --shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(75, 116, 210, 0.6);
741
+ --opacityEntityBoxDefaultDrag: 0.4;
742
+ --shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(23, 23, 23, 0.1);
743
+ --colorBgEntityBoxSelected: #1a2642;
744
+ --shadowStrokeEntityBoxSelected: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
745
+ --colorBgEntityBoxSelectedHover: #1a2642;
746
+ --shadowStrokeEntityBoxSelectedHover: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
747
+ --colorBgEntityBoxSelectedDrag: #1a2642;
748
+ --shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px #4b74d2, 0 0 0 3px rgba(75, 116, 210, 0.4);
749
+ --opacityEntityBoxDisabled: 0.65;
750
+ --opacityEntityBoxDisabledHover: 0.75;
751
+ --opacityEntityBoxDisabledFocus: 0.75;
752
+ --opacityEntityBoxDisabledDrag: 0.4;
753
+ --entityCardBgColor: rgb(46, 46, 46);
754
+ --entityCardSelectedColor: rgba(51, 51, 51, 0.5);
755
+ --entityCardHoverColor: rgba(51, 51, 51, 0.5);
756
+ --entityCardDoneColor: rgba(46, 46, 46, 0.3);
757
+ --entityCardShadow: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
758
+ --entityCardShadowHover: 0 0 0 1px rgba(28, 28, 28, 0.1), 0 2px 4px -4px rgba(28, 28, 28, 0.2);
759
+ --colorBgSegmentedControl: rgba(28, 28, 28, 0.8);
760
+ --colorBgMenuHeaderAvatar: rgb(28, 28, 28);
761
+ --shadowMenuHeaderAvatar: 0 0 0 1px rgba(112, 112, 112, 0.2);
762
+ --opacityMenuItemDragged: 0.4;
763
+ --colorBgMenuItemSelectedDragged: #293b66;
764
+ --colorTextMenuItem: rgba(237, 237, 237, 0.9);
765
+ --colorBgMenuItem: rgba(255, 255, 255, 0);
766
+ --colorBgMenuItemHover: rgb(46, 46, 46);
767
+ --colorBgMenuItemFocus: rgb(51, 51, 51);
768
+ --colorBgMenuItemSelected: #1a2642;
769
+ --colorBgMenuItemSelectedHover: #223259;
770
+ --colorBgPinnedFieldsLabel: rgb(161, 161, 161);
771
+ --colorBgObjectEditorSeparator: rgb(237, 237, 237);
772
+ --colorBgMenuItemSelectedFocused: #223259;
773
+ --colorBgFieldEditorContainer: rgb(36, 36, 36);
774
+ --colorBgFieldEditorLinkEqualSign: rgb(28, 28, 28);
775
+ --allowedDropColor: rgb(41, 41, 41);
776
+ --relationViewBgColor: rgb(36, 36, 36);
777
+ --mySpaceIconColor: rgb(122, 132, 142);
778
+ --mySpaceIconBg: rgba(106, 132, 155, 0.2);
779
+ --privateIconColor: rgb(105, 172, 94);
780
+ --privateIconBg: rgba(105, 172, 94, 0.2);
781
+ --favoritesIconColor: rgb(238, 166, 74);
782
+ --favoritesIconBg: rgba(251, 163, 47, 0.2);
783
+ --swatchDefault: #2978fb;
784
+ --unitBg: rgb(51, 51, 51);
785
+ --unitBgHover: rgb(61, 61, 61);
786
+ --colorBgBadgeNeutral: rgba(41, 41, 41, 0.8);
787
+ --colorBgBadgeAccent: rgba(28, 43, 79, 0.8);
788
+ --colorBgBadgeSuccess: rgb(7, 61, 55);
789
+ --colorBgBadgeWarning: rgb(58, 50, 0);
790
+ --colorBgBadgeError: rgb(91, 26, 32);
791
+ --colorTextBadgeNeutral: rgb(161, 161, 161);
792
+ --colorTextBadgeAccent: #97b1ed;
793
+ --colorTextBadgeSuccess: rgb(127, 192, 182);
794
+ --colorTextBadgeWarning: rgb(225, 199, 0);
795
+ --colorTextBadgeError: rgb(244, 146, 148);
796
+ --badgeBgColor: rgba(120, 120, 120, 0.2);
797
+ --tooltipBgColor: rgb(51, 51, 51);
798
+ --todayMarkerColor: rgb(104, 33, 39);
799
+ --viewBgOverlayColor: rgba(23, 23, 23, 0.6);
800
+ --floatEditorMenuBg: rgb(51, 51, 51);
801
+ --floatEditorActiveColor: #97b1ed;
802
+ --commentColor: rgba(246, 217, 1, 0.4);
803
+ --cellBackgroundColor: rgb(28, 28, 28);
804
+ --cellBackgroundHoverColor: rgba(51, 51, 51, 0.3);
805
+ --cellBorderColor: rgba(112, 112, 112, 0.5);
806
+ --cellPinnedBorderColor: rgba(112, 112, 112, 0.7);
807
+ --tableRowWarningColor: rgba(246, 217, 1, 0.4);
808
+ --errorBgColor: rgba(213, 50, 72, 0.6);
809
+ --errorTextColor: rgb(244, 179, 179);
810
+ --errorButtonColor: rgb(225, 78, 91);
811
+ --warningBgColor: rgba(109, 95, 0, 0.6);
812
+ --warningButtonColor: rgb(225, 199, 0);
813
+ --infoBox: rgba(246, 217, 1, 0.2);
814
+ --appCardBgColor: rgb(28, 28, 28);
815
+ --appCardHoverColor: rgb(28, 28, 28);
816
+ --modalBg: rgba(28, 28, 28, 0.5);
817
+ --modalContentBg: rgb(36, 36, 36);
818
+ --progressIconBg: rgba(255, 255, 255, 0.18);
819
+ --progressIconFill: rgba(255, 255, 255, 0.59);
820
+ --formBg: rgb(28, 28, 28);
821
+ --formHeaderShadow: 0 0 6px 0 rgba(23, 23, 23, 0.4);
822
+ --formEditorFieldBg: rgb(41, 41, 41);
823
+ --filterGroup1Bg: rgb(51, 51, 51);
824
+ --filterGroup2Bg: rgb(61, 61, 61);
825
+ --filterGroupBorder: rgba(255, 255, 255, 0.03);
826
+ --colorBgNotificationHover: rgb(28, 28, 28);
827
+ --colorBgNotificationSelected: #151c2d;
828
+ --colorBgNotificationSelectedHover: #1a2642;
829
+ --disabledInversedTextColor: rgba(255, 255, 255, 0.25);
830
+ --success: rgb(0, 142, 128);
831
+ --danger: rgb(225, 78, 91);
832
+ --active: rgb(225, 78, 91);
833
+ --warning: rgb(109, 95, 0);
834
+ --cardBg: rgb(51, 51, 51);
835
+ --selectedImageBorder: rgba(255, 255, 255, 0.59);
836
+ --transparent: rgba(255, 255, 255, 0);
837
+ --progressBg: rgb(237, 237, 237);
838
+ --progressText: rgb(94, 94, 94);
839
+ --progressFillBg: rgb(94, 94, 94);
840
+ --progressFillText: rgb(255, 255, 255);
841
+ --progressBarFillNeutral: rgba(112, 112, 112, 0.2);
842
+ --progressBarFill: #5f85dd;
843
+ --progressBarBg: rgba(95, 133, 221, 0.25);
844
+ --colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
845
+ --colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
846
+ --richTextTableBorder: rgba(255, 255, 255, 0.18);
847
+ --colorBgDropLine: #3258ae;
848
+ --viewBg: rgb(23, 23, 23);
849
+ --colorBgViewMetaItem: rgb(28, 28, 28);
850
+ --collectionViewBg: rgb(28, 28, 28);
851
+ --collectionViewBorder: 0 0 0 1px rgba(82, 82, 82, 0.3);
852
+ --viewSecondaryBg: rgb(28, 28, 28);
853
+ --viewHighlightBg: #1a2642;
854
+ --boardBg: rgb(23, 23, 23);
855
+ --boardBgWithOpacity80: rgba(23, 23, 23, 0.8);
856
+ --boardAxisBgHover: rgb(41, 41, 41);
857
+ --gridHeaderBgColor: rgb(36, 36, 36);
858
+ --gridHeaderHoverBgColor: rgb(41, 41, 41);
859
+ --gridHeaderTextColor: rgb(161, 161, 161);
860
+ --gridCellBgColor: rgb(28, 28, 28);
861
+ --gridCellBorderColor: rgb(51, 51, 51);
862
+ --gridDisabledCellBgColor: rgb(36, 36, 36);
863
+ --gridSelectedCellBgColor: #1a2642;
864
+ --gridHighlightedCellBgColor: #223259;
865
+ --gridSelectedCellBorderColor: #2d4786;
866
+ --gridSelectedPinnedCellBorderColor: #2d4786;
867
+ --gridDisabledSelectedCellBgColor: #223259;
868
+ --gridActiveCellBorderColor: #4b74d2;
869
+ --timelineEntityHandleColor: #2d4786;
870
+ --timelineDependencyHoverBgColor: #3258ae;
871
+ --timelineDependencyOverlapBgColor: rgb(213, 50, 72);
872
+ --timelineDependencyOverlapHoverBgColor: rgb(244, 146, 148);
873
+ --timelineCellBgColor: rgb(23, 23, 23);
874
+ --timelineCellWeekendBgColor: rgb(28, 28, 28);
875
+ --timelineCellTodayBgColor: #151c2d;
876
+ --timelineCreateEntityPlaceholderBgColor: rgb(61, 61, 61);
877
+ --colorBgButtonSolidAccentDefault: #4b74d2;
878
+ --colorBgButtonSolidAccentHover: #5f85dd;
879
+ --colorBgButtonSolidNeutralDefault: rgb(237, 237, 237);
880
+ --colorBgButtonSolidNeutralHover: rgb(255, 255, 255);
881
+ --colorBgButtonSolidDestructiveDefault: rgb(213, 50, 72);
882
+ --colorBgButtonSolidDestructiveHover: rgb(225, 78, 91);
883
+ --colorTextButtonSolidAccent: rgb(255, 255, 255);
884
+ --colorTextButtonSolidAccentActive: rgba(255, 255, 255, 0.8);
885
+ --colorTextButtonSolidNeutral: rgb(28, 28, 28);
886
+ --colorTextButtonSolidNeutralActive: rgba(28, 28, 28, 0.8);
887
+ --colorTextButtonSolidDestructive: rgb(255, 255, 255);
888
+ --colorTextButtonSolidDestructiveActive: rgba(255, 255, 255, 0.8);
889
+ --colorIconButtonSolidAccent: rgb(255, 255, 255);
890
+ --colorIconButtonSolidNeutral: rgb(82, 82, 82);
891
+ --colorIconButtonSolidDestructive: rgb(255, 255, 255);
892
+ --colorBorderButtonOutlineAccentDefault: #3258ae;
893
+ --colorBorderButtonOutlineNeutralDefault: rgb(61, 61, 61);
894
+ --colorBorderButtonOutlineDestructiveDefault: rgb(135, 27, 42);
895
+ --colorBgButtonOutlineAccentDefault: rgb(23, 23, 23);
896
+ --colorBgButtonOutlineAccentHover: #1a2642;
897
+ --colorBgButtonOutlineNeutralDefault: rgb(23, 23, 23);
898
+ --colorBgButtonOutlineNeutralHover: rgb(41, 41, 41);
899
+ --colorBgButtonOutlineDestructiveDefault: rgb(23, 23, 23);
900
+ --colorBgButtonOutlineDestructiveHover: rgb(80, 21, 27);
901
+ --colorTextButtonOutlineAccent: #97b1ed;
902
+ --colorTextButtonOutlineAccentActive: rgba(151, 177, 237, 0.8);
903
+ --colorTextButtonOutlineNeutral: rgb(161, 161, 161);
904
+ --colorTextButtonOutlineNeutralActive: rgba(237, 237, 237, 0.8);
905
+ --colorTextButtonOutlineDestructive: rgb(244, 146, 148);
906
+ --colorTextButtonOutlineDestructiveActive: rgba(244, 146, 148, 0.8);
907
+ --colorIconButtonOutlineAccent: #97b1ed;
908
+ --colorIconButtonOutlineNeutral: rgb(161, 161, 161);
909
+ --colorIconButtonOutlineDestructive: rgb(244, 146, 148);
910
+ --colorBgButtonSoftAccentDefault: #1c2b4f;
911
+ --colorBgButtonSoftAccentHover: #293b66;
912
+ --colorBgButtonSoftNeutralDefault: rgb(36, 36, 36);
913
+ --colorBgButtonSoftNeutralHover: rgb(61, 61, 61);
914
+ --colorBgButtonSoftDestructiveDefault: rgb(80, 21, 27);
915
+ --colorBgButtonSoftDestructiveHover: rgb(104, 33, 39);
916
+ --colorTextButtonSoftAccent: #97b1ed;
917
+ --colorTextButtonSoftAccentActive: rgba(151, 177, 237, 0.8);
918
+ --colorTextButtonSoftNeutral: rgb(161, 161, 161);
919
+ --colorTextButtonSoftNeutralActive: rgba(161, 161, 161, 0.8);
920
+ --colorTextButtonSoftDestructive: rgb(244, 146, 148);
921
+ --colorTextButtonSoftDestructiveActive: rgba(244, 146, 148, 0.8);
922
+ --colorIconButtonSoftAccent: #97b1ed;
923
+ --colorIconButtonSoftNeutral: rgb(161, 161, 161);
924
+ --colorIconButtonSoftDestructive: rgb(244, 146, 148);
925
+ --colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
926
+ --colorBgButtonGhostAccentHover: rgba(28, 43, 79, 0.8);
927
+ --colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
928
+ --colorBgButtonGhostNeutralHover: rgba(51, 51, 51, 0.8);
929
+ --colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
930
+ --colorBgButtonGhostDestructiveHover: rgb(80, 21, 27);
931
+ --colorTextButtonGhostAccent: #97b1ed;
932
+ --colorTextButtonGhostAccentActive: rgba(151, 177, 237, 0.8);
933
+ --colorTextButtonGhostNeutral: rgb(161, 161, 161);
934
+ --colorTextButtonGhostNeutralActive: rgba(161, 161, 161, 0.8);
935
+ --colorTextButtonGhostDestructive: rgb(244, 146, 148);
936
+ --colorTextButtonGhostDestructiveActive: rgba(244, 146, 148, 0.8);
937
+ --colorIconButtonGhostAccent: #97b1ed;
938
+ --colorIconButtonGhostNeutral: rgb(161, 161, 161);
939
+ --colorIconButtonGhostDestructive: rgb(244, 146, 148);
940
+ --colorBorderAccentFocusRing: rgba(73, 120, 212, 0.3);
941
+ --colorBorderNeutralFocusRing: rgba(158, 158, 158, 0.3);
942
+ --colorBorderDestructiveFocusRing: rgba(211, 62, 78, 0.3);
943
+ --colorBgReactionsDefault: rgb(28, 28, 28);
944
+ --colorBgReactionsHover: rgb(51, 51, 51);
945
+ --colorBorderReactionsHover: rgb(112, 112, 112);
946
+ --colorBgReactionsSelectedDefault: #3258ae;
947
+ --colorBorderReactionsSelectedDefault: #3258ae;
948
+ --colorBgReactionsSelectedHover: #3869cc;
949
+ --colorBorderReactionsSelectedHover: #3869cc;
950
+ --colorTextReactionsSelected: rgb(237, 237, 237);
951
+ --colorBgToggleButtonUnselectedNormal: rgb(28, 28, 28);
952
+ --colorBgToggleButtonUnselectedHover: rgb(51, 51, 51);
953
+ --colorBgToggleButtonSelectedNormal: #3258ae;
954
+ --colorBgToggleButtonSelectedHover: #3869cc;
955
+ --colorBorderToggleButtonUnselectedNormal: rgb(112, 112, 112);
956
+ --colorBorderToggleButtonUnselectedHover: rgb(112, 112, 112);
957
+ --colorBorderToggleButtonSelectedNormal: #3258ae;
958
+ --colorBorderToggleButtonSelectedHover: #3869cc;
959
+ --colorTextToggleButtonUnselectedNormal: rgb(161, 161, 161);
960
+ --colorTextToggleButtonUnselectedHover: rgb(161, 161, 161);
961
+ --colorTextToggleButtonSelectedNormal: rgb(237, 237, 237);
962
+ --colorTextToggleButtonSelectedHover: rgb(237, 237, 237);
963
+ --colorIconToggleButtonUnselectedNormal: rgb(161, 161, 161);
964
+ --colorIconToggleButtonUnselectedHover: rgb(161, 161, 161);
965
+ --colorIconToggleButtonSelectedNormal: #97b1ed;
966
+ --colorIconToggleButtonSelectedHover: #97b1ed;
967
+ --colorBgRoundToggleButtonUnselectedNormal: rgb(28, 28, 28);
968
+ --colorBgRoundToggleButtonUnselectedHover: rgb(51, 51, 51);
969
+ --colorBgRoundToggleButtonSelectedNormal: #3258ae;
970
+ --colorBgRoundToggleButtonSelectedHover: #3869cc;
971
+ --colorBorderRoundToggleButtonUnselectedNormal: rgb(112, 112, 112);
972
+ --colorBorderRoundToggleButtonUnselectedHover: rgb(112, 112, 112);
973
+ --colorBorderRoundToggleButtonSelectedNormal: #3258ae;
974
+ --colorBorderRoundToggleButtonSelectedHover: #3869cc;
975
+ --colorTextRoundToggleButtonUnselectedNormal: rgb(161, 161, 161);
976
+ --colorTextRoundToggleButtonUnselectedHover: rgb(161, 161, 161);
977
+ --colorTextRoundToggleButtonSelectedNormal: rgb(237, 237, 237);
978
+ --colorTextRoundToggleButtonSelectedHover: rgb(237, 237, 237);
979
+ --colorIconRoundToggleButtonUnselectedNormal: rgb(161, 161, 161);
980
+ --colorIconRoundToggleButtonUnselectedHover: rgb(161, 161, 161);
981
+ --colorIconRoundToggleButtonSelectedNormal: #97b1ed;
982
+ --colorIconRoundToggleButtonSelectedHover: #97b1ed;
983
+ --colorBgToastDefault: rgb(23, 23, 23);
984
+ --colorBgDbTabHover: rgb(41, 41, 41);
985
+ --colorBgDbTabFocus: rgb(51, 51, 51);
986
+ --colorBgTabHover: rgba(161, 161, 161, 0.1);
987
+ --colorBgMessageContainer: rgb(36, 36, 36);
988
+ --colorBgMessageContainerHover: rgb(41, 41, 41);
989
+ --colorBgEntityAvatarDefault: #131720;
990
+ --colorBgEntityAvatarHover: #1a2642;
991
+ --colorTextEntityAvatarDefault: #3258ae;
992
+ --colorTextEntityAvatarHover: #4b74d2;
993
+ --colorBgMessageHighlighted: rgb(28, 28, 28);
994
+ --colorBgCommentHover: rgb(28, 28, 28);
995
+ --colorBgCodeEditor: rgb(36, 36, 36);
996
+ --colorBgEditorImageZoomed: rgb(51, 51, 51);
997
+ --colorMermaidPrimaryColor: rgb(82, 82, 82);
998
+ --colorMermaidPrimaryBorderColor: rgb(112, 112, 112);
999
+ --colorMermaidLineColor: rgb(112, 112, 112);
1000
+ --colorBgWhiteboard: rgb(23, 23, 23);
1001
+ --colorGridDotWhiteboard: rgb(51, 51, 51);
1002
+ --colorSelectionWhiteboardBorderEnabled: #3258ae;
1003
+ --colorHighlightWhiteboardSelection: #3258ae;
1004
+ --colorHighlightWhiteboardSelectionLocked: rgba(112, 112, 112, 0.5);
1005
+ --colorSelectionWhiteboardBorderDisabled: rgba(112, 112, 112, 0.5);
1006
+ --colorPlaceholderWhiteboardDefault: rgba(50, 88, 174, 0.2);
1007
+ --colorLinkPointWhiteboardDefault: #3258ae;
1008
+ --colorLinkPointWhiteboardFillDefault: #0d0d0d;
1009
+ --colorMapWhiteboardPreviewDefault: rgba(50, 88, 174, 0.4);
1010
+ --colorCardWhiteboardShadowDefault: rgba(161, 161, 161, 0.05);
1011
+ --colorCardWhiteboardBgDefault: rgb(46, 46, 46);
1012
+ --colorCardWhiteboardBorderDefault: rgba(237, 237, 237, 0.2);
1013
+ --colorUnitHeaderWhiteboardDefault: rgba(237, 237, 237, 0.6);
1014
+ --colorUnitWhiteboardBgDefault: rgb(51, 51, 51);
1015
+ --colorUnitWhiteboardBorderDefault: rgba(237, 237, 237, 0.25);
1016
+ --colorSectionWhiteboardBgInactive: rgb(28, 28, 28);
1017
+ --colorSectionWhiteboardBorderInactive: rgb(51, 51, 51);
1018
+ --colorUploadPreviewBg: rgba(28, 28, 28, 0.85);
1019
+ --colorEmbedWhiteboardEditBorder: rgba(0, 112, 99, 0.9);
1020
+ --colorTextWhiteboardDefault: rgb(237, 237, 237);
1021
+ --colorTextWhiteboardDisabled: rgb(112, 112, 112);
1022
+ --colorTextWhiteboardAccent: rgba(23, 23, 23, 0.6);
1023
+ --colorTextWhiteboardInversedDefault: rgb(255, 255, 255);
1024
+ --instrumentsMenuBg: rgb(41, 41, 41);
1025
+ --instrumentsMenuShadow:
963
1026
  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);
964
- --fibery-color-commentBubbleBg: rgb(51, 51, 51);
965
- --fibery-color-commentsPanelShadow:
1027
+ --commentBubbleBg: rgb(51, 51, 51);
1028
+ --commentsPanelShadow:
966
1029
  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);
967
- --fibery-color-searchFiltersBg: rgb(28, 28, 28);
968
- --fibery-color-selectedColorBorder: rgba(227, 227, 227, 0.25);
969
- --fibery-color-colorBgSegmentedControlDefault: rgb(23, 23, 23);
970
- --fibery-color-colorBgSegmentedControlActive: rgb(51, 51, 51);
971
- --fibery-color-colorBgSegmentedControlHover: rgb(41, 41, 41);
972
- --fibery-color-colorBorderSegmentedControlDefault: rgb(61, 61, 61);
973
- --fibery-color-colorBgBannerNeutral: rgb(36, 36, 36);
974
- --fibery-color-colorBgBannerPrimary: #1a2642;
975
- --fibery-color-colorBgBannerWarning: rgb(42, 36, 0);
976
- --fibery-color-colorBgBannerError: rgb(67, 22, 25);
977
- --fibery-color-colorBgBannerSuccess: rgb(10, 46, 41);
978
- --fibery-color-colorIconBannerNeutral: rgb(237, 237, 237);
979
- --fibery-color-colorIconBannerAccent: #97b1ed;
980
- --fibery-color-colorIconBannerWarning: rgb(225, 199, 0);
981
- --fibery-color-colorIconBannerError: rgb(244, 146, 148);
982
- --fibery-color-colorIconBannerSuccess: rgb(127, 192, 182);
983
- --fibery-color-colorTextBannerNeutral: rgb(237, 237, 237);
984
- --fibery-color-colorTextBannerAccent: #97b1ed;
985
- --fibery-color-colorTextBannerWarning: rgb(225, 199, 0);
986
- --fibery-color-colorTextBannerError: rgb(244, 146, 148);
987
- --fibery-color-colorTextBannerSuccess: rgb(127, 192, 182);
988
- --fibery-color-colorBgChargebeeInfoBox: rgb(23, 23, 23);
989
- --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 151);
990
- --fibery-color-colorBgErrorMessage: rgb(237, 150, 151);
991
- --fibery-color-colorBorderLogoGrid: rgb(41, 41, 41);
992
- --fibery-color-colorBorderLogoGridSubtle: rgb(41, 41, 41);
993
- --fibery-color-colorBorderLogoGridMedium: rgb(41, 41, 41);
994
- --fibery-color-colorStrokeLogoDashed: rgb(82, 82, 82);
995
- --fibery-color-colorBgLogoCardTransparent: rgb(28, 28, 28);
996
- --fibery-color-colorBgLogoCardDark: rgb(82, 82, 82);
997
- --fibery-color-colorBgLogoCardMedium: rgb(41, 41, 41);
998
- --fibery-color-colorBgSkeletonFrom: rgba(0, 0, 0, 0.05);
999
- --fibery-color-colorBgSkeletonTo: rgba(0, 0, 0, 0.1);
1000
- --fibery-color-colorShadowInsetEdge: rgba(0, 0, 0, 0.05);
1001
- --fibery-color-colorShadowBorder: rgba(0, 0, 0, 0.1);
1002
- --fibery-color-colorShadowElevation: rgba(255, 255, 255, 0.1);
1003
- --fibery-color-colorShadowOutline: rgba(255, 255, 255, 0.2);
1004
- --fibery-color-colorPlaceholder: rgba(0, 0, 0, 0.4);
1005
- --fibery-color-colorPlaceholderSubtle: rgba(0, 0, 0, 0.25);
1006
- --fibery-color-colorBgSubtleLight: rgba(0, 0, 0, 0.05);
1007
- --fibery-color-colorStrokeSurface: rgb(0, 0, 0);
1008
- --fibery-color-colorTextMilestone: rgba(255, 255, 255, 0.5);
1009
- --fibery-color-colorSpinnerIcon: rgba(255, 255, 255, 0.9);
1010
- --fibery-color-colorSpinnerBg: rgba(255, 255, 255, 0.1);
1011
- --fibery-color-colorBgLaneSubtle: rgba(255, 255, 255, 0.05);
1012
- --fibery-color-opacity15: 0.15;
1013
- --fibery-color-opacity20: 0.2;
1014
- --fibery-color-opacity25: 0.25;
1015
- --fibery-color-opacity30: 0.3;
1016
- --fibery-color-opacity40: 0.4;
1017
- --fibery-color-opacity50: 0.5;
1018
- --fibery-color-opacity60: 0.6;
1019
- --fibery-color-opacity65: 0.65;
1020
- --fibery-color-opacity70: 0.7;
1021
- --fibery-color-opacity75: 0.75;
1022
- --fibery-color-opacity80: 0.8;
1023
- --fibery-color-opacity85: 0.85;
1024
- --fibery-color-opacity90: 0.9;
1025
- --fibery-color-whiteA10: rgba(0, 0, 0, 0.1);
1026
- --fibery-color-whiteA40: rgba(0, 0, 0, 0.4);
1027
- --fibery-color-whiteA100: rgb(0, 0, 0);
1028
- --fibery-color-colorBgFileOverlay: rgba(0, 0, 0, 0.6);
1029
- --fibery-color-colorBgScrollFade: rgba(0, 0, 0, 0.15);
1030
- --fibery-color-colorStrokeSelectedOutline: rgba(255, 255, 255, 0.75);
1031
- --fibery-color-scrollbar: rgba(61, 61, 61, 0.5);
1030
+ --searchFiltersBg: rgb(28, 28, 28);
1031
+ --selectedColorBorder: rgba(227, 227, 227, 0.25);
1032
+ --colorBgSegmentedControlDefault: rgb(23, 23, 23);
1033
+ --colorBgSegmentedControlActive: rgb(51, 51, 51);
1034
+ --colorBgSegmentedControlHover: rgb(41, 41, 41);
1035
+ --colorBorderSegmentedControlDefault: rgb(61, 61, 61);
1036
+ --colorBgBannerNeutral: rgb(36, 36, 36);
1037
+ --colorBgBannerAccent: #1a2642;
1038
+ --colorBgBannerWarning: rgb(42, 36, 0);
1039
+ --colorBgBannerError: rgb(67, 22, 25);
1040
+ --colorBgBannerSuccess: rgb(10, 46, 41);
1041
+ --colorIconBannerNeutral: rgb(161, 161, 161);
1042
+ --colorIconBannerAccent: #97b1ed;
1043
+ --colorIconBannerWarning: rgb(225, 199, 0);
1044
+ --colorIconBannerError: rgb(244, 146, 148);
1045
+ --colorIconBannerSuccess: rgb(127, 192, 182);
1046
+ --colorTextBannerNeutral: rgb(237, 237, 237);
1047
+ --colorTextBannerAccent: #97b1ed;
1048
+ --colorTextBannerWarning: rgb(225, 199, 0);
1049
+ --colorTextBannerError: rgb(244, 146, 148);
1050
+ --colorTextBannerSuccess: rgb(127, 192, 182);
1051
+ --colorBgChargebeeInfoBox: rgb(23, 23, 23);
1052
+ --newCommentHorizontalRulerColor: rgb(237, 150, 151);
1053
+ --colorBgErrorMessage: rgb(237, 150, 151);
1054
+ --colorBorderLogoGrid: rgb(41, 41, 41);
1055
+ --colorBorderLogoGridSubtle: rgb(41, 41, 41);
1056
+ --colorBorderLogoGridMedium: rgb(41, 41, 41);
1057
+ --colorStrokeLogoDashed: rgb(82, 82, 82);
1058
+ --colorBgLogoCardTransparent: rgb(28, 28, 28);
1059
+ --colorBgLogoCardDark: rgb(82, 82, 82);
1060
+ --colorBgLogoCardMedium: rgb(41, 41, 41);
1061
+ --colorBgSkeletonFrom: rgba(0, 0, 0, 0.05);
1062
+ --colorBgSkeletonTo: rgba(0, 0, 0, 0.1);
1063
+ --colorShadowInsetEdge: rgba(0, 0, 0, 0.05);
1064
+ --colorShadowBorder: rgba(0, 0, 0, 0.1);
1065
+ --colorShadowElevation: rgba(255, 255, 255, 0.1);
1066
+ --colorShadowOutline: rgba(255, 255, 255, 0.2);
1067
+ --colorPlaceholder: rgba(0, 0, 0, 0.4);
1068
+ --colorPlaceholderSubtle: rgba(0, 0, 0, 0.25);
1069
+ --colorBgSubtleLight: rgba(0, 0, 0, 0.05);
1070
+ --colorStrokeSurface: rgb(0, 0, 0);
1071
+ --colorTextMilestone: rgba(255, 255, 255, 0.5);
1072
+ --colorSpinnerIcon: rgba(255, 255, 255, 0.9);
1073
+ --colorSpinnerBg: rgba(255, 255, 255, 0.1);
1074
+ --colorBgLaneSubtle: rgba(255, 255, 255, 0.05);
1075
+ --opacity15: 0.15;
1076
+ --opacity20: 0.2;
1077
+ --opacity25: 0.25;
1078
+ --opacity30: 0.3;
1079
+ --opacity40: 0.4;
1080
+ --opacity50: 0.5;
1081
+ --opacity60: 0.6;
1082
+ --opacity65: 0.65;
1083
+ --opacity70: 0.7;
1084
+ --opacity75: 0.75;
1085
+ --opacity80: 0.8;
1086
+ --opacity85: 0.85;
1087
+ --opacity90: 0.9;
1088
+ --whiteA10: rgba(0, 0, 0, 0.1);
1089
+ --whiteA40: rgba(0, 0, 0, 0.4);
1090
+ --whiteA100: rgb(0, 0, 0);
1091
+ --colorBgFileOverlay: rgba(0, 0, 0, 0.6);
1092
+ --colorBgScrollFade: rgba(0, 0, 0, 0.15);
1093
+ --colorStrokeSelectedOutline: rgba(255, 255, 255, 0.75);
1094
+ --scrollbar: rgba(61, 61, 61, 0.5);
1032
1095
  }
1033
1096
  :root.warm-palette {
1034
- --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
1035
- --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(0, 0, 0, 0.09);
1036
- --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(0, 0, 0, 0.09);
1037
- --fibery-color-shadow50: 0 0 0 1px rgba(27, 22, 17, 0.05);
1038
- --fibery-color-shadow100: 0 1px 4px 0 rgba(27, 22, 17, 0.05);
1039
- --fibery-color-shadow200: 0 2px 6px 0 rgba(27, 22, 17, 0.05);
1040
- --fibery-color-shadow300: 0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15);
1041
- --fibery-color-shadow400: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15);
1042
- --fibery-color-shadow500: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15);
1043
- --fibery-color-shadow600: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2);
1044
- --fibery-color-actionMenuShadow:
1097
+ --surfaceElevationS: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
1098
+ --surfaceElevationM: 0 4px 8px 0 rgba(0, 0, 0, 0.09);
1099
+ --surfaceElevationL: 0 8px 12px 0 rgba(0, 0, 0, 0.09);
1100
+ --shadow50: 0 0 0 1px rgba(27, 22, 17, 0.05);
1101
+ --shadow100: 0 1px 4px 0 rgba(27, 22, 17, 0.05);
1102
+ --shadow200: 0 2px 6px 0 rgba(27, 22, 17, 0.05);
1103
+ --shadow300: 0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15);
1104
+ --shadow400: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15);
1105
+ --shadow500: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15);
1106
+ --shadow600: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2);
1107
+ --actionMenuShadow:
1045
1108
  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);
1046
- --fibery-color-shadowPopup:
1109
+ --shadowPopup:
1047
1110
  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);
1048
- --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(125, 119, 112, 0.1);
1049
- --fibery-color-highlightBgYellow: rgb(254, 234, 191);
1050
- --fibery-color-highlightFgYellow: rgb(156, 125, 38);
1051
- --fibery-color-highlightFgOnBgYellow: rgb(130, 104, 30);
1052
- --fibery-color-highlightBgGreen: rgb(218, 245, 202);
1053
- --fibery-color-highlightFgGreen: rgb(93, 143, 39);
1054
- --fibery-color-highlightFgOnBgGreen: rgb(76, 119, 31);
1055
- --fibery-color-highlightBgAquamarine: rgb(196, 247, 221);
1056
- --fibery-color-highlightFgAquamarine: rgb(55, 145, 100);
1057
- --fibery-color-highlightFgOnBgAquamarine: rgb(43, 120, 82);
1058
- --fibery-color-highlightBgAqua: rgb(186, 248, 238);
1059
- --fibery-color-highlightFgAqua: rgb(46, 144, 127);
1060
- --fibery-color-highlightFgOnBgAqua: rgb(36, 119, 105);
1061
- --fibery-color-highlightBgBlue: rgb(223, 237, 255);
1062
- --fibery-color-highlightFgBlue: rgb(76, 129, 213);
1063
- --fibery-color-highlightFgOnBgBlue: rgb(60, 107, 177);
1064
- --fibery-color-highlightBgPurple: rgb(244, 231, 255);
1065
- --fibery-color-highlightFgPurple: rgb(176, 89, 226);
1066
- --fibery-color-highlightFgOnBgPurple: rgb(151, 63, 199);
1067
- --fibery-color-highlightBgPink: rgb(255, 229, 242);
1068
- --fibery-color-highlightFgPink: rgb(212, 73, 166);
1069
- --fibery-color-highlightFgOnBgPink: rgb(178, 56, 139);
1070
- --fibery-color-highlightBgRed: rgb(254, 230, 227);
1071
- --fibery-color-highlightFgRed: rgb(227, 70, 74);
1072
- --fibery-color-highlightFgOnBgRed: rgb(191, 50, 55);
1073
- --fibery-color-highlightBgGrey: rgb(236, 235, 235);
1074
- --fibery-color-highlightFgGrey: rgb(135, 128, 128);
1075
- --fibery-color-highlightFgOnBgGrey: rgb(111, 105, 104);
1076
- --fibery-color-colorPickerCssFilter: none;
1077
- --fibery-color-mode: light;
1078
- --fibery-color-colorAccentBgSubtle: rgba(0, 138, 169, 0.1);
1079
- --fibery-color-colorAccentBgMild: rgba(0, 138, 169, 0.15);
1080
- --fibery-color-colorAccentBgMedium: rgba(0, 138, 169, 0.2);
1081
- --fibery-color-colorAccentBgStrong: rgba(0, 138, 169, 0.3);
1082
- --fibery-color-colorAccentBgBold: rgba(0, 138, 169, 0.35);
1083
- --fibery-color-colorAccentBgVivid: rgba(0, 138, 169, 0.6);
1084
- --fibery-color-colorAccentStroke: rgba(0, 138, 169, 0.25);
1085
- --fibery-color-colorAccentStrokeHover: rgba(0, 138, 169, 0.4);
1086
- --fibery-color-colorAccentStrokeFocus: rgba(0, 138, 169, 0.5);
1087
- --fibery-color-colorAccentSolid: rgba(0, 138, 169, 0.8);
1088
- --fibery-color-colorAccent: rgb(0, 138, 169);
1089
- --fibery-color-darkenPrimary: rgb(46, 107, 126);
1090
- --fibery-color-whiteColor: rgb(255, 253, 250);
1091
- --fibery-color-blackColor: #1f1a18;
1092
- --fibery-color-mainBg: rgb(250, 244, 236);
1093
- --fibery-color-panelBg: rgb(255, 253, 250);
1094
- --fibery-color-panelBorder: 0 0 0 1px rgba(204, 198, 191, 0.2);
1095
- --fibery-color-panelContentBg: rgb(253, 246, 239);
1096
- --fibery-color-dbSettingsSidebarBg: rgb(253, 246, 239);
1097
- --fibery-color-dbSettingsSidebarItemHover: rgb(243, 236, 229);
1098
- --fibery-color-dbSettingsSidebarIconBg: rgb(255, 253, 250);
1099
- --fibery-color-dbSettingsSidebarIconBorder: 0 1px 4px 0 rgba(99, 94, 87, 0.1), 0 0 0 0.5px rgba(237, 231, 224, 0.5);
1100
- --fibery-color-dbSettingsCardBg: rgb(253, 246, 239);
1101
- --fibery-color-dbSettingsCardBorder: 0 0 0 1px rgba(232, 226, 219, 0.8);
1102
- --fibery-color-colorBgRelationContainer: rgb(255, 251, 244);
1103
- --fibery-color-colorAI: #9b6fc1;
1104
- --fibery-color-colorBgAI: rgba(155, 111, 193, 0.1);
1105
- --fibery-color-colorBgAIFloatingLauncher: rgb(255, 251, 244);
1106
- --fibery-color-colorBgAIFloatingPanelContent: rgb(255, 251, 244);
1107
- --fibery-color-colorBgAISidebarContent: rgb(255, 251, 244);
1108
- --fibery-color-colorBgFloatingPanel: rgb(255, 253, 250);
1109
- --fibery-color-shadowFloatingPanel: 0 0 0 1px rgba(125, 119, 112, 0.15), 0 3px 12px 0 rgba(99, 94, 87, 0.15);
1110
- --fibery-color-pageContentBg: rgb(255, 253, 250);
1111
- --fibery-color-colorBgPopup: rgb(255, 253, 250);
1112
- --fibery-color-menuBg: rgb(250, 244, 236);
1113
- --fibery-color-menuTextColor: rgb(27, 22, 17);
1114
- --fibery-color-menuItemHoverColor: rgb(237, 231, 224);
1115
- --fibery-color-menuSelectedTextColor: rgb(253, 246, 239);
1116
- --fibery-color-menuIconColor: rgba(27, 22, 17, 0.7);
1117
- --fibery-color-textColor: rgb(27, 22, 17);
1118
- --fibery-color-textSelectionColor: rgba(0, 138, 169, 0.2);
1119
- --fibery-color-accentTextColor: rgb(125, 119, 112);
1120
- --fibery-color-disabledTextColor: rgb(163, 157, 150);
1121
- --fibery-color-inversedTextColor: rgb(250, 244, 236);
1122
- --fibery-color-colorTextSecondary: rgba(27, 22, 17, 0.7);
1123
- --fibery-color-linkColor: #5371b4;
1124
- --fibery-color-linkBorder: 0.5px solid rgba(83, 113, 180, 0.4);
1125
- --fibery-color-linkHoverColor: #5371b4;
1126
- --fibery-color-linkBorderHover: 0.5px solid rgba(83, 113, 180, 0.75);
1127
- --fibery-color-codeColor: rgb(211, 62, 75);
1128
- --fibery-color-codeBgColor: rgb(250, 244, 236);
1129
- --fibery-color-codeBlockBgColor: rgb(250, 244, 236);
1130
- --fibery-color-addedDiffTextColor: rgb(0, 144, 126);
1131
- --fibery-color-removedDiffTextColor: rgb(175, 36, 54);
1132
- --fibery-color-entityNodeColor: rgb(39, 35, 33);
1133
- --fibery-color-entityNodeBorder: 0.5px solid rgba(39, 35, 33, 0.3);
1134
- --fibery-color-entityNodeHoverColor: rgb(65, 60, 58);
1135
- --fibery-color-entityNodeBorderHover: 0.5px solid rgba(99, 94, 87, 0.8);
1136
- --fibery-color-entityNodeBgColor: rgb(253, 246, 239);
1137
- --fibery-color-shortcutTextColor: rgb(163, 157, 150);
1138
- --fibery-color-shortcutBorder: 1px solid rgba(204, 198, 191, 0.5);
1139
- --fibery-color-shortcutBorderColor: rgba(204, 198, 191, 0.5);
1140
- --fibery-color-inputBgColor: rgb(255, 253, 250);
1141
- --fibery-color-inputDisabledBgColor: rgba(232, 226, 219, 0.3);
1142
- --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(232, 226, 219, 0.6);
1143
- --fibery-color-inputCopyBgColor: rgb(250, 244, 236);
1144
- --fibery-color-inputBorderColor: 0 0 0 1px rgba(232, 226, 219, 0.8);
1145
- --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(225, 218, 211);
1146
- --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(204, 198, 191);
1147
- --fibery-color-inputBorderBlendMode: multiply;
1148
- --fibery-color-inputPlaceholderTextColor: rgb(163, 157, 150);
1149
- --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(175, 36, 54);
1150
- --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(175, 36, 54, 0.4);
1151
- --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(175, 36, 54, 0.25);
1152
- --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(175, 36, 54, 0.25);
1153
- --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(247, 217, 0);
1154
- --fibery-color-buttonPrimaryColor: rgb(0, 138, 169);
1155
- --fibery-color-buttonColor: rgb(125, 119, 112);
1156
- --fibery-color-buttonPrimaryTextColor: rgb(253, 246, 239);
1157
- --fibery-color-checkboxColor: rgba(27, 22, 17, 0.7);
1158
- --fibery-color-colorBorderBlockQuote: rgb(99, 94, 87);
1159
- --fibery-color-colorBgActionsMenu: rgb(255, 253, 250);
1160
- --fibery-color-colorBgActionsMenuItemHover: rgb(243, 236, 229);
1161
- --fibery-color-colorBgActionsMenuItemSelected: rgba(228, 241, 246, 0.8);
1162
- --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(213, 233, 240, 0.8);
1163
- --fibery-color-colorBgActionsMenuItemDangerHover: rgba(211, 62, 75, 0.1);
1164
- --fibery-color-colorBgActionsMenuItemDangerActive: rgba(211, 62, 75, 0.8);
1165
- --fibery-color-actionMenuBg: rgb(255, 253, 250);
1166
- --fibery-color-actionMenuInnerBg: rgb(255, 253, 250);
1167
- --fibery-color-actionMenuHover: rgb(243, 236, 229);
1168
- --fibery-color-actionMenuInnerHover: rgb(243, 236, 229);
1169
- --fibery-color-actionMenuButtonColor: rgb(255, 253, 250);
1170
- --fibery-color-actionMenuButtonHoverColor: rgb(255, 251, 244);
1171
- --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1172
- --fibery-color-actionMenuSeparatorColor: rgba(31, 26, 24, 0.1);
1173
- --fibery-color-separatorColor: rgba(31, 26, 24, 0.1);
1174
- --fibery-color-separatorColorDimmed: rgba(31, 26, 24, 0.05);
1175
- --fibery-color-separatorBreadcrumbsColor: rgb(204, 198, 191);
1176
- --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(31, 26, 24, 0.05);
1177
- --fibery-color-borderSeparator: 0.5px solid rgba(31, 26, 24, 0.1);
1178
- --fibery-color-borderSeparatorMedium: 0.5px solid rgba(31, 26, 24, 0.15);
1179
- --fibery-color-borderSeparatorStrong: 0.5px solid rgba(31, 26, 24, 0.25);
1180
- --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
1181
- --fibery-color-borderSolidSeparator: 1px solid rgba(31, 26, 24, 0.1);
1182
- --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(31, 26, 24, 0.05);
1183
- --fibery-color-borderSolidFilterGroup: 1px solid rgba(0, 0, 0, 0.05);
1184
- --fibery-color-borderSolidGrid: 1px solid rgb(237, 231, 224);
1185
- --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(204, 198, 191);
1186
- --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
1187
- --fibery-color-borderSolidCommentBubble: 1px solid rgb(255, 253, 250);
1188
- --fibery-color-borderBlockQuote: 3px solid rgb(99, 94, 87);
1189
- --fibery-color-shadowCardDefault: 0 0 0 1px rgba(232, 226, 219, 0.8), 0 1px 4px 0 rgba(27, 22, 17, 0.05);
1190
- --fibery-color-shadowCardHover: 0 0 0 1px rgba(232, 226, 219, 0.8), 0 2px 6px 0 rgba(27, 22, 17, 0.05);
1191
- --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(232, 226, 219, 0.8);
1192
- --fibery-color-iconColor: rgba(27, 22, 17, 0.7);
1193
- --fibery-color-appIconColor: rgba(253, 246, 239, 0.9);
1194
- --fibery-color-appIconBgColor: rgba(255, 251, 244, 0.9);
1195
- --fibery-color-mentionBgColor: rgba(225, 218, 211, 0.3);
1196
- --fibery-color-colorBgSelectMenu: rgb(255, 251, 244);
1197
- --fibery-color-shadowSelectMenu:
1111
+ --shadowSidebar: -3px 0 10px 0 rgba(125, 119, 112, 0.1);
1112
+ --highlightBgYellow: rgb(254, 234, 191);
1113
+ --highlightFgYellow: rgb(156, 125, 38);
1114
+ --highlightFgOnBgYellow: rgb(130, 104, 30);
1115
+ --highlightBgGreen: rgb(218, 245, 202);
1116
+ --highlightFgGreen: rgb(93, 143, 39);
1117
+ --highlightFgOnBgGreen: rgb(76, 119, 31);
1118
+ --highlightBgAquamarine: rgb(196, 247, 221);
1119
+ --highlightFgAquamarine: rgb(55, 145, 100);
1120
+ --highlightFgOnBgAquamarine: rgb(43, 120, 82);
1121
+ --highlightBgAqua: rgb(186, 248, 238);
1122
+ --highlightFgAqua: rgb(46, 144, 127);
1123
+ --highlightFgOnBgAqua: rgb(36, 119, 105);
1124
+ --highlightBgBlue: rgb(223, 237, 255);
1125
+ --highlightFgBlue: rgb(76, 129, 213);
1126
+ --highlightFgOnBgBlue: rgb(60, 107, 177);
1127
+ --highlightBgPurple: rgb(244, 231, 255);
1128
+ --highlightFgPurple: rgb(176, 89, 226);
1129
+ --highlightFgOnBgPurple: rgb(151, 63, 199);
1130
+ --highlightBgPink: rgb(255, 229, 242);
1131
+ --highlightFgPink: rgb(212, 73, 166);
1132
+ --highlightFgOnBgPink: rgb(178, 56, 139);
1133
+ --highlightBgRed: rgb(254, 230, 227);
1134
+ --highlightFgRed: rgb(227, 70, 74);
1135
+ --highlightFgOnBgRed: rgb(191, 50, 55);
1136
+ --highlightBgGrey: rgb(236, 235, 235);
1137
+ --highlightFgGrey: rgb(135, 128, 128);
1138
+ --highlightFgOnBgGrey: rgb(111, 105, 104);
1139
+ --colorPickerCssFilter: none;
1140
+ --colorAccentBgSubtle: rgba(0, 138, 169, 0.1);
1141
+ --colorAccentBgMild: rgba(0, 138, 169, 0.15);
1142
+ --colorAccentBgMedium: rgba(0, 138, 169, 0.2);
1143
+ --colorAccentBgStrong: rgba(0, 138, 169, 0.3);
1144
+ --colorAccentBgBold: rgba(0, 138, 169, 0.35);
1145
+ --colorAccentBgVivid: rgba(0, 138, 169, 0.6);
1146
+ --colorAccentStroke: rgba(0, 138, 169, 0.25);
1147
+ --colorAccentStrokeHover: rgba(0, 138, 169, 0.4);
1148
+ --colorAccentStrokeFocus: rgba(0, 138, 169, 0.5);
1149
+ --colorAccentSolid: rgba(0, 138, 169, 0.8);
1150
+ --colorAccent: rgb(0, 138, 169);
1151
+ --darkenPrimary: rgb(46, 107, 126);
1152
+ --whiteColor: rgb(255, 253, 250);
1153
+ --blackColor: #1f1a18;
1154
+ --mainBg: rgb(250, 244, 236);
1155
+ --panelBg: rgb(255, 253, 250);
1156
+ --panelBorder: 0 0 0 1px rgba(204, 198, 191, 0.2);
1157
+ --panelContentBg: rgb(253, 246, 239);
1158
+ --dbSettingsSidebarBg: rgb(253, 246, 239);
1159
+ --dbSettingsSidebarItemHover: rgb(243, 236, 229);
1160
+ --dbSettingsSidebarIconBg: rgb(255, 253, 250);
1161
+ --dbSettingsSidebarIconBorder: 0 1px 4px 0 rgba(99, 94, 87, 0.1), 0 0 0 0.5px rgba(237, 231, 224, 0.5);
1162
+ --dbSettingsCardBg: rgb(253, 246, 239);
1163
+ --dbSettingsCardBorder: 0 0 0 1px rgba(232, 226, 219, 0.8);
1164
+ --colorBgRelationContainer: rgb(255, 251, 244);
1165
+ --colorAI: #9b6fc1;
1166
+ --colorBgAI: rgba(155, 111, 193, 0.1);
1167
+ --colorBgAIFloatingLauncher: rgb(255, 251, 244);
1168
+ --colorBgAIFloatingPanelContent: rgb(255, 251, 244);
1169
+ --colorBgAISidebarContent: rgb(255, 251, 244);
1170
+ --colorBgFloatingPanel: rgb(255, 253, 250);
1171
+ --shadowFloatingPanel: 0 0 0 1px rgba(125, 119, 112, 0.15), 0 3px 12px 0 rgba(99, 94, 87, 0.15);
1172
+ --pageContentBg: rgb(255, 253, 250);
1173
+ --colorBgPopup: rgb(255, 253, 250);
1174
+ --menuBg: rgb(250, 244, 236);
1175
+ --menuTextColor: rgb(27, 22, 17);
1176
+ --menuItemHoverColor: rgb(237, 231, 224);
1177
+ --menuSelectedTextColor: rgb(253, 246, 239);
1178
+ --menuIconColor: rgba(27, 22, 17, 0.7);
1179
+ --textColor: rgb(27, 22, 17);
1180
+ --textSelectionColor: rgba(0, 138, 169, 0.2);
1181
+ --accentTextColor: rgb(125, 119, 112);
1182
+ --disabledTextColor: rgb(163, 157, 150);
1183
+ --inversedTextColor: rgb(250, 244, 236);
1184
+ --colorTextSecondary: rgba(27, 22, 17, 0.7);
1185
+ --linkColor: #5371b4;
1186
+ --linkBorder: 0.5px solid rgba(83, 113, 180, 0.4);
1187
+ --linkHoverColor: #5371b4;
1188
+ --linkBorderHover: 0.5px solid rgba(83, 113, 180, 0.75);
1189
+ --codeColor: rgb(211, 62, 75);
1190
+ --codeBgColor: rgb(250, 244, 236);
1191
+ --codeBlockBgColor: rgb(250, 244, 236);
1192
+ --addedDiffTextColor: rgb(0, 144, 126);
1193
+ --removedDiffTextColor: rgb(175, 36, 54);
1194
+ --entityNodeColor: rgb(39, 35, 33);
1195
+ --entityNodeBorder: 0.5px solid rgba(39, 35, 33, 0.3);
1196
+ --entityNodeHoverColor: rgb(65, 60, 58);
1197
+ --entityNodeBorderHover: 0.5px solid rgba(99, 94, 87, 0.8);
1198
+ --entityNodeBgColor: rgb(253, 246, 239);
1199
+ --shortcutTextColor: rgb(163, 157, 150);
1200
+ --shortcutBorder: 1px solid rgba(204, 198, 191, 0.5);
1201
+ --shortcutBorderColor: rgba(204, 198, 191, 0.5);
1202
+ --inputBgColor: rgb(255, 253, 250);
1203
+ --inputDisabledBgColor: rgba(232, 226, 219, 0.3);
1204
+ --inputDisabledBorderColor: 0 0 0 1px rgba(232, 226, 219, 0.6);
1205
+ --inputCopyBgColor: rgb(250, 244, 236);
1206
+ --inputBorderColor: 0 0 0 1px rgba(232, 226, 219, 0.8);
1207
+ --inputBorderHoverColor: 0 0 0 1px rgb(225, 218, 211);
1208
+ --inputBorderFocusColor: 0 0 0 1px rgb(204, 198, 191);
1209
+ --inputBorderBlendMode: multiply;
1210
+ --inputPlaceholderTextColor: rgb(163, 157, 150);
1211
+ --inputErrorBorderColor: 0 0 0 1px rgb(175, 36, 54);
1212
+ --inputErrorBorderHoverColor: 0 0 0 1px rgba(175, 36, 54, 0.4);
1213
+ --inputErrorBorderFocusColor: 0 0 0 1px rgba(175, 36, 54, 0.25);
1214
+ --inputErrorBorderFocusShadow: 0 0 0 3px rgba(175, 36, 54, 0.25);
1215
+ --inputBorderWarningColor: 0 0 0 1px rgb(247, 217, 0);
1216
+ --buttonPrimaryColor: rgb(0, 138, 169);
1217
+ --buttonColor: rgb(125, 119, 112);
1218
+ --buttonPrimaryTextColor: rgb(253, 246, 239);
1219
+ --checkboxColor: rgba(27, 22, 17, 0.7);
1220
+ --colorBorderBlockQuote: rgb(99, 94, 87);
1221
+ --colorBgActionsMenu: rgb(255, 253, 250);
1222
+ --colorBgActionsMenuItemHover: rgb(243, 236, 229);
1223
+ --colorBgActionsMenuItemSelected: rgba(228, 241, 246, 0.8);
1224
+ --colorBgActionsMenuItemSelectedHover: rgba(213, 233, 240, 0.8);
1225
+ --colorBgActionsMenuItemDangerHover: rgba(211, 62, 75, 0.1);
1226
+ --colorBgActionsMenuItemDangerActive: rgba(211, 62, 75, 0.8);
1227
+ --actionMenuBg: rgb(255, 253, 250);
1228
+ --actionMenuInnerBg: rgb(255, 253, 250);
1229
+ --actionMenuHover: rgb(243, 236, 229);
1230
+ --actionMenuInnerHover: rgb(243, 236, 229);
1231
+ --actionMenuButtonColor: rgb(255, 253, 250);
1232
+ --actionMenuButtonHoverColor: rgb(255, 251, 244);
1233
+ --actionMenuButtonShadow: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1234
+ --actionMenuSeparatorColor: rgba(31, 26, 24, 0.1);
1235
+ --separatorColor: rgba(31, 26, 24, 0.1);
1236
+ --separatorColorDimmed: rgba(31, 26, 24, 0.05);
1237
+ --separatorBreadcrumbsColor: rgb(204, 198, 191);
1238
+ --borderSeparatorDimmed: 0.5px solid rgba(31, 26, 24, 0.05);
1239
+ --borderSeparator: 0.5px solid rgba(31, 26, 24, 0.1);
1240
+ --borderSeparatorMedium: 0.5px solid rgba(31, 26, 24, 0.15);
1241
+ --borderSeparatorStrong: 0.5px solid rgba(31, 26, 24, 0.25);
1242
+ --borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
1243
+ --borderSolidSeparator: 1px solid rgba(31, 26, 24, 0.1);
1244
+ --borderSolidSeparatorDimmed: 1px solid rgba(31, 26, 24, 0.05);
1245
+ --borderSolidFilterGroup: 1px solid rgba(0, 0, 0, 0.05);
1246
+ --borderSolidGrid: 1px solid rgb(237, 231, 224);
1247
+ --borderSolidOutlineNeutral: 1px solid rgb(204, 198, 191);
1248
+ --borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
1249
+ --borderSolidCommentBubble: 1px solid rgb(255, 253, 250);
1250
+ --borderBlockQuote: 3px solid rgb(99, 94, 87);
1251
+ --shadowCardDefault: 0 0 0 1px rgba(232, 226, 219, 0.8), 0 1px 4px 0 rgba(27, 22, 17, 0.05);
1252
+ --shadowCardHover: 0 0 0 1px rgba(232, 226, 219, 0.8), 0 2px 6px 0 rgba(27, 22, 17, 0.05);
1253
+ --shadowCardInset: inset 0 0 0 1px rgba(232, 226, 219, 0.8);
1254
+ --iconColor: rgba(27, 22, 17, 0.7);
1255
+ --colorIconDestructive: rgb(175, 36, 54);
1256
+ --appIconColor: rgba(253, 246, 239, 0.9);
1257
+ --appIconBgColor: rgba(255, 251, 244, 0.9);
1258
+ --mentionBgColor: rgba(225, 218, 211, 0.3);
1259
+ --colorBgSelectMenu: rgb(255, 251, 244);
1260
+ --shadowSelectMenu:
1198
1261
  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);
1199
- --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
1200
- --fibery-color-colorBgListItemGeneralHover: rgb(250, 244, 236);
1201
- --fibery-color-colorBgListItemGeneralFocus: rgb(243, 236, 229);
1202
- --fibery-color-colorBgListItemGeneralSelected: rgb(213, 233, 240);
1203
- --fibery-color-colorBgListItemGeneralSelectedHover: rgb(194, 222, 232);
1204
- --fibery-color-colorBgListItemGeneralSelectedFocus: rgb(194, 222, 232);
1205
- --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
1206
- --fibery-color-colorTextListItemGeneralDisabled: rgb(163, 157, 150);
1207
- --fibery-color-colorBgListItemGeneralSelectedDisabled: rgb(213, 233, 240);
1208
- --fibery-color-opacityListItemGeneralDisabled: 0.4;
1209
- --fibery-color-colorSearchSubtitle: rgb(163, 157, 150);
1210
- --fibery-color-colorBgSearchPanel: rgb(255, 253, 250);
1211
- --fibery-color-colorBgSearchRowHover: rgb(243, 236, 229);
1212
- --fibery-color-colorBgSearchRowCreateHover: rgb(228, 241, 246);
1213
- --fibery-color-opacitySearchItemDone: 0.4;
1214
- --fibery-color-colorBgEntityBoxDefault: rgb(255, 253, 250);
1215
- --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(237, 231, 224);
1216
- --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(27, 22, 17, 0.05);
1217
- --fibery-color-colorBgEntityBoxDefaultHover: rgb(255, 253, 250);
1218
- --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(27, 22, 17, 0.1);
1219
- --fibery-color-colorBgEntityBoxDefaultFocus: rgb(255, 253, 250);
1220
- --fibery-color-colorOverlayEntityBoxDefaultFocus: rgb(0, 138, 169);
1221
- --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(0, 138, 169, 0.4);
1222
- --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(255, 253, 250);
1223
- --fibery-color-colorOverlayEntityBoxDefaultFocusHover: rgb(0, 138, 169);
1224
- --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(0, 138, 169, 0.6);
1225
- --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
1226
- --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(27, 22, 17, 0.1);
1227
- --fibery-color-colorBgEntityBoxSelected: rgb(249, 252, 253);
1228
- --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4);
1229
- --fibery-color-colorBgEntityBoxSelectedHover: rgb(238, 247, 249);
1230
- --fibery-color-shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgba(0, 138, 169, 0.6), 0 0 0 3px rgba(0, 138, 169, 0.4);
1231
- --fibery-color-colorBgEntityBoxSelectedDrag: rgb(238, 247, 249);
1232
- --fibery-color-shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4);
1233
- --fibery-color-opacityEntityBoxDisabled: 0.65;
1234
- --fibery-color-opacityEntityBoxDisabledHover: 0.75;
1235
- --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
1236
- --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
1237
- --fibery-color-entityCardBgColor: rgb(255, 253, 250);
1238
- --fibery-color-entityCardSelectedColor: rgba(253, 246, 239, 0.8);
1239
- --fibery-color-entityCardHoverColor: rgba(253, 246, 239, 0.8);
1240
- --fibery-color-entityCardDoneColor: rgba(243, 236, 229, 0.3);
1241
- --fibery-color-entityCardShadow: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1242
- --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1243
- --fibery-color-colorBgSegmentedControl: rgba(237, 231, 224, 0.8);
1244
- --fibery-color-colorBgMenuHeaderAvatar: rgb(255, 253, 250);
1245
- --fibery-color-shadowMenuHeaderAvatar: 0 1px 4px 0 rgba(99, 94, 87, 0.1), 0 0 0 0.5px rgba(237, 231, 224, 0.5);
1246
- --fibery-color-opacityMenuItemDragged: 0.4;
1247
- --fibery-color-colorBgMenuItemSelectedDragged: rgb(194, 222, 232);
1248
- --fibery-color-colorTextMenuItem: rgba(27, 22, 17, 0.9);
1249
- --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
1250
- --fibery-color-colorBgMenuItemHover: rgb(237, 231, 224);
1251
- --fibery-color-colorBgMenuItemFocus: rgb(232, 226, 219);
1252
- --fibery-color-colorBgMenuItemSelected: rgba(213, 233, 240, 0.8);
1253
- --fibery-color-colorBgMenuItemSelectedHover: rgba(194, 222, 232, 0.7);
1254
- --fibery-color-colorBgPinnedFieldsLabel: rgb(99, 94, 87);
1255
- --fibery-color-colorBgObjectEditorSeparator: rgb(27, 22, 17);
1256
- --fibery-color-colorBgMenuItemSelectedFocused: rgb(194, 222, 232);
1257
- --fibery-color-colorBgFieldEditorContainer: rgb(253, 246, 239);
1258
- --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(232, 226, 219);
1259
- --fibery-color-allowedDropColor: rgb(243, 236, 229);
1260
- --fibery-color-relationViewBgColor: rgb(253, 246, 239);
1261
- --fibery-color-mySpaceIconColor: rgb(129, 133, 137);
1262
- --fibery-color-mySpaceIconBg: rgba(112, 132, 153, 0.2);
1263
- --fibery-color-privateIconColor: rgb(116, 168, 101);
1264
- --fibery-color-privateIconBg: rgba(116, 168, 101, 0.2);
1265
- --fibery-color-favoritesIconColor: rgb(235, 169, 68);
1266
- --fibery-color-favoritesIconBg: rgba(235, 169, 68, 0.2);
1267
- --fibery-color-swatchDefault: #1fbed3;
1268
- --fibery-color-unitBg: rgb(250, 244, 236);
1269
- --fibery-color-unitBgHover: rgb(243, 236, 229);
1270
- --fibery-color-colorBgBadgeNeutral: rgba(237, 231, 224, 0.7);
1271
- --fibery-color-colorBgBadgeAccent: rgba(213, 233, 240, 0.7);
1272
- --fibery-color-colorBgBadgeSuccess: rgb(214, 234, 230);
1273
- --fibery-color-colorBgBadgeWarning: rgb(255, 242, 160);
1274
- --fibery-color-colorBgBadgeError: rgb(253, 220, 219);
1275
- --fibery-color-colorTextBadgeNeutral: rgb(99, 94, 87);
1276
- --fibery-color-colorTextBadgeAccent: rgb(0, 111, 139);
1277
- --fibery-color-colorTextBadgeSuccess: rgb(0, 116, 101);
1278
- --fibery-color-colorTextBadgeWarning: rgb(130, 113, 0);
1279
- --fibery-color-colorTextBadgeError: rgb(175, 36, 54);
1280
- --fibery-color-badgeBgColor: rgba(121, 118, 113, 0.2);
1281
- --fibery-color-tooltipBgColor: rgb(50, 45, 43);
1282
- --fibery-color-todayMarkerColor: rgb(237, 150, 150);
1283
- --fibery-color-viewBgOverlayColor: rgba(204, 198, 191, 0.2);
1284
- --fibery-color-floatEditorMenuBg: rgb(255, 251, 244);
1285
- --fibery-color-floatEditorActiveColor: rgb(0, 111, 139);
1286
- --fibery-color-commentColor: rgba(248, 231, 135, 0.6);
1287
- --fibery-color-cellBackgroundColor: rgb(253, 246, 239);
1288
- --fibery-color-cellBackgroundHoverColor: rgba(232, 226, 219, 0.3);
1289
- --fibery-color-cellBorderColor: rgba(204, 198, 191, 0.5);
1290
- --fibery-color-cellPinnedBorderColor: rgba(204, 198, 191, 0.7);
1291
- --fibery-color-tableRowWarningColor: rgba(248, 231, 135, 0.6);
1292
- --fibery-color-errorBgColor: rgba(211, 62, 75, 0.2);
1293
- --fibery-color-errorTextColor: rgb(175, 36, 54);
1294
- --fibery-color-errorButtonColor: rgb(211, 62, 75);
1295
- --fibery-color-warningBgColor: rgba(248, 231, 135, 0.6);
1296
- --fibery-color-warningButtonColor: rgb(130, 113, 0);
1297
- --fibery-color-infoBox: rgba(255, 247, 185, 0.5);
1298
- --fibery-color-appCardBgColor: rgb(255, 253, 250);
1299
- --fibery-color-appCardHoverColor: rgba(255, 251, 244, 0.95);
1300
- --fibery-color-modalBg: rgba(99, 94, 87, 0.2);
1301
- --fibery-color-modalContentBg: rgb(255, 253, 250);
1302
- --fibery-color-progressIconBg: rgba(0, 0, 0, 0.14);
1303
- --fibery-color-progressIconFill: rgba(0, 0, 0, 0.57);
1304
- --fibery-color-formBg: rgb(253, 246, 239);
1305
- --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(125, 119, 112, 0.1);
1306
- --fibery-color-formEditorFieldBg: rgb(250, 244, 236);
1307
- --fibery-color-filterGroup1Bg: rgb(253, 246, 239);
1308
- --fibery-color-filterGroup2Bg: rgb(250, 244, 236);
1309
- --fibery-color-filterGroupBorder: rgba(0, 0, 0, 0.05);
1310
- --fibery-color-colorBgNotificationHover: rgb(250, 244, 236);
1311
- --fibery-color-colorBgNotificationSelected: rgb(238, 247, 249);
1312
- --fibery-color-colorBgNotificationSelectedHover: rgb(228, 241, 246);
1313
- --fibery-color-disabledInversedTextColor: rgba(31, 26, 24, 0.25);
1314
- --fibery-color-success: rgb(0, 144, 126);
1315
- --fibery-color-danger: rgb(211, 62, 75);
1316
- --fibery-color-active: rgb(211, 62, 75);
1317
- --fibery-color-warning: rgb(247, 217, 0);
1318
- --fibery-color-cardBg: rgb(255, 253, 250);
1319
- --fibery-color-selectedImageBorder: rgba(0, 0, 0, 0.22);
1320
- --fibery-color-transparent: rgba(255, 255, 255, 0);
1321
- --fibery-color-progressBg: rgb(243, 236, 229);
1322
- --fibery-color-progressText: rgb(99, 94, 87);
1323
- --fibery-color-progressFillBg: rgb(99, 94, 87);
1324
- --fibery-color-progressFillText: rgb(255, 253, 250);
1325
- --fibery-color-progressBarFillNeutral: rgba(163, 157, 150, 0.2);
1326
- --fibery-color-progressBarFill: rgb(0, 138, 169);
1327
- --fibery-color-progressBarBg: rgba(0, 138, 169, 0.25);
1328
- --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
1329
- --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
1330
- --fibery-color-richTextTableBorder: rgba(0, 0, 0, 0.09);
1331
- --fibery-color-colorBgDropLine: rgb(132, 188, 206);
1332
- --fibery-color-viewBg: rgb(255, 251, 244);
1333
- --fibery-color-colorBgViewMetaItem: rgb(255, 253, 250);
1334
- --fibery-color-collectionViewBg: rgb(255, 251, 244);
1335
- --fibery-color-collectionViewBorder: 0 0 0 1px rgba(232, 226, 219, 0.6);
1336
- --fibery-color-viewSecondaryBg: rgb(253, 246, 239);
1337
- --fibery-color-viewHighlightBg: rgb(238, 247, 249);
1338
- --fibery-color-boardBg: rgb(255, 251, 244);
1339
- --fibery-color-boardBgWithOpacity80: rgba(255, 251, 244, 0.8);
1340
- --fibery-color-boardAxisBgHover: rgb(243, 236, 229);
1341
- --fibery-color-gridHeaderBgColor: rgb(253, 246, 239);
1342
- --fibery-color-gridHeaderHoverBgColor: rgb(250, 244, 236);
1343
- --fibery-color-gridHeaderTextColor: rgb(125, 119, 112);
1344
- --fibery-color-gridCellBgColor: rgb(255, 253, 250);
1345
- --fibery-color-gridCellBorderColor: rgb(237, 231, 224);
1346
- --fibery-color-gridDisabledCellBgColor: rgb(253, 246, 239);
1347
- --fibery-color-gridSelectedCellBgColor: rgb(238, 247, 249);
1348
- --fibery-color-gridHighlightedCellBgColor: rgb(228, 241, 246);
1349
- --fibery-color-gridSelectedCellBorderColor: rgb(194, 222, 232);
1350
- --fibery-color-gridSelectedPinnedCellBorderColor: rgb(166, 206, 219);
1351
- --fibery-color-gridDisabledSelectedCellBgColor: rgb(228, 241, 246);
1352
- --fibery-color-gridActiveCellBorderColor: rgb(132, 188, 206);
1353
- --fibery-color-timelineEntityHandleColor: rgb(166, 206, 219);
1354
- --fibery-color-timelineDependencyHoverBgColor: rgb(132, 188, 206);
1355
- --fibery-color-timelineDependencyOverlapBgColor: rgb(211, 62, 75);
1356
- --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(175, 36, 54);
1357
- --fibery-color-timelineCellBgColor: rgb(255, 251, 244);
1358
- --fibery-color-timelineCellWeekendBgColor: rgb(253, 246, 239);
1359
- --fibery-color-timelineCellTodayBgColor: rgb(228, 241, 246);
1360
- --fibery-color-timelineCreateEntityPlaceholderBgColor: rgba(99, 94, 87, 0.2);
1361
- --fibery-color-colorBgButtonSolidAccentDefault: rgb(0, 138, 169);
1362
- --fibery-color-colorBgButtonSolidAccentHover: rgb(0, 111, 139);
1363
- --fibery-color-colorBgButtonSolidNeutralDefault: rgb(27, 22, 17);
1364
- --fibery-color-colorBgButtonSolidNeutralHover: rgba(27, 22, 17, 0.85);
1365
- --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(211, 62, 75);
1366
- --fibery-color-colorBgButtonSolidDestructiveHover: rgb(175, 36, 54);
1367
- --fibery-color-colorTextButtonSolidAccent: rgb(255, 253, 250);
1368
- --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 253, 250, 0.8);
1369
- --fibery-color-colorTextButtonSolidNeutral: rgb(255, 253, 250);
1370
- --fibery-color-colorTextButtonSolidNeutralActive: rgb(255, 253, 250);
1371
- --fibery-color-colorTextButtonSolidDestructive: rgb(255, 253, 250);
1372
- --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 253, 250, 0.8);
1373
- --fibery-color-colorIconButtonSolidAccent: rgb(255, 253, 250);
1374
- --fibery-color-colorIconButtonSolidNeutral: rgb(255, 253, 250);
1375
- --fibery-color-colorIconButtonSolidDestructive: rgb(255, 253, 250);
1376
- --fibery-color-colorBorderButtonOutlineAccentDefault: rgb(132, 188, 206);
1377
- --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(204, 198, 191);
1378
- --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(244, 179, 178);
1379
- --fibery-color-colorBgButtonOutlineAccentDefault: rgb(255, 253, 250);
1380
- --fibery-color-colorBgButtonOutlineAccentHover: rgb(238, 247, 249);
1381
- --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(255, 253, 250);
1382
- --fibery-color-colorBgButtonOutlineNeutralHover: rgb(243, 236, 229);
1383
- --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(255, 253, 250);
1384
- --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(255, 232, 231);
1385
- --fibery-color-colorTextButtonOutlineAccent: rgb(0, 111, 139);
1386
- --fibery-color-colorTextButtonOutlineAccentActive: rgba(0, 111, 139, 0.8);
1387
- --fibery-color-colorTextButtonOutlineNeutral: rgb(99, 94, 87);
1388
- --fibery-color-colorTextButtonOutlineNeutralActive: rgba(27, 22, 17, 0.8);
1389
- --fibery-color-colorTextButtonOutlineDestructive: rgb(175, 36, 54);
1390
- --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(175, 36, 54, 0.8);
1391
- --fibery-color-colorIconButtonOutlineAccent: rgb(0, 111, 139);
1392
- --fibery-color-colorIconButtonOutlineNeutral: rgb(99, 94, 87);
1393
- --fibery-color-colorIconButtonOutlineDestructive: rgb(175, 36, 54);
1394
- --fibery-color-colorBgButtonSoftAccentDefault: rgb(238, 247, 249);
1395
- --fibery-color-colorBgButtonSoftAccentHover: rgb(213, 233, 240);
1396
- --fibery-color-colorBgButtonSoftNeutralDefault: rgb(250, 244, 236);
1397
- --fibery-color-colorBgButtonSoftNeutralHover: rgb(225, 218, 211);
1398
- --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(255, 232, 231);
1399
- --fibery-color-colorBgButtonSoftDestructiveHover: rgb(250, 203, 202);
1400
- --fibery-color-colorTextButtonSoftAccent: rgb(0, 111, 139);
1401
- --fibery-color-colorTextButtonSoftAccentActive: rgba(0, 111, 139, 0.8);
1402
- --fibery-color-colorTextButtonSoftNeutral: rgb(99, 94, 87);
1403
- --fibery-color-colorTextButtonSoftNeutralActive: rgba(99, 94, 87, 0.8);
1404
- --fibery-color-colorTextButtonSoftDestructive: rgb(175, 36, 54);
1405
- --fibery-color-colorTextButtonSoftDestructiveActive: rgba(175, 36, 54, 0.8);
1406
- --fibery-color-colorIconButtonSoftAccent: rgb(0, 111, 139);
1407
- --fibery-color-colorIconButtonSoftNeutral: rgb(99, 94, 87);
1408
- --fibery-color-colorIconButtonSoftDestructive: rgb(175, 36, 54);
1409
- --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
1410
- --fibery-color-colorBgButtonGhostAccentHover: rgba(228, 241, 246, 0.8);
1411
- --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
1412
- --fibery-color-colorBgButtonGhostNeutralHover: rgba(225, 218, 211, 0.5);
1413
- --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
1414
- --fibery-color-colorBgButtonGhostDestructiveHover: rgb(255, 232, 231);
1415
- --fibery-color-colorTextButtonGhostAccent: rgb(0, 111, 139);
1416
- --fibery-color-colorTextButtonGhostAccentActive: rgba(0, 111, 139, 0.8);
1417
- --fibery-color-colorTextButtonGhostNeutral: rgb(99, 94, 87);
1418
- --fibery-color-colorTextButtonGhostNeutralActive: rgba(99, 94, 87, 0.8);
1419
- --fibery-color-colorTextButtonGhostDestructive: rgb(175, 36, 54);
1420
- --fibery-color-colorTextButtonGhostDestructiveActive: rgba(175, 36, 54, 0.8);
1421
- --fibery-color-colorIconButtonGhostAccent: rgb(0, 111, 139);
1422
- --fibery-color-colorIconButtonGhostNeutral: rgb(99, 94, 87);
1423
- --fibery-color-colorIconButtonGhostDestructive: rgb(175, 36, 54);
1424
- --fibery-color-colorBorderAccentFocusRing: rgba(0, 138, 169, 0.3);
1425
- --fibery-color-colorBorderNeutralFocusRing: rgba(163, 157, 150, 0.3);
1426
- --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 75, 0.3);
1427
- --fibery-color-colorBgReactionsDefault: rgb(255, 253, 250);
1428
- --fibery-color-colorBgReactionsHover: rgb(250, 244, 236);
1429
- --fibery-color-colorBorderReactionsHover: rgb(204, 198, 191);
1430
- --fibery-color-colorBgReactionsSelectedDefault: rgb(238, 247, 249);
1431
- --fibery-color-colorBorderReactionsSelectedDefault: rgb(132, 188, 206);
1432
- --fibery-color-colorBgReactionsSelectedHover: rgb(249, 252, 253);
1433
- --fibery-color-colorBorderReactionsSelectedHover: rgb(0, 138, 169);
1434
- --fibery-color-colorTextReactionsSelected: rgb(0, 126, 159);
1435
- --fibery-color-colorBgToastDefault: rgb(255, 251, 244);
1436
- --fibery-color-colorBgDbTabHover: rgb(250, 244, 236);
1437
- --fibery-color-colorBgDbTabFocus: rgb(232, 226, 219);
1438
- --fibery-color-colorBgTabHover: rgba(99, 94, 87, 0.1);
1439
- --fibery-color-colorBgMessageContainer: rgb(250, 244, 236);
1440
- --fibery-color-colorBgMessageContainerHover: rgb(243, 236, 229);
1441
- --fibery-color-colorBgEntityAvatarDefault: rgb(250, 252, 253);
1442
- --fibery-color-colorBgEntityAvatarHover: rgb(238, 247, 249);
1443
- --fibery-color-colorTextEntityAvatarDefault: rgb(132, 188, 206);
1444
- --fibery-color-colorTextEntityAvatarHover: rgb(0, 138, 169);
1445
- --fibery-color-colorBgMessageHighlighted: rgb(255, 253, 250);
1446
- --fibery-color-colorBgCommentHover: rgb(253, 246, 239);
1447
- --fibery-color-colorBgCodeEditor: rgb(255, 253, 250);
1448
- --fibery-color-colorBgEditorImageZoomed: rgb(250, 244, 236);
1449
- --fibery-color-colorMermaidPrimaryColor: rgb(253, 246, 239);
1450
- --fibery-color-colorMermaidPrimaryBorderColor: rgb(163, 157, 150);
1451
- --fibery-color-colorMermaidLineColor: rgb(125, 119, 112);
1452
- --fibery-color-colorBgWhiteboard: rgb(255, 253, 250);
1453
- --fibery-color-colorGridDotWhiteboard: rgb(232, 226, 219);
1454
- --fibery-color-colorSelectionWhiteboardBorderEnabled: rgb(132, 188, 206);
1455
- --fibery-color-colorHighlightWhiteboardSelection: rgb(132, 188, 206);
1456
- --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(163, 157, 150, 0.5);
1457
- --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(163, 157, 150, 0.5);
1458
- --fibery-color-colorPlaceholderWhiteboardDefault: rgba(132, 188, 206, 0.2);
1459
- --fibery-color-colorLinkPointWhiteboardDefault: rgb(132, 188, 206);
1460
- --fibery-color-colorLinkPointWhiteboardFillDefault: rgb(255, 253, 250);
1461
- --fibery-color-colorMapWhiteboardPreviewDefault: rgba(132, 188, 206, 0.4);
1462
- --fibery-color-colorCardWhiteboardShadowDefault: rgba(99, 94, 87, 0.05);
1463
- --fibery-color-colorCardWhiteboardBgDefault: rgb(255, 253, 250);
1464
- --fibery-color-colorCardWhiteboardBorderDefault: rgba(27, 22, 17, 0.2);
1465
- --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(27, 22, 17, 0.6);
1466
- --fibery-color-colorUnitWhiteboardBgDefault: rgb(250, 244, 236);
1467
- --fibery-color-colorUnitWhiteboardBorderDefault: rgba(27, 22, 17, 0.2);
1468
- --fibery-color-colorSectionWhiteboardBgInactive: rgb(253, 246, 239);
1469
- --fibery-color-colorSectionWhiteboardBorderInactive: rgb(232, 226, 219);
1470
- --fibery-color-colorEmbedWhiteboardEditBorder: rgba(135, 191, 179, 0.9);
1471
- --fibery-color-colorTextWhiteboardDefault: rgb(27, 22, 17);
1472
- --fibery-color-colorTextWhiteboardDisabled: rgb(163, 157, 150);
1473
- --fibery-color-colorTextWhiteboardAccent: rgba(27, 22, 17, 0.6);
1474
- --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 253, 250);
1475
- --fibery-color-instrumentsMenuBg: rgb(255, 253, 250);
1476
- --fibery-color-instrumentsMenuShadow:
1262
+ --colorBgListItemGeneral: rgba(255, 255, 255, 0);
1263
+ --colorBgListItemGeneralHover: rgb(250, 244, 236);
1264
+ --colorBgListItemGeneralFocus: rgb(243, 236, 229);
1265
+ --colorBgListItemGeneralSelected: rgb(213, 233, 240);
1266
+ --colorBgListItemGeneralSelectedHover: rgb(194, 222, 232);
1267
+ --colorBgListItemGeneralSelectedFocus: rgb(194, 222, 232);
1268
+ --colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
1269
+ --colorTextListItemGeneralDisabled: rgb(163, 157, 150);
1270
+ --colorBgListItemGeneralSelectedDisabled: rgb(213, 233, 240);
1271
+ --opacityListItemGeneralDisabled: 0.4;
1272
+ --colorSearchSubtitle: rgb(163, 157, 150);
1273
+ --colorBgSearchPanel: rgb(255, 253, 250);
1274
+ --colorBgSearchRowHover: rgb(243, 236, 229);
1275
+ --colorBgSearchRowCreateHover: rgb(228, 241, 246);
1276
+ --opacitySearchItemDone: 0.4;
1277
+ --colorBgEntityBoxDefault: rgb(255, 253, 250);
1278
+ --shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(237, 231, 224);
1279
+ --shadowEntityBoxDefault: 0 2px 4px 0 rgba(27, 22, 17, 0.05);
1280
+ --colorBgEntityBoxDefaultHover: rgb(255, 253, 250);
1281
+ --shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(27, 22, 17, 0.1);
1282
+ --colorBgEntityBoxDefaultFocus: rgb(255, 253, 250);
1283
+ --colorOverlayEntityBoxDefaultFocus: rgb(0, 138, 169);
1284
+ --shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(0, 138, 169, 0.4);
1285
+ --colorBgEntityBoxDefaultFocusHover: rgb(255, 253, 250);
1286
+ --colorOverlayEntityBoxDefaultFocusHover: rgb(0, 138, 169);
1287
+ --shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(0, 138, 169, 0.6);
1288
+ --opacityEntityBoxDefaultDrag: 0.4;
1289
+ --shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(27, 22, 17, 0.1);
1290
+ --colorBgEntityBoxSelected: rgb(249, 252, 253);
1291
+ --shadowStrokeEntityBoxSelected: 0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4);
1292
+ --colorBgEntityBoxSelectedHover: rgb(238, 247, 249);
1293
+ --shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgba(0, 138, 169, 0.6), 0 0 0 3px rgba(0, 138, 169, 0.4);
1294
+ --colorBgEntityBoxSelectedDrag: rgb(238, 247, 249);
1295
+ --shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgba(0, 138, 169, 0.4), 0 0 0 3px rgba(0, 138, 169, 0.4);
1296
+ --opacityEntityBoxDisabled: 0.65;
1297
+ --opacityEntityBoxDisabledHover: 0.75;
1298
+ --opacityEntityBoxDisabledFocus: 0.75;
1299
+ --opacityEntityBoxDisabledDrag: 0.4;
1300
+ --entityCardBgColor: rgb(255, 253, 250);
1301
+ --entityCardSelectedColor: rgba(253, 246, 239, 0.8);
1302
+ --entityCardHoverColor: rgba(253, 246, 239, 0.8);
1303
+ --entityCardDoneColor: rgba(243, 236, 229, 0.3);
1304
+ --entityCardShadow: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1305
+ --entityCardShadowHover: 0 0 0 1px rgba(125, 119, 112, 0.1), 0 2px 4px -4px rgba(125, 119, 112, 0.2);
1306
+ --colorBgSegmentedControl: rgba(237, 231, 224, 0.8);
1307
+ --colorBgMenuHeaderAvatar: rgb(255, 253, 250);
1308
+ --shadowMenuHeaderAvatar: 0 1px 4px 0 rgba(99, 94, 87, 0.1), 0 0 0 0.5px rgba(237, 231, 224, 0.5);
1309
+ --opacityMenuItemDragged: 0.4;
1310
+ --colorBgMenuItemSelectedDragged: rgb(194, 222, 232);
1311
+ --colorTextMenuItem: rgba(27, 22, 17, 0.9);
1312
+ --colorBgMenuItem: rgba(255, 255, 255, 0);
1313
+ --colorBgMenuItemHover: rgb(237, 231, 224);
1314
+ --colorBgMenuItemFocus: rgb(232, 226, 219);
1315
+ --colorBgMenuItemSelected: rgba(213, 233, 240, 0.8);
1316
+ --colorBgMenuItemSelectedHover: rgba(194, 222, 232, 0.7);
1317
+ --colorBgPinnedFieldsLabel: rgb(99, 94, 87);
1318
+ --colorBgObjectEditorSeparator: rgb(27, 22, 17);
1319
+ --colorBgMenuItemSelectedFocused: rgb(194, 222, 232);
1320
+ --colorBgFieldEditorContainer: rgb(253, 246, 239);
1321
+ --colorBgFieldEditorLinkEqualSign: rgb(232, 226, 219);
1322
+ --allowedDropColor: rgb(243, 236, 229);
1323
+ --relationViewBgColor: rgb(253, 246, 239);
1324
+ --mySpaceIconColor: rgb(129, 133, 137);
1325
+ --mySpaceIconBg: rgba(112, 132, 153, 0.2);
1326
+ --privateIconColor: rgb(116, 168, 101);
1327
+ --privateIconBg: rgba(116, 168, 101, 0.2);
1328
+ --favoritesIconColor: rgb(235, 169, 68);
1329
+ --favoritesIconBg: rgba(235, 169, 68, 0.2);
1330
+ --swatchDefault: #1fbed3;
1331
+ --unitBg: rgb(250, 244, 236);
1332
+ --unitBgHover: rgb(243, 236, 229);
1333
+ --colorBgBadgeNeutral: rgba(237, 231, 224, 0.7);
1334
+ --colorBgBadgeAccent: rgba(213, 233, 240, 0.7);
1335
+ --colorBgBadgeSuccess: rgb(214, 234, 230);
1336
+ --colorBgBadgeWarning: rgb(255, 242, 160);
1337
+ --colorBgBadgeError: rgb(253, 220, 219);
1338
+ --colorTextBadgeNeutral: rgb(99, 94, 87);
1339
+ --colorTextBadgeAccent: rgb(0, 111, 139);
1340
+ --colorTextBadgeSuccess: rgb(0, 116, 101);
1341
+ --colorTextBadgeWarning: rgb(130, 113, 0);
1342
+ --colorTextBadgeError: rgb(175, 36, 54);
1343
+ --badgeBgColor: rgba(121, 118, 113, 0.2);
1344
+ --tooltipBgColor: rgb(50, 45, 43);
1345
+ --todayMarkerColor: rgb(237, 150, 150);
1346
+ --viewBgOverlayColor: rgba(204, 198, 191, 0.2);
1347
+ --floatEditorMenuBg: rgb(255, 251, 244);
1348
+ --floatEditorActiveColor: rgb(0, 111, 139);
1349
+ --commentColor: rgba(248, 231, 135, 0.6);
1350
+ --cellBackgroundColor: rgb(253, 246, 239);
1351
+ --cellBackgroundHoverColor: rgba(232, 226, 219, 0.3);
1352
+ --cellBorderColor: rgba(204, 198, 191, 0.5);
1353
+ --cellPinnedBorderColor: rgba(204, 198, 191, 0.7);
1354
+ --tableRowWarningColor: rgba(248, 231, 135, 0.6);
1355
+ --errorBgColor: rgba(211, 62, 75, 0.2);
1356
+ --errorTextColor: rgb(175, 36, 54);
1357
+ --errorButtonColor: rgb(211, 62, 75);
1358
+ --warningBgColor: rgba(248, 231, 135, 0.6);
1359
+ --warningButtonColor: rgb(130, 113, 0);
1360
+ --infoBox: rgba(255, 247, 185, 0.5);
1361
+ --appCardBgColor: rgb(255, 253, 250);
1362
+ --appCardHoverColor: rgba(255, 251, 244, 0.95);
1363
+ --modalBg: rgba(99, 94, 87, 0.2);
1364
+ --modalContentBg: rgb(255, 253, 250);
1365
+ --progressIconBg: rgba(0, 0, 0, 0.14);
1366
+ --progressIconFill: rgba(0, 0, 0, 0.57);
1367
+ --formBg: rgb(253, 246, 239);
1368
+ --formHeaderShadow: 0 0 6px 0 rgba(125, 119, 112, 0.1);
1369
+ --formEditorFieldBg: rgb(250, 244, 236);
1370
+ --filterGroup1Bg: rgb(253, 246, 239);
1371
+ --filterGroup2Bg: rgb(250, 244, 236);
1372
+ --filterGroupBorder: rgba(0, 0, 0, 0.05);
1373
+ --colorBgNotificationHover: rgb(250, 244, 236);
1374
+ --colorBgNotificationSelected: rgb(238, 247, 249);
1375
+ --colorBgNotificationSelectedHover: rgb(228, 241, 246);
1376
+ --disabledInversedTextColor: rgba(31, 26, 24, 0.25);
1377
+ --success: rgb(0, 144, 126);
1378
+ --danger: rgb(211, 62, 75);
1379
+ --active: rgb(211, 62, 75);
1380
+ --warning: rgb(247, 217, 0);
1381
+ --cardBg: rgb(255, 253, 250);
1382
+ --selectedImageBorder: rgba(0, 0, 0, 0.22);
1383
+ --transparent: rgba(255, 255, 255, 0);
1384
+ --progressBg: rgb(243, 236, 229);
1385
+ --progressText: rgb(99, 94, 87);
1386
+ --progressFillBg: rgb(99, 94, 87);
1387
+ --progressFillText: rgb(255, 253, 250);
1388
+ --progressBarFillNeutral: rgba(163, 157, 150, 0.2);
1389
+ --progressBarFill: rgb(0, 138, 169);
1390
+ --progressBarBg: rgba(0, 138, 169, 0.25);
1391
+ --colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
1392
+ --colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
1393
+ --richTextTableBorder: rgba(0, 0, 0, 0.09);
1394
+ --colorBgDropLine: rgb(132, 188, 206);
1395
+ --viewBg: rgb(255, 251, 244);
1396
+ --colorBgViewMetaItem: rgb(255, 253, 250);
1397
+ --collectionViewBg: rgb(255, 251, 244);
1398
+ --collectionViewBorder: 0 0 0 1px rgba(232, 226, 219, 0.6);
1399
+ --viewSecondaryBg: rgb(253, 246, 239);
1400
+ --viewHighlightBg: rgb(238, 247, 249);
1401
+ --boardBg: rgb(255, 251, 244);
1402
+ --boardBgWithOpacity80: rgba(255, 251, 244, 0.8);
1403
+ --boardAxisBgHover: rgb(243, 236, 229);
1404
+ --gridHeaderBgColor: rgb(253, 246, 239);
1405
+ --gridHeaderHoverBgColor: rgb(250, 244, 236);
1406
+ --gridHeaderTextColor: rgb(125, 119, 112);
1407
+ --gridCellBgColor: rgb(255, 253, 250);
1408
+ --gridCellBorderColor: rgb(237, 231, 224);
1409
+ --gridDisabledCellBgColor: rgb(253, 246, 239);
1410
+ --gridSelectedCellBgColor: rgb(238, 247, 249);
1411
+ --gridHighlightedCellBgColor: rgb(228, 241, 246);
1412
+ --gridSelectedCellBorderColor: rgb(194, 222, 232);
1413
+ --gridSelectedPinnedCellBorderColor: rgb(166, 206, 219);
1414
+ --gridDisabledSelectedCellBgColor: rgb(228, 241, 246);
1415
+ --gridActiveCellBorderColor: rgb(132, 188, 206);
1416
+ --timelineEntityHandleColor: rgb(166, 206, 219);
1417
+ --timelineDependencyHoverBgColor: rgb(132, 188, 206);
1418
+ --timelineDependencyOverlapBgColor: rgb(211, 62, 75);
1419
+ --timelineDependencyOverlapHoverBgColor: rgb(175, 36, 54);
1420
+ --timelineCellBgColor: rgb(255, 251, 244);
1421
+ --timelineCellWeekendBgColor: rgb(253, 246, 239);
1422
+ --timelineCellTodayBgColor: rgb(228, 241, 246);
1423
+ --timelineCreateEntityPlaceholderBgColor: rgba(99, 94, 87, 0.2);
1424
+ --colorBgButtonSolidAccentDefault: rgb(0, 138, 169);
1425
+ --colorBgButtonSolidAccentHover: rgb(0, 111, 139);
1426
+ --colorBgButtonSolidNeutralDefault: rgb(27, 22, 17);
1427
+ --colorBgButtonSolidNeutralHover: rgba(27, 22, 17, 0.85);
1428
+ --colorBgButtonSolidDestructiveDefault: rgb(211, 62, 75);
1429
+ --colorBgButtonSolidDestructiveHover: rgb(175, 36, 54);
1430
+ --colorTextButtonSolidAccent: rgb(255, 253, 250);
1431
+ --colorTextButtonSolidAccentActive: rgba(255, 253, 250, 0.8);
1432
+ --colorTextButtonSolidNeutral: rgb(255, 253, 250);
1433
+ --colorTextButtonSolidNeutralActive: rgb(255, 253, 250);
1434
+ --colorTextButtonSolidDestructive: rgb(255, 253, 250);
1435
+ --colorTextButtonSolidDestructiveActive: rgba(255, 253, 250, 0.8);
1436
+ --colorIconButtonSolidAccent: rgb(255, 253, 250);
1437
+ --colorIconButtonSolidNeutral: rgb(255, 253, 250);
1438
+ --colorIconButtonSolidDestructive: rgb(255, 253, 250);
1439
+ --colorBorderButtonOutlineAccentDefault: rgb(132, 188, 206);
1440
+ --colorBorderButtonOutlineNeutralDefault: rgb(204, 198, 191);
1441
+ --colorBorderButtonOutlineDestructiveDefault: rgb(244, 179, 178);
1442
+ --colorBgButtonOutlineAccentDefault: rgb(255, 253, 250);
1443
+ --colorBgButtonOutlineAccentHover: rgb(238, 247, 249);
1444
+ --colorBgButtonOutlineNeutralDefault: rgb(255, 253, 250);
1445
+ --colorBgButtonOutlineNeutralHover: rgb(243, 236, 229);
1446
+ --colorBgButtonOutlineDestructiveDefault: rgb(255, 253, 250);
1447
+ --colorBgButtonOutlineDestructiveHover: rgb(255, 232, 231);
1448
+ --colorTextButtonOutlineAccent: rgb(0, 111, 139);
1449
+ --colorTextButtonOutlineAccentActive: rgba(0, 111, 139, 0.8);
1450
+ --colorTextButtonOutlineNeutral: rgb(99, 94, 87);
1451
+ --colorTextButtonOutlineNeutralActive: rgba(27, 22, 17, 0.8);
1452
+ --colorTextButtonOutlineDestructive: rgb(175, 36, 54);
1453
+ --colorTextButtonOutlineDestructiveActive: rgba(175, 36, 54, 0.8);
1454
+ --colorIconButtonOutlineAccent: rgb(0, 111, 139);
1455
+ --colorIconButtonOutlineNeutral: rgb(99, 94, 87);
1456
+ --colorIconButtonOutlineDestructive: rgb(175, 36, 54);
1457
+ --colorBgButtonSoftAccentDefault: rgb(238, 247, 249);
1458
+ --colorBgButtonSoftAccentHover: rgb(213, 233, 240);
1459
+ --colorBgButtonSoftNeutralDefault: rgb(250, 244, 236);
1460
+ --colorBgButtonSoftNeutralHover: rgb(225, 218, 211);
1461
+ --colorBgButtonSoftDestructiveDefault: rgb(255, 232, 231);
1462
+ --colorBgButtonSoftDestructiveHover: rgb(250, 203, 202);
1463
+ --colorTextButtonSoftAccent: rgb(0, 111, 139);
1464
+ --colorTextButtonSoftAccentActive: rgba(0, 111, 139, 0.8);
1465
+ --colorTextButtonSoftNeutral: rgb(99, 94, 87);
1466
+ --colorTextButtonSoftNeutralActive: rgba(99, 94, 87, 0.8);
1467
+ --colorTextButtonSoftDestructive: rgb(175, 36, 54);
1468
+ --colorTextButtonSoftDestructiveActive: rgba(175, 36, 54, 0.8);
1469
+ --colorIconButtonSoftAccent: rgb(0, 111, 139);
1470
+ --colorIconButtonSoftNeutral: rgb(99, 94, 87);
1471
+ --colorIconButtonSoftDestructive: rgb(175, 36, 54);
1472
+ --colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
1473
+ --colorBgButtonGhostAccentHover: rgba(228, 241, 246, 0.8);
1474
+ --colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
1475
+ --colorBgButtonGhostNeutralHover: rgba(225, 218, 211, 0.5);
1476
+ --colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
1477
+ --colorBgButtonGhostDestructiveHover: rgb(255, 232, 231);
1478
+ --colorTextButtonGhostAccent: rgb(0, 111, 139);
1479
+ --colorTextButtonGhostAccentActive: rgba(0, 111, 139, 0.8);
1480
+ --colorTextButtonGhostNeutral: rgb(99, 94, 87);
1481
+ --colorTextButtonGhostNeutralActive: rgba(99, 94, 87, 0.8);
1482
+ --colorTextButtonGhostDestructive: rgb(175, 36, 54);
1483
+ --colorTextButtonGhostDestructiveActive: rgba(175, 36, 54, 0.8);
1484
+ --colorIconButtonGhostAccent: rgb(0, 111, 139);
1485
+ --colorIconButtonGhostNeutral: rgb(99, 94, 87);
1486
+ --colorIconButtonGhostDestructive: rgb(175, 36, 54);
1487
+ --colorBorderAccentFocusRing: rgba(0, 138, 169, 0.3);
1488
+ --colorBorderNeutralFocusRing: rgba(163, 157, 150, 0.3);
1489
+ --colorBorderDestructiveFocusRing: rgba(211, 62, 75, 0.3);
1490
+ --colorBgReactionsDefault: rgb(255, 253, 250);
1491
+ --colorBgReactionsHover: rgb(250, 244, 236);
1492
+ --colorBorderReactionsHover: rgb(204, 198, 191);
1493
+ --colorBgReactionsSelectedDefault: rgb(238, 247, 249);
1494
+ --colorBorderReactionsSelectedDefault: rgb(132, 188, 206);
1495
+ --colorBgReactionsSelectedHover: rgb(249, 252, 253);
1496
+ --colorBorderReactionsSelectedHover: rgb(0, 138, 169);
1497
+ --colorTextReactionsSelected: rgb(0, 126, 159);
1498
+ --colorBgToggleButtonUnselectedNormal: rgb(255, 253, 250);
1499
+ --colorBgToggleButtonUnselectedHover: rgb(250, 244, 236);
1500
+ --colorBgToggleButtonSelectedNormal: rgb(238, 247, 249);
1501
+ --colorBgToggleButtonSelectedHover: rgb(249, 252, 253);
1502
+ --colorBorderToggleButtonUnselectedNormal: rgb(204, 198, 191);
1503
+ --colorBorderToggleButtonUnselectedHover: rgb(204, 198, 191);
1504
+ --colorBorderToggleButtonSelectedNormal: rgb(132, 188, 206);
1505
+ --colorBorderToggleButtonSelectedHover: rgb(0, 138, 169);
1506
+ --colorTextToggleButtonUnselectedNormal: rgb(99, 94, 87);
1507
+ --colorTextToggleButtonUnselectedHover: rgb(99, 94, 87);
1508
+ --colorTextToggleButtonSelectedNormal: rgb(0, 126, 159);
1509
+ --colorTextToggleButtonSelectedHover: rgb(0, 126, 159);
1510
+ --colorIconToggleButtonUnselectedNormal: rgb(99, 94, 87);
1511
+ --colorIconToggleButtonUnselectedHover: rgb(99, 94, 87);
1512
+ --colorIconToggleButtonSelectedNormal: rgb(0, 111, 139);
1513
+ --colorIconToggleButtonSelectedHover: rgb(0, 111, 139);
1514
+ --colorBgRoundToggleButtonUnselectedNormal: rgb(255, 253, 250);
1515
+ --colorBgRoundToggleButtonUnselectedHover: rgb(250, 244, 236);
1516
+ --colorBgRoundToggleButtonSelectedNormal: rgb(228, 241, 246);
1517
+ --colorBgRoundToggleButtonSelectedHover: rgb(238, 247, 249);
1518
+ --colorBorderRoundToggleButtonUnselectedNormal: rgb(204, 198, 191);
1519
+ --colorBorderRoundToggleButtonUnselectedHover: rgb(204, 198, 191);
1520
+ --colorBorderRoundToggleButtonSelectedNormal: rgb(132, 188, 206);
1521
+ --colorBorderRoundToggleButtonSelectedHover: rgb(0, 138, 169);
1522
+ --colorTextRoundToggleButtonUnselectedNormal: rgb(99, 94, 87);
1523
+ --colorTextRoundToggleButtonUnselectedHover: rgb(99, 94, 87);
1524
+ --colorTextRoundToggleButtonSelectedNormal: rgb(0, 126, 159);
1525
+ --colorTextRoundToggleButtonSelectedHover: rgb(0, 126, 159);
1526
+ --colorIconRoundToggleButtonUnselectedNormal: rgb(99, 94, 87);
1527
+ --colorIconRoundToggleButtonUnselectedHover: rgb(99, 94, 87);
1528
+ --colorIconRoundToggleButtonSelectedNormal: rgb(0, 111, 139);
1529
+ --colorIconRoundToggleButtonSelectedHover: rgb(0, 111, 139);
1530
+ --colorBgToastDefault: rgb(255, 251, 244);
1531
+ --colorBgDbTabHover: rgb(250, 244, 236);
1532
+ --colorBgDbTabFocus: rgb(232, 226, 219);
1533
+ --colorBgTabHover: rgba(99, 94, 87, 0.1);
1534
+ --colorBgMessageContainer: rgb(250, 244, 236);
1535
+ --colorBgMessageContainerHover: rgb(243, 236, 229);
1536
+ --colorBgEntityAvatarDefault: rgb(250, 252, 253);
1537
+ --colorBgEntityAvatarHover: rgb(238, 247, 249);
1538
+ --colorTextEntityAvatarDefault: rgb(132, 188, 206);
1539
+ --colorTextEntityAvatarHover: rgb(0, 138, 169);
1540
+ --colorBgMessageHighlighted: rgb(255, 253, 250);
1541
+ --colorBgCommentHover: rgb(253, 246, 239);
1542
+ --colorBgCodeEditor: rgb(255, 253, 250);
1543
+ --colorBgEditorImageZoomed: rgb(250, 244, 236);
1544
+ --colorMermaidPrimaryColor: rgb(253, 246, 239);
1545
+ --colorMermaidPrimaryBorderColor: rgb(163, 157, 150);
1546
+ --colorMermaidLineColor: rgb(125, 119, 112);
1547
+ --colorBgWhiteboard: rgb(255, 253, 250);
1548
+ --colorGridDotWhiteboard: rgb(232, 226, 219);
1549
+ --colorSelectionWhiteboardBorderEnabled: rgb(132, 188, 206);
1550
+ --colorHighlightWhiteboardSelection: rgb(132, 188, 206);
1551
+ --colorHighlightWhiteboardSelectionLocked: rgba(163, 157, 150, 0.5);
1552
+ --colorSelectionWhiteboardBorderDisabled: rgba(163, 157, 150, 0.5);
1553
+ --colorPlaceholderWhiteboardDefault: rgba(132, 188, 206, 0.2);
1554
+ --colorLinkPointWhiteboardDefault: rgb(132, 188, 206);
1555
+ --colorLinkPointWhiteboardFillDefault: rgb(255, 253, 250);
1556
+ --colorMapWhiteboardPreviewDefault: rgba(132, 188, 206, 0.4);
1557
+ --colorCardWhiteboardShadowDefault: rgba(99, 94, 87, 0.05);
1558
+ --colorCardWhiteboardBgDefault: rgb(255, 253, 250);
1559
+ --colorCardWhiteboardBorderDefault: rgba(27, 22, 17, 0.2);
1560
+ --colorUnitHeaderWhiteboardDefault: rgba(27, 22, 17, 0.6);
1561
+ --colorUnitWhiteboardBgDefault: rgb(250, 244, 236);
1562
+ --colorUnitWhiteboardBorderDefault: rgba(27, 22, 17, 0.2);
1563
+ --colorSectionWhiteboardBgInactive: rgb(253, 246, 239);
1564
+ --colorSectionWhiteboardBorderInactive: rgb(232, 226, 219);
1565
+ --colorUploadPreviewBg: rgba(99, 94, 87, 0.65);
1566
+ --colorEmbedWhiteboardEditBorder: rgba(135, 191, 179, 0.9);
1567
+ --colorTextWhiteboardDefault: rgb(27, 22, 17);
1568
+ --colorTextWhiteboardDisabled: rgb(163, 157, 150);
1569
+ --colorTextWhiteboardAccent: rgba(27, 22, 17, 0.6);
1570
+ --colorTextWhiteboardInversedDefault: rgb(255, 253, 250);
1571
+ --instrumentsMenuBg: rgb(255, 253, 250);
1572
+ --instrumentsMenuShadow:
1477
1573
  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);
1478
- --fibery-color-commentBubbleBg: rgb(255, 253, 250);
1479
- --fibery-color-commentsPanelShadow:
1574
+ --commentBubbleBg: rgb(255, 253, 250);
1575
+ --commentsPanelShadow:
1480
1576
  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);
1481
- --fibery-color-searchFiltersBg: rgb(255, 251, 244);
1482
- --fibery-color-selectedColorBorder: rgba(232, 226, 219, 0.25);
1483
- --fibery-color-colorBgSegmentedControlDefault: rgb(250, 244, 236);
1484
- --fibery-color-colorBgSegmentedControlActive: rgb(255, 251, 244);
1485
- --fibery-color-colorBgSegmentedControlHover: rgb(237, 231, 224);
1486
- --fibery-color-colorBorderSegmentedControlDefault: rgb(232, 226, 219);
1487
- --fibery-color-colorBgBannerNeutral: rgb(250, 244, 236);
1488
- --fibery-color-colorBgBannerPrimary: rgb(238, 247, 249);
1489
- --fibery-color-colorBgBannerWarning: rgb(255, 250, 207);
1490
- --fibery-color-colorBgBannerError: rgb(255, 241, 240);
1491
- --fibery-color-colorBgBannerSuccess: rgb(239, 247, 245);
1492
- --fibery-color-colorIconBannerNeutral: rgb(27, 22, 17);
1493
- --fibery-color-colorIconBannerAccent: rgb(0, 111, 139);
1494
- --fibery-color-colorIconBannerWarning: rgb(130, 113, 0);
1495
- --fibery-color-colorIconBannerError: rgb(175, 36, 54);
1496
- --fibery-color-colorIconBannerSuccess: rgb(0, 116, 101);
1497
- --fibery-color-colorTextBannerNeutral: rgb(27, 22, 17);
1498
- --fibery-color-colorTextBannerAccent: rgb(0, 111, 139);
1499
- --fibery-color-colorTextBannerWarning: rgb(130, 113, 0);
1500
- --fibery-color-colorTextBannerError: rgb(175, 36, 54);
1501
- --fibery-color-colorTextBannerSuccess: rgb(0, 116, 101);
1502
- --fibery-color-colorBgChargebeeInfoBox: rgb(250, 244, 236);
1503
- --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 150);
1504
- --fibery-color-colorBgErrorMessage: rgb(237, 150, 150);
1505
- --fibery-color-colorBorderLogoGrid: rgb(243, 236, 229);
1506
- --fibery-color-colorBorderLogoGridSubtle: rgba(243, 236, 229, 0.2);
1507
- --fibery-color-colorBorderLogoGridMedium: rgba(243, 236, 229, 0.4);
1508
- --fibery-color-colorStrokeLogoDashed: rgb(232, 226, 219);
1509
- --fibery-color-colorBgLogoCardTransparent: rgb(255, 253, 250);
1510
- --fibery-color-colorBgLogoCardDark: rgb(204, 198, 191);
1511
- --fibery-color-colorBgLogoCardMedium: rgb(243, 236, 229);
1512
- --fibery-color-colorBgSkeletonFrom: rgba(255, 253, 250, 0.05);
1513
- --fibery-color-colorBgSkeletonTo: rgba(255, 253, 250, 0.1);
1514
- --fibery-color-colorShadowInsetEdge: rgba(255, 253, 250, 0.05);
1515
- --fibery-color-colorShadowBorder: rgba(255, 253, 250, 0.1);
1516
- --fibery-color-colorShadowElevation: rgba(31, 26, 24, 0.1);
1517
- --fibery-color-colorShadowOutline: rgba(31, 26, 24, 0.2);
1518
- --fibery-color-colorPlaceholder: rgba(255, 253, 250, 0.4);
1519
- --fibery-color-colorPlaceholderSubtle: rgba(255, 253, 250, 0.25);
1520
- --fibery-color-colorBgSubtleLight: rgba(255, 253, 250, 0.05);
1521
- --fibery-color-colorStrokeSurface: rgb(255, 253, 250);
1522
- --fibery-color-colorTextMilestone: rgba(31, 26, 24, 0.5);
1523
- --fibery-color-colorSpinnerIcon: rgba(31, 26, 24, 0.9);
1524
- --fibery-color-colorSpinnerBg: rgba(31, 26, 24, 0.1);
1525
- --fibery-color-colorBgLaneSubtle: rgba(31, 26, 24, 0.05);
1526
- --fibery-color-opacity15: 0.15;
1527
- --fibery-color-opacity20: 0.2;
1528
- --fibery-color-opacity25: 0.25;
1529
- --fibery-color-opacity30: 0.3;
1530
- --fibery-color-opacity40: 0.4;
1531
- --fibery-color-opacity50: 0.5;
1532
- --fibery-color-opacity60: 0.6;
1533
- --fibery-color-opacity65: 0.65;
1534
- --fibery-color-opacity70: 0.7;
1535
- --fibery-color-opacity75: 0.75;
1536
- --fibery-color-opacity80: 0.8;
1537
- --fibery-color-opacity85: 0.85;
1538
- --fibery-color-opacity90: 0.9;
1539
- --fibery-color-whiteA10: rgba(255, 253, 250, 0.1);
1540
- --fibery-color-whiteA40: rgba(255, 253, 250, 0.4);
1541
- --fibery-color-whiteA100: rgb(255, 253, 250);
1542
- --fibery-color-colorBgFileOverlay: rgba(31, 26, 24, 0.6);
1543
- --fibery-color-colorBgScrollFade: rgba(255, 253, 250, 0.15);
1544
- --fibery-color-colorStrokeSelectedOutline: rgba(31, 26, 24, 0.75);
1545
- --fibery-color-scrollbar: rgba(163, 157, 150, 0.5);
1577
+ --searchFiltersBg: rgb(255, 251, 244);
1578
+ --selectedColorBorder: rgba(232, 226, 219, 0.25);
1579
+ --colorBgSegmentedControlDefault: rgb(250, 244, 236);
1580
+ --colorBgSegmentedControlActive: rgb(255, 251, 244);
1581
+ --colorBgSegmentedControlHover: rgb(237, 231, 224);
1582
+ --colorBorderSegmentedControlDefault: rgb(232, 226, 219);
1583
+ --colorBgBannerNeutral: rgb(250, 244, 236);
1584
+ --colorBgBannerAccent: rgb(238, 247, 249);
1585
+ --colorBgBannerWarning: rgb(255, 250, 207);
1586
+ --colorBgBannerError: rgb(255, 241, 240);
1587
+ --colorBgBannerSuccess: rgb(239, 247, 245);
1588
+ --colorIconBannerNeutral: rgb(99, 94, 87);
1589
+ --colorIconBannerAccent: rgb(0, 111, 139);
1590
+ --colorIconBannerWarning: rgb(130, 113, 0);
1591
+ --colorIconBannerError: rgb(175, 36, 54);
1592
+ --colorIconBannerSuccess: rgb(0, 116, 101);
1593
+ --colorTextBannerNeutral: rgb(27, 22, 17);
1594
+ --colorTextBannerAccent: rgb(0, 111, 139);
1595
+ --colorTextBannerWarning: rgb(130, 113, 0);
1596
+ --colorTextBannerError: rgb(175, 36, 54);
1597
+ --colorTextBannerSuccess: rgb(0, 116, 101);
1598
+ --colorBgChargebeeInfoBox: rgb(250, 244, 236);
1599
+ --newCommentHorizontalRulerColor: rgb(237, 150, 150);
1600
+ --colorBgErrorMessage: rgb(237, 150, 150);
1601
+ --colorBorderLogoGrid: rgb(243, 236, 229);
1602
+ --colorBorderLogoGridSubtle: rgba(243, 236, 229, 0.2);
1603
+ --colorBorderLogoGridMedium: rgba(243, 236, 229, 0.4);
1604
+ --colorStrokeLogoDashed: rgb(232, 226, 219);
1605
+ --colorBgLogoCardTransparent: rgb(255, 253, 250);
1606
+ --colorBgLogoCardDark: rgb(204, 198, 191);
1607
+ --colorBgLogoCardMedium: rgb(243, 236, 229);
1608
+ --colorBgSkeletonFrom: rgba(255, 253, 250, 0.05);
1609
+ --colorBgSkeletonTo: rgba(255, 253, 250, 0.1);
1610
+ --colorShadowInsetEdge: rgba(255, 253, 250, 0.05);
1611
+ --colorShadowBorder: rgba(255, 253, 250, 0.1);
1612
+ --colorShadowElevation: rgba(31, 26, 24, 0.1);
1613
+ --colorShadowOutline: rgba(31, 26, 24, 0.2);
1614
+ --colorPlaceholder: rgba(255, 253, 250, 0.4);
1615
+ --colorPlaceholderSubtle: rgba(255, 253, 250, 0.25);
1616
+ --colorBgSubtleLight: rgba(255, 253, 250, 0.05);
1617
+ --colorStrokeSurface: rgb(255, 253, 250);
1618
+ --colorTextMilestone: rgba(31, 26, 24, 0.5);
1619
+ --colorSpinnerIcon: rgba(31, 26, 24, 0.9);
1620
+ --colorSpinnerBg: rgba(31, 26, 24, 0.1);
1621
+ --colorBgLaneSubtle: rgba(31, 26, 24, 0.05);
1622
+ --opacity15: 0.15;
1623
+ --opacity20: 0.2;
1624
+ --opacity25: 0.25;
1625
+ --opacity30: 0.3;
1626
+ --opacity40: 0.4;
1627
+ --opacity50: 0.5;
1628
+ --opacity60: 0.6;
1629
+ --opacity65: 0.65;
1630
+ --opacity70: 0.7;
1631
+ --opacity75: 0.75;
1632
+ --opacity80: 0.8;
1633
+ --opacity85: 0.85;
1634
+ --opacity90: 0.9;
1635
+ --whiteA10: rgba(255, 253, 250, 0.1);
1636
+ --whiteA40: rgba(255, 253, 250, 0.4);
1637
+ --whiteA100: rgb(255, 253, 250);
1638
+ --colorBgFileOverlay: rgba(31, 26, 24, 0.6);
1639
+ --colorBgScrollFade: rgba(255, 253, 250, 0.15);
1640
+ --colorStrokeSelectedOutline: rgba(31, 26, 24, 0.75);
1641
+ --scrollbar: rgba(163, 157, 150, 0.5);
1546
1642
  }
1547
1643
  :root.warm-palette.dark-theme {
1548
- --fibery-color-surfaceElevationS: 0 2px 4px 0 rgba(26, 22, 20, 0.05);
1549
- --fibery-color-surfaceElevationM: 0 4px 8px 0 rgba(255, 255, 254, 0.09);
1550
- --fibery-color-surfaceElevationL: 0 8px 12px 0 rgba(255, 255, 254, 0.09);
1551
- --fibery-color-shadow50: 0 0 0 1px rgba(224, 212, 206, 0.1);
1552
- --fibery-color-shadow100: 0 1px 4px 0 rgba(27, 22, 17, 0.1);
1553
- --fibery-color-shadow200: 0 2px 6px 0 rgba(27, 22, 17, 0.1);
1554
- --fibery-color-shadow300: 0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15);
1555
- --fibery-color-shadow400: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15);
1556
- --fibery-color-shadow500: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15);
1557
- --fibery-color-shadow600: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2);
1558
- --fibery-color-actionMenuShadow:
1559
- 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);
1560
- --fibery-color-shadowPopup:
1644
+ --surfaceElevationS: 0 2px 4px 0 rgba(26, 22, 20, 0.05);
1645
+ --surfaceElevationM: 0 4px 8px 0 rgba(255, 255, 254, 0.09);
1646
+ --surfaceElevationL: 0 8px 12px 0 rgba(255, 255, 254, 0.09);
1647
+ --shadow50: 0 0 0 1px rgba(224, 212, 206, 0.1);
1648
+ --shadow100: 0 1px 4px 0 rgba(27, 22, 17, 0.1);
1649
+ --shadow200: 0 2px 6px 0 rgba(27, 22, 17, 0.1);
1650
+ --shadow300: 0 3px 6px -3px rgba(27, 22, 17, 0.1), 0 8px 20px -4px rgba(27, 22, 17, 0.15);
1651
+ --shadow400: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 16px 40px 0 rgba(27, 22, 17, 0.15);
1652
+ --shadow500: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 20px 50px 0 rgba(27, 22, 17, 0.15);
1653
+ --shadow600: 0 0 1px 0 rgba(27, 22, 17, 0.2), 0 26px 80px 0 rgba(27, 22, 17, 0.2);
1654
+ --actionMenuShadow:
1561
1655
  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);
1562
- --fibery-color-shadowSidebar: -3px 0 10px 0 rgba(26, 22, 20, 0.8);
1563
- --fibery-color-highlightBgYellow: rgb(78, 64, 26);
1564
- --fibery-color-highlightFgYellow: rgb(215, 184, 106);
1565
- --fibery-color-highlightFgOnBgYellow: rgb(232, 200, 119);
1566
- --fibery-color-highlightBgGreen: rgb(53, 71, 39);
1567
- --fibery-color-highlightFgGreen: rgb(160, 199, 130);
1568
- --fibery-color-highlightFgOnBgGreen: rgb(175, 216, 146);
1569
- --fibery-color-highlightBgAquamarine: rgb(41, 80, 60);
1570
- --fibery-color-highlightFgAquamarine: rgb(124, 205, 160);
1571
- --fibery-color-highlightFgOnBgAquamarine: rgb(140, 225, 180);
1572
- --fibery-color-highlightBgAqua: rgb(18, 73, 64);
1573
- --fibery-color-highlightFgAqua: rgb(98, 205, 183);
1574
- --fibery-color-highlightFgOnBgAqua: rgb(112, 222, 200);
1575
- --fibery-color-highlightBgBlue: rgb(47, 66, 94);
1576
- --fibery-color-highlightFgBlue: rgb(152, 189, 243);
1577
- --fibery-color-highlightFgOnBgBlue: rgb(175, 206, 248);
1578
- --fibery-color-highlightBgPurple: rgb(77, 58, 89);
1579
- --fibery-color-highlightFgPurple: rgb(211, 172, 239);
1580
- --fibery-color-highlightFgOnBgPurple: rgb(224, 190, 250);
1581
- --fibery-color-highlightBgPink: rgb(88, 55, 75);
1582
- --fibery-color-highlightFgPink: rgb(237, 167, 207);
1583
- --fibery-color-highlightFgOnBgPink: rgb(249, 184, 221);
1584
- --fibery-color-highlightBgRed: rgb(93, 55, 53);
1585
- --fibery-color-highlightFgRed: rgb(240, 170, 164);
1586
- --fibery-color-highlightFgOnBgRed: rgb(246, 190, 185);
1587
- --fibery-color-highlightBgGrey: rgb(70, 64, 64);
1588
- --fibery-color-highlightFgGrey: rgb(193, 186, 186);
1589
- --fibery-color-highlightFgOnBgGrey: rgb(208, 202, 202);
1590
- --fibery-color-colorPickerCssFilter: none;
1591
- --fibery-color-mode: dark;
1592
- --fibery-color-colorAccentBgSubtle: rgba(0, 138, 169, 0.1);
1593
- --fibery-color-colorAccentBgMild: rgba(0, 138, 169, 0.15);
1594
- --fibery-color-colorAccentBgMedium: rgba(0, 138, 169, 0.2);
1595
- --fibery-color-colorAccentBgStrong: rgba(0, 138, 169, 0.3);
1596
- --fibery-color-colorAccentBgBold: rgba(0, 138, 169, 0.35);
1597
- --fibery-color-colorAccentBgVivid: rgba(0, 138, 169, 0.6);
1598
- --fibery-color-colorAccentStroke: rgba(0, 138, 169, 0.25);
1599
- --fibery-color-colorAccentStrokeHover: rgba(0, 138, 169, 0.4);
1600
- --fibery-color-colorAccentStrokeFocus: rgba(0, 138, 169, 0.5);
1601
- --fibery-color-colorAccentSolid: rgba(0, 138, 169, 0.8);
1602
- --fibery-color-colorAccent: rgb(0, 136, 170);
1603
- --fibery-color-darkenPrimary: rgb(46, 107, 126);
1604
- --fibery-color-whiteColor: rgb(255, 253, 250);
1605
- --fibery-color-blackColor: #1f1a18;
1606
- --fibery-color-mainBg: rgb(39, 35, 33);
1607
- --fibery-color-panelBg: rgb(26, 22, 20);
1608
- --fibery-color-panelBorder: 0 0 0 1px rgba(86, 80, 78, 0.2);
1609
- --fibery-color-panelContentBg: rgb(26, 22, 20);
1610
- --fibery-color-dbSettingsSidebarBg: rgb(32, 27, 25);
1611
- --fibery-color-dbSettingsSidebarItemHover: rgb(45, 40, 38);
1612
- --fibery-color-dbSettingsSidebarIconBg: rgb(39, 35, 33);
1613
- --fibery-color-dbSettingsSidebarIconBorder: 0 0 0 1px rgba(117, 111, 109, 0.2);
1614
- --fibery-color-dbSettingsCardBg: rgb(32, 27, 25);
1615
- --fibery-color-dbSettingsCardBorder: 0 0 0 1px rgba(55, 50, 48, 0.6);
1616
- --fibery-color-colorBgRelationContainer: rgb(32, 27, 25);
1617
- --fibery-color-colorAI: #8056a3;
1618
- --fibery-color-colorBgAI: rgba(128, 86, 163, 0.1);
1619
- --fibery-color-colorBgAIFloatingLauncher: rgb(45, 40, 38);
1620
- --fibery-color-colorBgAIFloatingPanelContent: rgb(39, 35, 33);
1621
- --fibery-color-colorBgAISidebarContent: rgb(26, 22, 20);
1622
- --fibery-color-colorBgFloatingPanel: rgb(45, 40, 38);
1623
- --fibery-color-shadowFloatingPanel: 0 0 0 1px rgb(55, 50, 48), 0 3px 12px 0 rgba(26, 22, 20, 0.5);
1624
- --fibery-color-pageContentBg: rgb(32, 27, 25);
1625
- --fibery-color-colorBgPopup: rgb(39, 35, 33);
1626
- --fibery-color-menuBg: rgb(39, 35, 33);
1627
- --fibery-color-menuTextColor: rgb(224, 212, 206);
1628
- --fibery-color-menuItemHoverColor: rgb(55, 50, 48);
1629
- --fibery-color-menuSelectedTextColor: rgb(253, 246, 239);
1630
- --fibery-color-menuIconColor: rgba(224, 212, 206, 0.7);
1631
- --fibery-color-textColor: rgb(224, 212, 206);
1632
- --fibery-color-textSelectionColor: rgba(0, 136, 170, 0.4);
1633
- --fibery-color-accentTextColor: rgb(132, 126, 124);
1634
- --fibery-color-disabledTextColor: rgb(117, 111, 109);
1635
- --fibery-color-inversedTextColor: rgb(55, 50, 48);
1636
- --fibery-color-colorTextSecondary: rgba(224, 212, 206, 0.65);
1637
- --fibery-color-linkColor: #a6b7e3;
1638
- --fibery-color-linkBorder: 0.5px solid rgba(166, 183, 227, 0.4);
1639
- --fibery-color-linkHoverColor: #a6b7e3;
1640
- --fibery-color-linkBorderHover: 0.5px solid rgba(166, 183, 227, 0.75);
1641
- --fibery-color-codeColor: rgb(237, 150, 150);
1642
- --fibery-color-codeBgColor: rgb(45, 40, 38);
1643
- --fibery-color-codeBlockBgColor: rgb(45, 40, 38);
1644
- --fibery-color-addedDiffTextColor: rgb(128, 192, 180);
1645
- --fibery-color-removedDiffTextColor: rgb(244, 146, 147);
1646
- --fibery-color-entityNodeColor: rgb(204, 198, 191);
1647
- --fibery-color-entityNodeBorder: 0.5px solid rgba(204, 198, 191, 0.4);
1648
- --fibery-color-entityNodeHoverColor: rgb(225, 218, 211);
1649
- --fibery-color-entityNodeBorderHover: 0.5px solid rgba(225, 218, 211, 0.8);
1650
- --fibery-color-entityNodeBgColor: rgb(39, 35, 33);
1651
- --fibery-color-shortcutTextColor: rgb(166, 159, 157);
1652
- --fibery-color-shortcutBorder: 1px solid rgba(132, 126, 124, 0.2);
1653
- --fibery-color-shortcutBorderColor: rgba(132, 126, 124, 0.2);
1654
- --fibery-color-inputBgColor: rgb(26, 22, 20);
1655
- --fibery-color-inputDisabledBgColor: rgba(55, 50, 48, 0.3);
1656
- --fibery-color-inputDisabledBorderColor: 0 0 0 1px rgba(86, 80, 78, 0.3);
1657
- --fibery-color-inputCopyBgColor: rgb(45, 40, 38);
1658
- --fibery-color-inputBorderColor: 0 0 0 1px rgba(86, 80, 78, 0.4);
1659
- --fibery-color-inputBorderHoverColor: 0 0 0 1px rgb(65, 60, 58);
1660
- --fibery-color-inputBorderFocusColor: 0 0 0 1px rgb(117, 111, 109);
1661
- --fibery-color-inputBorderBlendMode: lighten;
1662
- --fibery-color-inputPlaceholderTextColor: rgb(117, 111, 109);
1663
- --fibery-color-inputErrorBorderColor: 0 0 0 1px rgb(244, 179, 178);
1664
- --fibery-color-inputErrorBorderHoverColor: 0 0 0 1px rgba(244, 179, 178, 0.4);
1665
- --fibery-color-inputErrorBorderFocusColor: 0 0 0 1px rgba(244, 179, 178, 0.25);
1666
- --fibery-color-inputErrorBorderFocusShadow: 0 0 0 3px rgba(244, 179, 178, 0.25);
1667
- --fibery-color-inputBorderWarningColor: 0 0 0 1px rgb(110, 95, 0);
1668
- --fibery-color-buttonPrimaryColor: rgb(0, 136, 170);
1669
- --fibery-color-buttonColor: rgb(132, 126, 124);
1670
- --fibery-color-buttonPrimaryTextColor: rgb(232, 226, 219);
1671
- --fibery-color-checkboxColor: rgba(224, 212, 206, 0.7);
1672
- --fibery-color-colorBorderBlockQuote: rgb(166, 159, 157);
1673
- --fibery-color-colorBgActionsMenu: rgb(39, 35, 33);
1674
- --fibery-color-colorBgActionsMenuItemHover: rgb(50, 45, 43);
1675
- --fibery-color-colorBgActionsMenuItemSelected: rgba(1, 51, 63, 0.8);
1676
- --fibery-color-colorBgActionsMenuItemSelectedHover: rgba(7, 68, 83, 0.8);
1677
- --fibery-color-colorBgActionsMenuItemDangerHover: rgba(225, 78, 91, 0.1);
1678
- --fibery-color-colorBgActionsMenuItemDangerActive: rgba(225, 78, 91, 0.8);
1679
- --fibery-color-actionMenuBg: rgb(39, 35, 33);
1680
- --fibery-color-actionMenuInnerBg: rgb(45, 40, 38);
1681
- --fibery-color-actionMenuHover: rgb(50, 45, 43);
1682
- --fibery-color-actionMenuInnerHover: rgba(55, 50, 48, 0.5);
1683
- --fibery-color-actionMenuButtonColor: rgb(32, 27, 25);
1684
- --fibery-color-actionMenuButtonHoverColor: rgb(39, 35, 33);
1685
- --fibery-color-actionMenuButtonShadow: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1686
- --fibery-color-actionMenuSeparatorColor: rgba(255, 253, 250, 0.15);
1687
- --fibery-color-separatorColor: rgba(255, 253, 250, 0.1);
1688
- --fibery-color-separatorColorDimmed: rgba(255, 253, 250, 0.05);
1689
- --fibery-color-separatorBreadcrumbsColor: rgb(86, 80, 78);
1690
- --fibery-color-borderSeparatorDimmed: 0.5px solid rgba(255, 253, 250, 0.05);
1691
- --fibery-color-borderSeparator: 0.5px solid rgba(255, 253, 250, 0.1);
1692
- --fibery-color-borderSeparatorMedium: 0.5px solid rgba(255, 253, 250, 0.15);
1693
- --fibery-color-borderSeparatorStrong: 0.5px solid rgba(255, 253, 250, 0.25);
1694
- --fibery-color-borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
1695
- --fibery-color-borderSolidSeparator: 1px solid rgba(255, 253, 250, 0.1);
1696
- --fibery-color-borderSolidSeparatorDimmed: 1px solid rgba(255, 253, 250, 0.05);
1697
- --fibery-color-borderSolidFilterGroup: 1px solid rgba(255, 255, 254, 0.03);
1698
- --fibery-color-borderSolidGrid: 1px solid rgb(55, 50, 48);
1699
- --fibery-color-borderSolidOutlineNeutral: 1px solid rgb(65, 60, 58);
1700
- --fibery-color-borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
1701
- --fibery-color-borderSolidCommentBubble: 1px solid rgb(55, 50, 48);
1702
- --fibery-color-borderBlockQuote: 3px solid rgb(166, 159, 157);
1703
- --fibery-color-shadowCardDefault: 0 0 0 1px rgba(86, 80, 78, 0.4), 0 1px 4px 0 rgba(27, 22, 17, 0.1);
1704
- --fibery-color-shadowCardHover: 0 0 0 1px rgba(86, 80, 78, 0.4), 0 2px 6px 0 rgba(27, 22, 17, 0.1);
1705
- --fibery-color-shadowCardInset: inset 0 0 0 1px rgba(86, 80, 78, 0.4);
1706
- --fibery-color-iconColor: rgba(224, 212, 206, 0.7);
1707
- --fibery-color-appIconColor: rgba(253, 246, 239, 0.7);
1708
- --fibery-color-appIconBgColor: rgba(253, 246, 239, 0.5);
1709
- --fibery-color-mentionBgColor: rgba(65, 60, 58, 0.4);
1710
- --fibery-color-colorBgSelectMenu: rgb(39, 35, 33);
1711
- --fibery-color-shadowSelectMenu:
1656
+ --shadowPopup: 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);
1657
+ --shadowSidebar: -3px 0 10px 0 rgba(26, 22, 20, 0.8);
1658
+ --highlightBgYellow: rgb(78, 64, 26);
1659
+ --highlightFgYellow: rgb(215, 184, 106);
1660
+ --highlightFgOnBgYellow: rgb(232, 200, 119);
1661
+ --highlightBgGreen: rgb(53, 71, 39);
1662
+ --highlightFgGreen: rgb(160, 199, 130);
1663
+ --highlightFgOnBgGreen: rgb(175, 216, 146);
1664
+ --highlightBgAquamarine: rgb(41, 80, 60);
1665
+ --highlightFgAquamarine: rgb(124, 205, 160);
1666
+ --highlightFgOnBgAquamarine: rgb(140, 225, 180);
1667
+ --highlightBgAqua: rgb(18, 73, 64);
1668
+ --highlightFgAqua: rgb(98, 205, 183);
1669
+ --highlightFgOnBgAqua: rgb(112, 222, 200);
1670
+ --highlightBgBlue: rgb(47, 66, 94);
1671
+ --highlightFgBlue: rgb(152, 189, 243);
1672
+ --highlightFgOnBgBlue: rgb(175, 206, 248);
1673
+ --highlightBgPurple: rgb(77, 58, 89);
1674
+ --highlightFgPurple: rgb(211, 172, 239);
1675
+ --highlightFgOnBgPurple: rgb(224, 190, 250);
1676
+ --highlightBgPink: rgb(88, 55, 75);
1677
+ --highlightFgPink: rgb(237, 167, 207);
1678
+ --highlightFgOnBgPink: rgb(249, 184, 221);
1679
+ --highlightBgRed: rgb(93, 55, 53);
1680
+ --highlightFgRed: rgb(240, 170, 164);
1681
+ --highlightFgOnBgRed: rgb(246, 190, 185);
1682
+ --highlightBgGrey: rgb(70, 64, 64);
1683
+ --highlightFgGrey: rgb(193, 186, 186);
1684
+ --highlightFgOnBgGrey: rgb(208, 202, 202);
1685
+ --colorPickerCssFilter: none;
1686
+ --colorAccentBgSubtle: rgba(0, 138, 169, 0.1);
1687
+ --colorAccentBgMild: rgba(0, 138, 169, 0.15);
1688
+ --colorAccentBgMedium: rgba(0, 138, 169, 0.2);
1689
+ --colorAccentBgStrong: rgba(0, 138, 169, 0.3);
1690
+ --colorAccentBgBold: rgba(0, 138, 169, 0.35);
1691
+ --colorAccentBgVivid: rgba(0, 138, 169, 0.6);
1692
+ --colorAccentStroke: rgba(0, 138, 169, 0.25);
1693
+ --colorAccentStrokeHover: rgba(0, 138, 169, 0.4);
1694
+ --colorAccentStrokeFocus: rgba(0, 138, 169, 0.5);
1695
+ --colorAccentSolid: rgba(0, 138, 169, 0.8);
1696
+ --colorAccent: rgb(0, 136, 170);
1697
+ --darkenPrimary: rgb(46, 107, 126);
1698
+ --whiteColor: rgb(255, 253, 250);
1699
+ --blackColor: #1f1a18;
1700
+ --mainBg: rgb(39, 35, 33);
1701
+ --panelBg: rgb(26, 22, 20);
1702
+ --panelBorder: 0 0 0 1px rgba(86, 80, 78, 0.2);
1703
+ --panelContentBg: rgb(26, 22, 20);
1704
+ --dbSettingsSidebarBg: rgb(32, 27, 25);
1705
+ --dbSettingsSidebarItemHover: rgb(45, 40, 38);
1706
+ --dbSettingsSidebarIconBg: rgb(39, 35, 33);
1707
+ --dbSettingsSidebarIconBorder: 0 0 0 1px rgba(117, 111, 109, 0.2);
1708
+ --dbSettingsCardBg: rgb(32, 27, 25);
1709
+ --dbSettingsCardBorder: 0 0 0 1px rgba(55, 50, 48, 0.6);
1710
+ --colorBgRelationContainer: rgb(32, 27, 25);
1711
+ --colorAI: #8056a3;
1712
+ --colorBgAI: rgba(128, 86, 163, 0.1);
1713
+ --colorBgAIFloatingLauncher: rgb(45, 40, 38);
1714
+ --colorBgAIFloatingPanelContent: rgb(39, 35, 33);
1715
+ --colorBgAISidebarContent: rgb(26, 22, 20);
1716
+ --colorBgFloatingPanel: rgb(45, 40, 38);
1717
+ --shadowFloatingPanel: 0 0 0 1px rgb(55, 50, 48), 0 3px 12px 0 rgba(26, 22, 20, 0.5);
1718
+ --pageContentBg: rgb(32, 27, 25);
1719
+ --colorBgPopup: rgb(39, 35, 33);
1720
+ --menuBg: rgb(39, 35, 33);
1721
+ --menuTextColor: rgb(224, 212, 206);
1722
+ --menuItemHoverColor: rgb(55, 50, 48);
1723
+ --menuSelectedTextColor: rgb(253, 246, 239);
1724
+ --menuIconColor: rgba(224, 212, 206, 0.7);
1725
+ --textColor: rgb(224, 212, 206);
1726
+ --textSelectionColor: rgba(0, 136, 170, 0.4);
1727
+ --accentTextColor: rgb(132, 126, 124);
1728
+ --disabledTextColor: rgb(117, 111, 109);
1729
+ --inversedTextColor: rgb(55, 50, 48);
1730
+ --colorTextSecondary: rgba(224, 212, 206, 0.65);
1731
+ --linkColor: #a6b7e3;
1732
+ --linkBorder: 0.5px solid rgba(166, 183, 227, 0.4);
1733
+ --linkHoverColor: #a6b7e3;
1734
+ --linkBorderHover: 0.5px solid rgba(166, 183, 227, 0.75);
1735
+ --codeColor: rgb(237, 150, 150);
1736
+ --codeBgColor: rgb(45, 40, 38);
1737
+ --codeBlockBgColor: rgb(45, 40, 38);
1738
+ --addedDiffTextColor: rgb(128, 192, 180);
1739
+ --removedDiffTextColor: rgb(244, 146, 147);
1740
+ --entityNodeColor: rgb(204, 198, 191);
1741
+ --entityNodeBorder: 0.5px solid rgba(204, 198, 191, 0.4);
1742
+ --entityNodeHoverColor: rgb(225, 218, 211);
1743
+ --entityNodeBorderHover: 0.5px solid rgba(225, 218, 211, 0.8);
1744
+ --entityNodeBgColor: rgb(39, 35, 33);
1745
+ --shortcutTextColor: rgb(166, 159, 157);
1746
+ --shortcutBorder: 1px solid rgba(132, 126, 124, 0.2);
1747
+ --shortcutBorderColor: rgba(132, 126, 124, 0.2);
1748
+ --inputBgColor: rgb(26, 22, 20);
1749
+ --inputDisabledBgColor: rgba(55, 50, 48, 0.3);
1750
+ --inputDisabledBorderColor: 0 0 0 1px rgba(86, 80, 78, 0.3);
1751
+ --inputCopyBgColor: rgb(45, 40, 38);
1752
+ --inputBorderColor: 0 0 0 1px rgba(86, 80, 78, 0.4);
1753
+ --inputBorderHoverColor: 0 0 0 1px rgb(65, 60, 58);
1754
+ --inputBorderFocusColor: 0 0 0 1px rgb(117, 111, 109);
1755
+ --inputBorderBlendMode: lighten;
1756
+ --inputPlaceholderTextColor: rgb(117, 111, 109);
1757
+ --inputErrorBorderColor: 0 0 0 1px rgb(244, 179, 178);
1758
+ --inputErrorBorderHoverColor: 0 0 0 1px rgba(244, 179, 178, 0.4);
1759
+ --inputErrorBorderFocusColor: 0 0 0 1px rgba(244, 179, 178, 0.25);
1760
+ --inputErrorBorderFocusShadow: 0 0 0 3px rgba(244, 179, 178, 0.25);
1761
+ --inputBorderWarningColor: 0 0 0 1px rgb(110, 95, 0);
1762
+ --buttonPrimaryColor: rgb(0, 136, 170);
1763
+ --buttonColor: rgb(132, 126, 124);
1764
+ --buttonPrimaryTextColor: rgb(232, 226, 219);
1765
+ --checkboxColor: rgba(224, 212, 206, 0.7);
1766
+ --colorBorderBlockQuote: rgb(166, 159, 157);
1767
+ --colorBgActionsMenu: rgb(39, 35, 33);
1768
+ --colorBgActionsMenuItemHover: rgb(50, 45, 43);
1769
+ --colorBgActionsMenuItemSelected: rgba(1, 51, 63, 0.8);
1770
+ --colorBgActionsMenuItemSelectedHover: rgba(7, 68, 83, 0.8);
1771
+ --colorBgActionsMenuItemDangerHover: rgba(225, 78, 91, 0.1);
1772
+ --colorBgActionsMenuItemDangerActive: rgba(225, 78, 91, 0.8);
1773
+ --actionMenuBg: rgb(39, 35, 33);
1774
+ --actionMenuInnerBg: rgb(45, 40, 38);
1775
+ --actionMenuHover: rgb(50, 45, 43);
1776
+ --actionMenuInnerHover: rgba(55, 50, 48, 0.5);
1777
+ --actionMenuButtonColor: rgb(32, 27, 25);
1778
+ --actionMenuButtonHoverColor: rgb(39, 35, 33);
1779
+ --actionMenuButtonShadow: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1780
+ --actionMenuSeparatorColor: rgba(255, 253, 250, 0.15);
1781
+ --separatorColor: rgba(255, 253, 250, 0.1);
1782
+ --separatorColorDimmed: rgba(255, 253, 250, 0.05);
1783
+ --separatorBreadcrumbsColor: rgb(86, 80, 78);
1784
+ --borderSeparatorDimmed: 0.5px solid rgba(255, 253, 250, 0.05);
1785
+ --borderSeparator: 0.5px solid rgba(255, 253, 250, 0.1);
1786
+ --borderSeparatorMedium: 0.5px solid rgba(255, 253, 250, 0.15);
1787
+ --borderSeparatorStrong: 0.5px solid rgba(255, 253, 250, 0.25);
1788
+ --borderMedia: 0.5px solid rgba(0, 0, 0, 0.14);
1789
+ --borderSolidSeparator: 1px solid rgba(255, 253, 250, 0.1);
1790
+ --borderSolidSeparatorDimmed: 1px solid rgba(255, 253, 250, 0.05);
1791
+ --borderSolidFilterGroup: 1px solid rgba(255, 255, 254, 0.03);
1792
+ --borderSolidGrid: 1px solid rgb(55, 50, 48);
1793
+ --borderSolidOutlineNeutral: 1px solid rgb(65, 60, 58);
1794
+ --borderSolidMedia: 1px solid rgba(0, 0, 0, 0.14);
1795
+ --borderSolidCommentBubble: 1px solid rgb(55, 50, 48);
1796
+ --borderBlockQuote: 3px solid rgb(166, 159, 157);
1797
+ --shadowCardDefault: 0 0 0 1px rgba(86, 80, 78, 0.4), 0 1px 4px 0 rgba(27, 22, 17, 0.1);
1798
+ --shadowCardHover: 0 0 0 1px rgba(86, 80, 78, 0.4), 0 2px 6px 0 rgba(27, 22, 17, 0.1);
1799
+ --shadowCardInset: inset 0 0 0 1px rgba(86, 80, 78, 0.4);
1800
+ --iconColor: rgba(224, 212, 206, 0.7);
1801
+ --colorIconDestructive: rgb(244, 146, 147);
1802
+ --appIconColor: rgba(253, 246, 239, 0.7);
1803
+ --appIconBgColor: rgba(253, 246, 239, 0.5);
1804
+ --mentionBgColor: rgba(65, 60, 58, 0.4);
1805
+ --colorBgSelectMenu: rgb(39, 35, 33);
1806
+ --shadowSelectMenu:
1712
1807
  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);
1713
- --fibery-color-colorBgListItemGeneral: rgba(255, 255, 255, 0);
1714
- --fibery-color-colorBgListItemGeneralHover: rgb(45, 40, 38);
1715
- --fibery-color-colorBgListItemGeneralFocus: rgb(55, 50, 48);
1716
- --fibery-color-colorBgListItemGeneralSelected: rgb(4, 58, 72);
1717
- --fibery-color-colorBgListItemGeneralSelectedHover: rgb(7, 68, 83);
1718
- --fibery-color-colorBgListItemGeneralSelectedFocus: rgb(7, 68, 83);
1719
- --fibery-color-colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
1720
- --fibery-color-colorTextListItemGeneralDisabled: rgb(117, 111, 109);
1721
- --fibery-color-colorBgListItemGeneralSelectedDisabled: rgb(4, 58, 72);
1722
- --fibery-color-opacityListItemGeneralDisabled: 0.4;
1723
- --fibery-color-colorSearchSubtitle: rgb(117, 111, 109);
1724
- --fibery-color-colorBgSearchPanel: rgb(32, 27, 25);
1725
- --fibery-color-colorBgSearchRowHover: rgb(39, 35, 33);
1726
- --fibery-color-colorBgSearchRowCreateHover: rgb(1, 51, 63);
1727
- --fibery-color-opacitySearchItemDone: 0.4;
1728
- --fibery-color-colorBgEntityBoxDefault: rgb(39, 35, 33);
1729
- --fibery-color-shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(50, 45, 43);
1730
- --fibery-color-shadowEntityBoxDefault: 0 2px 4px 0 rgba(26, 22, 20, 0.05);
1731
- --fibery-color-colorBgEntityBoxDefaultHover: rgb(45, 40, 38);
1732
- --fibery-color-shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(26, 22, 20, 0.1);
1733
- --fibery-color-colorBgEntityBoxDefaultFocus: rgb(39, 35, 33);
1734
- --fibery-color-colorOverlayEntityBoxDefaultFocus: rgb(0, 136, 170);
1735
- --fibery-color-shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(0, 136, 170, 0.4);
1736
- --fibery-color-colorBgEntityBoxDefaultFocusHover: rgb(45, 40, 38);
1737
- --fibery-color-colorOverlayEntityBoxDefaultFocusHover: rgb(0, 136, 170);
1738
- --fibery-color-shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(0, 136, 170, 0.6);
1739
- --fibery-color-opacityEntityBoxDefaultDrag: 0.4;
1740
- --fibery-color-shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(26, 22, 20, 0.1);
1741
- --fibery-color-colorBgEntityBoxSelected: rgb(8, 44, 54);
1742
- --fibery-color-shadowStrokeEntityBoxSelected: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1743
- --fibery-color-colorBgEntityBoxSelectedHover: rgb(8, 44, 54);
1744
- --fibery-color-shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1745
- --fibery-color-colorBgEntityBoxSelectedDrag: rgb(8, 44, 54);
1746
- --fibery-color-shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1747
- --fibery-color-opacityEntityBoxDisabled: 0.65;
1748
- --fibery-color-opacityEntityBoxDisabledHover: 0.75;
1749
- --fibery-color-opacityEntityBoxDisabledFocus: 0.75;
1750
- --fibery-color-opacityEntityBoxDisabledDrag: 0.4;
1751
- --fibery-color-entityCardBgColor: rgb(50, 45, 43);
1752
- --fibery-color-entityCardSelectedColor: rgba(55, 50, 48, 0.5);
1753
- --fibery-color-entityCardHoverColor: rgba(55, 50, 48, 0.5);
1754
- --fibery-color-entityCardDoneColor: rgba(50, 45, 43, 0.3);
1755
- --fibery-color-entityCardShadow: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1756
- --fibery-color-entityCardShadowHover: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1757
- --fibery-color-colorBgSegmentedControl: rgba(32, 27, 25, 0.8);
1758
- --fibery-color-colorBgMenuHeaderAvatar: rgb(32, 27, 25);
1759
- --fibery-color-shadowMenuHeaderAvatar: 0 0 0 1px rgba(117, 111, 109, 0.2);
1760
- --fibery-color-opacityMenuItemDragged: 0.4;
1761
- --fibery-color-colorBgMenuItemSelectedDragged: rgb(7, 68, 83);
1762
- --fibery-color-colorTextMenuItem: rgba(224, 212, 206, 0.9);
1763
- --fibery-color-colorBgMenuItem: rgba(255, 255, 255, 0);
1764
- --fibery-color-colorBgMenuItemHover: rgb(50, 45, 43);
1765
- --fibery-color-colorBgMenuItemFocus: rgb(55, 50, 48);
1766
- --fibery-color-colorBgMenuItemSelected: rgb(8, 44, 54);
1767
- --fibery-color-colorBgMenuItemSelectedHover: rgb(4, 58, 72);
1768
- --fibery-color-colorBgPinnedFieldsLabel: rgb(166, 159, 157);
1769
- --fibery-color-colorBgObjectEditorSeparator: rgb(224, 212, 206);
1770
- --fibery-color-colorBgMenuItemSelectedFocused: rgb(4, 58, 72);
1771
- --fibery-color-colorBgFieldEditorContainer: rgb(39, 35, 33);
1772
- --fibery-color-colorBgFieldEditorLinkEqualSign: rgb(32, 27, 25);
1773
- --fibery-color-allowedDropColor: rgb(45, 40, 38);
1774
- --fibery-color-relationViewBgColor: rgb(39, 35, 33);
1775
- --fibery-color-mySpaceIconColor: rgb(129, 133, 137);
1776
- --fibery-color-mySpaceIconBg: rgba(112, 132, 153, 0.2);
1777
- --fibery-color-privateIconColor: rgb(116, 168, 101);
1778
- --fibery-color-privateIconBg: rgba(116, 168, 101, 0.2);
1779
- --fibery-color-favoritesIconColor: rgb(235, 169, 68);
1780
- --fibery-color-favoritesIconBg: rgba(235, 169, 68, 0.2);
1781
- --fibery-color-swatchDefault: #1fbed3;
1782
- --fibery-color-unitBg: rgb(55, 50, 48);
1783
- --fibery-color-unitBgHover: rgb(65, 60, 58);
1784
- --fibery-color-colorBgBadgeNeutral: rgba(45, 40, 38, 0.8);
1785
- --fibery-color-colorBgBadgeAccent: rgba(1, 51, 63, 0.8);
1786
- --fibery-color-colorBgBadgeSuccess: rgb(8, 61, 53);
1787
- --fibery-color-colorBgBadgeWarning: rgb(58, 50, 0);
1788
- --fibery-color-colorBgBadgeError: rgb(91, 26, 32);
1789
- --fibery-color-colorTextBadgeNeutral: rgb(166, 159, 157);
1790
- --fibery-color-colorTextBadgeAccent: rgb(124, 189, 210);
1791
- --fibery-color-colorTextBadgeSuccess: rgb(128, 192, 180);
1792
- --fibery-color-colorTextBadgeWarning: rgb(227, 198, 0);
1793
- --fibery-color-colorTextBadgeError: rgb(244, 146, 147);
1794
- --fibery-color-badgeBgColor: rgba(121, 118, 113, 0.2);
1795
- --fibery-color-tooltipBgColor: rgb(55, 50, 48);
1796
- --fibery-color-todayMarkerColor: rgb(104, 33, 39);
1797
- --fibery-color-viewBgOverlayColor: rgba(26, 22, 20, 0.6);
1798
- --fibery-color-floatEditorMenuBg: rgb(55, 50, 48);
1799
- --fibery-color-floatEditorActiveColor: rgb(124, 189, 210);
1800
- --fibery-color-commentColor: rgba(248, 216, 0, 0.4);
1801
- --fibery-color-cellBackgroundColor: rgb(32, 27, 25);
1802
- --fibery-color-cellBackgroundHoverColor: rgba(55, 50, 48, 0.3);
1803
- --fibery-color-cellBorderColor: rgba(117, 111, 109, 0.5);
1804
- --fibery-color-cellPinnedBorderColor: rgba(117, 111, 109, 0.7);
1805
- --fibery-color-tableRowWarningColor: rgba(248, 216, 0, 0.4);
1806
- --fibery-color-errorBgColor: rgba(213, 50, 71, 0.6);
1807
- --fibery-color-errorTextColor: rgb(244, 179, 178);
1808
- --fibery-color-errorButtonColor: rgb(225, 78, 91);
1809
- --fibery-color-warningBgColor: rgba(110, 95, 0, 0.6);
1810
- --fibery-color-warningButtonColor: rgb(227, 198, 0);
1811
- --fibery-color-infoBox: rgba(248, 216, 0, 0.2);
1812
- --fibery-color-appCardBgColor: rgb(32, 27, 25);
1813
- --fibery-color-appCardHoverColor: rgb(32, 27, 25);
1814
- --fibery-color-modalBg: rgba(32, 27, 25, 0.5);
1815
- --fibery-color-modalContentBg: rgb(39, 35, 33);
1816
- --fibery-color-progressIconBg: rgba(255, 255, 254, 0.18);
1817
- --fibery-color-progressIconFill: rgba(255, 255, 254, 0.59);
1818
- --fibery-color-formBg: rgb(32, 27, 25);
1819
- --fibery-color-formHeaderShadow: 0 0 6px 0 rgba(26, 22, 20, 0.4);
1820
- --fibery-color-formEditorFieldBg: rgb(45, 40, 38);
1821
- --fibery-color-filterGroup1Bg: rgb(55, 50, 48);
1822
- --fibery-color-filterGroup2Bg: rgb(65, 60, 58);
1823
- --fibery-color-filterGroupBorder: rgba(255, 255, 254, 0.03);
1824
- --fibery-color-colorBgNotificationHover: rgb(32, 27, 25);
1825
- --fibery-color-colorBgNotificationSelected: rgb(13, 32, 38);
1826
- --fibery-color-colorBgNotificationSelectedHover: rgb(8, 44, 54);
1827
- --fibery-color-disabledInversedTextColor: rgba(255, 253, 250, 0.25);
1828
- --fibery-color-success: rgb(0, 143, 125);
1829
- --fibery-color-danger: rgb(225, 78, 91);
1830
- --fibery-color-active: rgb(225, 78, 91);
1831
- --fibery-color-warning: rgb(110, 95, 0);
1832
- --fibery-color-cardBg: rgb(55, 50, 48);
1833
- --fibery-color-selectedImageBorder: rgba(255, 255, 254, 0.59);
1834
- --fibery-color-transparent: rgba(255, 255, 255, 0);
1835
- --fibery-color-progressBg: rgb(243, 236, 229);
1836
- --fibery-color-progressText: rgb(99, 94, 87);
1837
- --fibery-color-progressFillBg: rgb(99, 94, 87);
1838
- --fibery-color-progressFillText: rgb(255, 253, 250);
1839
- --fibery-color-progressBarFillNeutral: rgba(117, 111, 109, 0.2);
1840
- --fibery-color-progressBarFill: rgb(22, 152, 183);
1841
- --fibery-color-progressBarBg: rgba(22, 152, 183, 0.25);
1842
- --fibery-color-colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
1843
- --fibery-color-colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
1844
- --fibery-color-richTextTableBorder: rgba(255, 255, 254, 0.18);
1845
- --fibery-color-colorBgDropLine: rgb(0, 106, 135);
1846
- --fibery-color-viewBg: rgb(26, 22, 20);
1847
- --fibery-color-colorBgViewMetaItem: rgb(32, 27, 25);
1848
- --fibery-color-collectionViewBg: rgb(32, 27, 25);
1849
- --fibery-color-collectionViewBorder: 0 0 0 1px rgba(86, 80, 78, 0.3);
1850
- --fibery-color-viewSecondaryBg: rgb(32, 27, 25);
1851
- --fibery-color-viewHighlightBg: rgb(8, 44, 54);
1852
- --fibery-color-boardBg: rgb(26, 22, 20);
1853
- --fibery-color-boardBgWithOpacity80: rgba(26, 22, 20, 0.8);
1854
- --fibery-color-boardAxisBgHover: rgb(45, 40, 38);
1855
- --fibery-color-gridHeaderBgColor: rgb(39, 35, 33);
1856
- --fibery-color-gridHeaderHoverBgColor: rgb(45, 40, 38);
1857
- --fibery-color-gridHeaderTextColor: rgb(166, 159, 157);
1858
- --fibery-color-gridCellBgColor: rgb(32, 27, 25);
1859
- --fibery-color-gridCellBorderColor: rgb(55, 50, 48);
1860
- --fibery-color-gridDisabledCellBgColor: rgb(39, 35, 33);
1861
- --fibery-color-gridSelectedCellBgColor: rgb(8, 44, 54);
1862
- --fibery-color-gridHighlightedCellBgColor: rgb(4, 58, 72);
1863
- --fibery-color-gridSelectedCellBorderColor: rgb(0, 85, 107);
1864
- --fibery-color-gridSelectedPinnedCellBorderColor: rgb(0, 85, 107);
1865
- --fibery-color-gridDisabledSelectedCellBgColor: rgb(4, 58, 72);
1866
- --fibery-color-gridActiveCellBorderColor: rgb(0, 136, 170);
1867
- --fibery-color-timelineEntityHandleColor: rgb(0, 85, 107);
1868
- --fibery-color-timelineDependencyHoverBgColor: rgb(0, 106, 135);
1869
- --fibery-color-timelineDependencyOverlapBgColor: rgb(213, 50, 71);
1870
- --fibery-color-timelineDependencyOverlapHoverBgColor: rgb(244, 146, 147);
1871
- --fibery-color-timelineCellBgColor: rgb(26, 22, 20);
1872
- --fibery-color-timelineCellWeekendBgColor: rgb(32, 27, 25);
1873
- --fibery-color-timelineCellTodayBgColor: rgb(13, 32, 38);
1874
- --fibery-color-timelineCreateEntityPlaceholderBgColor: rgb(65, 60, 58);
1875
- --fibery-color-colorBgButtonSolidAccentDefault: rgb(0, 136, 170);
1876
- --fibery-color-colorBgButtonSolidAccentHover: rgb(22, 152, 183);
1877
- --fibery-color-colorBgButtonSolidNeutralDefault: rgb(224, 212, 206);
1878
- --fibery-color-colorBgButtonSolidNeutralHover: rgb(255, 253, 250);
1879
- --fibery-color-colorBgButtonSolidDestructiveDefault: rgb(213, 50, 71);
1880
- --fibery-color-colorBgButtonSolidDestructiveHover: rgb(225, 78, 91);
1881
- --fibery-color-colorTextButtonSolidAccent: rgb(255, 253, 250);
1882
- --fibery-color-colorTextButtonSolidAccentActive: rgba(255, 253, 250, 0.8);
1883
- --fibery-color-colorTextButtonSolidNeutral: rgb(32, 27, 25);
1884
- --fibery-color-colorTextButtonSolidNeutralActive: rgba(32, 27, 25, 0.8);
1885
- --fibery-color-colorTextButtonSolidDestructive: rgb(255, 253, 250);
1886
- --fibery-color-colorTextButtonSolidDestructiveActive: rgba(255, 253, 250, 0.8);
1887
- --fibery-color-colorIconButtonSolidAccent: rgb(255, 253, 250);
1888
- --fibery-color-colorIconButtonSolidNeutral: rgb(86, 80, 78);
1889
- --fibery-color-colorIconButtonSolidDestructive: rgb(255, 253, 250);
1890
- --fibery-color-colorBorderButtonOutlineAccentDefault: rgb(0, 106, 135);
1891
- --fibery-color-colorBorderButtonOutlineNeutralDefault: rgb(65, 60, 58);
1892
- --fibery-color-colorBorderButtonOutlineDestructiveDefault: rgb(136, 27, 42);
1893
- --fibery-color-colorBgButtonOutlineAccentDefault: rgb(26, 22, 20);
1894
- --fibery-color-colorBgButtonOutlineAccentHover: rgb(8, 44, 54);
1895
- --fibery-color-colorBgButtonOutlineNeutralDefault: rgb(26, 22, 20);
1896
- --fibery-color-colorBgButtonOutlineNeutralHover: rgb(45, 40, 38);
1897
- --fibery-color-colorBgButtonOutlineDestructiveDefault: rgb(26, 22, 20);
1898
- --fibery-color-colorBgButtonOutlineDestructiveHover: rgb(80, 21, 27);
1899
- --fibery-color-colorTextButtonOutlineAccent: rgb(124, 189, 210);
1900
- --fibery-color-colorTextButtonOutlineAccentActive: rgba(124, 189, 210, 0.8);
1901
- --fibery-color-colorTextButtonOutlineNeutral: rgb(166, 159, 157);
1902
- --fibery-color-colorTextButtonOutlineNeutralActive: rgba(224, 212, 206, 0.8);
1903
- --fibery-color-colorTextButtonOutlineDestructive: rgb(244, 146, 147);
1904
- --fibery-color-colorTextButtonOutlineDestructiveActive: rgba(244, 146, 147, 0.8);
1905
- --fibery-color-colorIconButtonOutlineAccent: rgb(124, 189, 210);
1906
- --fibery-color-colorIconButtonOutlineNeutral: rgb(166, 159, 157);
1907
- --fibery-color-colorIconButtonOutlineDestructive: rgb(244, 146, 147);
1908
- --fibery-color-colorBgButtonSoftAccentDefault: rgb(1, 51, 63);
1909
- --fibery-color-colorBgButtonSoftAccentHover: rgb(7, 68, 83);
1910
- --fibery-color-colorBgButtonSoftNeutralDefault: rgb(39, 35, 33);
1911
- --fibery-color-colorBgButtonSoftNeutralHover: rgb(65, 60, 58);
1912
- --fibery-color-colorBgButtonSoftDestructiveDefault: rgb(80, 21, 27);
1913
- --fibery-color-colorBgButtonSoftDestructiveHover: rgb(104, 33, 39);
1914
- --fibery-color-colorTextButtonSoftAccent: rgb(124, 189, 210);
1915
- --fibery-color-colorTextButtonSoftAccentActive: rgba(124, 189, 210, 0.8);
1916
- --fibery-color-colorTextButtonSoftNeutral: rgb(166, 159, 157);
1917
- --fibery-color-colorTextButtonSoftNeutralActive: rgba(166, 159, 157, 0.8);
1918
- --fibery-color-colorTextButtonSoftDestructive: rgb(244, 146, 147);
1919
- --fibery-color-colorTextButtonSoftDestructiveActive: rgba(244, 146, 147, 0.8);
1920
- --fibery-color-colorIconButtonSoftAccent: rgb(124, 189, 210);
1921
- --fibery-color-colorIconButtonSoftNeutral: rgb(166, 159, 157);
1922
- --fibery-color-colorIconButtonSoftDestructive: rgb(244, 146, 147);
1923
- --fibery-color-colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
1924
- --fibery-color-colorBgButtonGhostAccentHover: rgba(1, 51, 63, 0.8);
1925
- --fibery-color-colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
1926
- --fibery-color-colorBgButtonGhostNeutralHover: rgba(55, 50, 48, 0.8);
1927
- --fibery-color-colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
1928
- --fibery-color-colorBgButtonGhostDestructiveHover: rgb(80, 21, 27);
1929
- --fibery-color-colorTextButtonGhostAccent: rgb(124, 189, 210);
1930
- --fibery-color-colorTextButtonGhostAccentActive: rgba(124, 189, 210, 0.8);
1931
- --fibery-color-colorTextButtonGhostNeutral: rgb(166, 159, 157);
1932
- --fibery-color-colorTextButtonGhostNeutralActive: rgba(166, 159, 157, 0.8);
1933
- --fibery-color-colorTextButtonGhostDestructive: rgb(244, 146, 147);
1934
- --fibery-color-colorTextButtonGhostDestructiveActive: rgba(244, 146, 147, 0.8);
1935
- --fibery-color-colorIconButtonGhostAccent: rgb(124, 189, 210);
1936
- --fibery-color-colorIconButtonGhostNeutral: rgb(166, 159, 157);
1937
- --fibery-color-colorIconButtonGhostDestructive: rgb(244, 146, 147);
1938
- --fibery-color-colorBorderAccentFocusRing: rgba(0, 138, 169, 0.3);
1939
- --fibery-color-colorBorderNeutralFocusRing: rgba(163, 157, 150, 0.3);
1940
- --fibery-color-colorBorderDestructiveFocusRing: rgba(211, 62, 75, 0.3);
1941
- --fibery-color-colorBgReactionsDefault: rgb(32, 27, 25);
1942
- --fibery-color-colorBgReactionsHover: rgb(55, 50, 48);
1943
- --fibery-color-colorBorderReactionsHover: rgb(117, 111, 109);
1944
- --fibery-color-colorBgReactionsSelectedDefault: rgb(0, 106, 135);
1945
- --fibery-color-colorBorderReactionsSelectedDefault: rgb(0, 106, 135);
1946
- --fibery-color-colorBgReactionsSelectedHover: rgb(0, 126, 159);
1947
- --fibery-color-colorBorderReactionsSelectedHover: rgb(0, 126, 159);
1948
- --fibery-color-colorTextReactionsSelected: rgb(224, 212, 206);
1949
- --fibery-color-colorBgToastDefault: rgb(26, 22, 20);
1950
- --fibery-color-colorBgDbTabHover: rgb(45, 40, 38);
1951
- --fibery-color-colorBgDbTabFocus: rgb(55, 50, 48);
1952
- --fibery-color-colorBgTabHover: rgba(166, 159, 157, 0.1);
1953
- --fibery-color-colorBgMessageContainer: rgb(39, 35, 33);
1954
- --fibery-color-colorBgMessageContainerHover: rgb(45, 40, 38);
1955
- --fibery-color-colorBgEntityAvatarDefault: rgb(16, 25, 28);
1956
- --fibery-color-colorBgEntityAvatarHover: rgb(8, 44, 54);
1957
- --fibery-color-colorTextEntityAvatarDefault: rgb(0, 106, 135);
1958
- --fibery-color-colorTextEntityAvatarHover: rgb(0, 136, 170);
1959
- --fibery-color-colorBgMessageHighlighted: rgb(32, 27, 25);
1960
- --fibery-color-colorBgCommentHover: rgb(32, 27, 25);
1961
- --fibery-color-colorBgCodeEditor: rgb(39, 35, 33);
1962
- --fibery-color-colorBgEditorImageZoomed: rgb(55, 50, 48);
1963
- --fibery-color-colorMermaidPrimaryColor: rgb(86, 80, 78);
1964
- --fibery-color-colorMermaidPrimaryBorderColor: rgb(117, 111, 109);
1965
- --fibery-color-colorMermaidLineColor: rgb(117, 111, 109);
1966
- --fibery-color-colorBgWhiteboard: rgb(26, 22, 20);
1967
- --fibery-color-colorGridDotWhiteboard: rgb(55, 50, 48);
1968
- --fibery-color-colorSelectionWhiteboardBorderEnabled: rgb(0, 106, 135);
1969
- --fibery-color-colorHighlightWhiteboardSelection: rgb(0, 106, 135);
1970
- --fibery-color-colorHighlightWhiteboardSelectionLocked: rgba(117, 111, 109, 0.5);
1971
- --fibery-color-colorSelectionWhiteboardBorderDisabled: rgba(117, 111, 109, 0.5);
1972
- --fibery-color-colorPlaceholderWhiteboardDefault: rgba(0, 106, 135, 0.2);
1973
- --fibery-color-colorLinkPointWhiteboardDefault: rgb(0, 106, 135);
1974
- --fibery-color-colorLinkPointWhiteboardFillDefault: #2d2623;
1975
- --fibery-color-colorMapWhiteboardPreviewDefault: rgba(0, 106, 135, 0.4);
1976
- --fibery-color-colorCardWhiteboardShadowDefault: rgba(166, 159, 157, 0.05);
1977
- --fibery-color-colorCardWhiteboardBgDefault: rgb(50, 45, 43);
1978
- --fibery-color-colorCardWhiteboardBorderDefault: rgba(224, 212, 206, 0.2);
1979
- --fibery-color-colorUnitHeaderWhiteboardDefault: rgba(224, 212, 206, 0.6);
1980
- --fibery-color-colorUnitWhiteboardBgDefault: rgb(55, 50, 48);
1981
- --fibery-color-colorUnitWhiteboardBorderDefault: rgba(224, 212, 206, 0.25);
1982
- --fibery-color-colorSectionWhiteboardBgInactive: rgb(32, 27, 25);
1983
- --fibery-color-colorSectionWhiteboardBorderInactive: rgb(55, 50, 48);
1984
- --fibery-color-colorEmbedWhiteboardEditBorder: rgba(0, 112, 97, 0.9);
1985
- --fibery-color-colorTextWhiteboardDefault: rgb(224, 212, 206);
1986
- --fibery-color-colorTextWhiteboardDisabled: rgb(117, 111, 109);
1987
- --fibery-color-colorTextWhiteboardAccent: rgba(26, 22, 20, 0.6);
1988
- --fibery-color-colorTextWhiteboardInversedDefault: rgb(255, 253, 250);
1989
- --fibery-color-instrumentsMenuBg: rgb(45, 40, 38);
1990
- --fibery-color-instrumentsMenuShadow:
1808
+ --colorBgListItemGeneral: rgba(255, 255, 255, 0);
1809
+ --colorBgListItemGeneralHover: rgb(45, 40, 38);
1810
+ --colorBgListItemGeneralFocus: rgb(55, 50, 48);
1811
+ --colorBgListItemGeneralSelected: rgb(4, 58, 72);
1812
+ --colorBgListItemGeneralSelectedHover: rgb(7, 68, 83);
1813
+ --colorBgListItemGeneralSelectedFocus: rgb(7, 68, 83);
1814
+ --colorBgListItemGeneralDisabled: rgba(255, 255, 255, 0);
1815
+ --colorTextListItemGeneralDisabled: rgb(117, 111, 109);
1816
+ --colorBgListItemGeneralSelectedDisabled: rgb(4, 58, 72);
1817
+ --opacityListItemGeneralDisabled: 0.4;
1818
+ --colorSearchSubtitle: rgb(117, 111, 109);
1819
+ --colorBgSearchPanel: rgb(32, 27, 25);
1820
+ --colorBgSearchRowHover: rgb(39, 35, 33);
1821
+ --colorBgSearchRowCreateHover: rgb(1, 51, 63);
1822
+ --opacitySearchItemDone: 0.4;
1823
+ --colorBgEntityBoxDefault: rgb(39, 35, 33);
1824
+ --shadowStrokeEntityBoxDefault: 0 0 0 1px rgb(50, 45, 43);
1825
+ --shadowEntityBoxDefault: 0 2px 4px 0 rgba(26, 22, 20, 0.05);
1826
+ --colorBgEntityBoxDefaultHover: rgb(45, 40, 38);
1827
+ --shadowEntityBoxDefaultHover: 0 4px 8px 0 rgba(26, 22, 20, 0.1);
1828
+ --colorBgEntityBoxDefaultFocus: rgb(39, 35, 33);
1829
+ --colorOverlayEntityBoxDefaultFocus: rgb(0, 136, 170);
1830
+ --shadowStrokeEntityBoxDefaultFocus: 0 0 0 2px rgba(0, 136, 170, 0.4);
1831
+ --colorBgEntityBoxDefaultFocusHover: rgb(45, 40, 38);
1832
+ --colorOverlayEntityBoxDefaultFocusHover: rgb(0, 136, 170);
1833
+ --shadowStrokeEntityBoxDefaultFocusHover: 0 0 0 2px rgba(0, 136, 170, 0.6);
1834
+ --opacityEntityBoxDefaultDrag: 0.4;
1835
+ --shadowEntityBoxDefaultDrag: 0 8px 12px 0 rgba(26, 22, 20, 0.1);
1836
+ --colorBgEntityBoxSelected: rgb(8, 44, 54);
1837
+ --shadowStrokeEntityBoxSelected: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1838
+ --colorBgEntityBoxSelectedHover: rgb(8, 44, 54);
1839
+ --shadowStrokeEntityBoxSelectedHover: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1840
+ --colorBgEntityBoxSelectedDrag: rgb(8, 44, 54);
1841
+ --shadowStrokeEntityBoxSelectedDrag: 0 0 0 1px rgb(0, 136, 170), 0 0 0 3px rgba(0, 136, 170, 0.4);
1842
+ --opacityEntityBoxDisabled: 0.65;
1843
+ --opacityEntityBoxDisabledHover: 0.75;
1844
+ --opacityEntityBoxDisabledFocus: 0.75;
1845
+ --opacityEntityBoxDisabledDrag: 0.4;
1846
+ --entityCardBgColor: rgb(50, 45, 43);
1847
+ --entityCardSelectedColor: rgba(55, 50, 48, 0.5);
1848
+ --entityCardHoverColor: rgba(55, 50, 48, 0.5);
1849
+ --entityCardDoneColor: rgba(50, 45, 43, 0.3);
1850
+ --entityCardShadow: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1851
+ --entityCardShadowHover: 0 0 0 1px rgba(32, 27, 25, 0.1), 0 2px 4px -4px rgba(32, 27, 25, 0.2);
1852
+ --colorBgSegmentedControl: rgba(32, 27, 25, 0.8);
1853
+ --colorBgMenuHeaderAvatar: rgb(32, 27, 25);
1854
+ --shadowMenuHeaderAvatar: 0 0 0 1px rgba(117, 111, 109, 0.2);
1855
+ --opacityMenuItemDragged: 0.4;
1856
+ --colorBgMenuItemSelectedDragged: rgb(7, 68, 83);
1857
+ --colorTextMenuItem: rgba(224, 212, 206, 0.9);
1858
+ --colorBgMenuItem: rgba(255, 255, 255, 0);
1859
+ --colorBgMenuItemHover: rgb(50, 45, 43);
1860
+ --colorBgMenuItemFocus: rgb(55, 50, 48);
1861
+ --colorBgMenuItemSelected: rgb(8, 44, 54);
1862
+ --colorBgMenuItemSelectedHover: rgb(4, 58, 72);
1863
+ --colorBgPinnedFieldsLabel: rgb(166, 159, 157);
1864
+ --colorBgObjectEditorSeparator: rgb(224, 212, 206);
1865
+ --colorBgMenuItemSelectedFocused: rgb(4, 58, 72);
1866
+ --colorBgFieldEditorContainer: rgb(39, 35, 33);
1867
+ --colorBgFieldEditorLinkEqualSign: rgb(32, 27, 25);
1868
+ --allowedDropColor: rgb(45, 40, 38);
1869
+ --relationViewBgColor: rgb(39, 35, 33);
1870
+ --mySpaceIconColor: rgb(129, 133, 137);
1871
+ --mySpaceIconBg: rgba(112, 132, 153, 0.2);
1872
+ --privateIconColor: rgb(116, 168, 101);
1873
+ --privateIconBg: rgba(116, 168, 101, 0.2);
1874
+ --favoritesIconColor: rgb(235, 169, 68);
1875
+ --favoritesIconBg: rgba(235, 169, 68, 0.2);
1876
+ --swatchDefault: #1fbed3;
1877
+ --unitBg: rgb(55, 50, 48);
1878
+ --unitBgHover: rgb(65, 60, 58);
1879
+ --colorBgBadgeNeutral: rgba(45, 40, 38, 0.8);
1880
+ --colorBgBadgeAccent: rgba(1, 51, 63, 0.8);
1881
+ --colorBgBadgeSuccess: rgb(8, 61, 53);
1882
+ --colorBgBadgeWarning: rgb(58, 50, 0);
1883
+ --colorBgBadgeError: rgb(91, 26, 32);
1884
+ --colorTextBadgeNeutral: rgb(166, 159, 157);
1885
+ --colorTextBadgeAccent: rgb(124, 189, 210);
1886
+ --colorTextBadgeSuccess: rgb(128, 192, 180);
1887
+ --colorTextBadgeWarning: rgb(227, 198, 0);
1888
+ --colorTextBadgeError: rgb(244, 146, 147);
1889
+ --badgeBgColor: rgba(121, 118, 113, 0.2);
1890
+ --tooltipBgColor: rgb(55, 50, 48);
1891
+ --todayMarkerColor: rgb(104, 33, 39);
1892
+ --viewBgOverlayColor: rgba(26, 22, 20, 0.6);
1893
+ --floatEditorMenuBg: rgb(55, 50, 48);
1894
+ --floatEditorActiveColor: rgb(124, 189, 210);
1895
+ --commentColor: rgba(248, 216, 0, 0.4);
1896
+ --cellBackgroundColor: rgb(32, 27, 25);
1897
+ --cellBackgroundHoverColor: rgba(55, 50, 48, 0.3);
1898
+ --cellBorderColor: rgba(117, 111, 109, 0.5);
1899
+ --cellPinnedBorderColor: rgba(117, 111, 109, 0.7);
1900
+ --tableRowWarningColor: rgba(248, 216, 0, 0.4);
1901
+ --errorBgColor: rgba(213, 50, 71, 0.6);
1902
+ --errorTextColor: rgb(244, 179, 178);
1903
+ --errorButtonColor: rgb(225, 78, 91);
1904
+ --warningBgColor: rgba(110, 95, 0, 0.6);
1905
+ --warningButtonColor: rgb(227, 198, 0);
1906
+ --infoBox: rgba(248, 216, 0, 0.2);
1907
+ --appCardBgColor: rgb(32, 27, 25);
1908
+ --appCardHoverColor: rgb(32, 27, 25);
1909
+ --modalBg: rgba(32, 27, 25, 0.5);
1910
+ --modalContentBg: rgb(39, 35, 33);
1911
+ --progressIconBg: rgba(255, 255, 254, 0.18);
1912
+ --progressIconFill: rgba(255, 255, 254, 0.59);
1913
+ --formBg: rgb(32, 27, 25);
1914
+ --formHeaderShadow: 0 0 6px 0 rgba(26, 22, 20, 0.4);
1915
+ --formEditorFieldBg: rgb(45, 40, 38);
1916
+ --filterGroup1Bg: rgb(55, 50, 48);
1917
+ --filterGroup2Bg: rgb(65, 60, 58);
1918
+ --filterGroupBorder: rgba(255, 255, 254, 0.03);
1919
+ --colorBgNotificationHover: rgb(32, 27, 25);
1920
+ --colorBgNotificationSelected: rgb(13, 32, 38);
1921
+ --colorBgNotificationSelectedHover: rgb(8, 44, 54);
1922
+ --disabledInversedTextColor: rgba(255, 253, 250, 0.25);
1923
+ --success: rgb(0, 143, 125);
1924
+ --danger: rgb(225, 78, 91);
1925
+ --active: rgb(225, 78, 91);
1926
+ --warning: rgb(110, 95, 0);
1927
+ --cardBg: rgb(55, 50, 48);
1928
+ --selectedImageBorder: rgba(255, 255, 254, 0.59);
1929
+ --transparent: rgba(255, 255, 255, 0);
1930
+ --progressBg: rgb(243, 236, 229);
1931
+ --progressText: rgb(99, 94, 87);
1932
+ --progressFillBg: rgb(99, 94, 87);
1933
+ --progressFillText: rgb(255, 253, 250);
1934
+ --progressBarFillNeutral: rgba(117, 111, 109, 0.2);
1935
+ --progressBarFill: rgb(22, 152, 183);
1936
+ --progressBarBg: rgba(22, 152, 183, 0.25);
1937
+ --colorPickerSwatchBorder: rgba(0, 0, 0, 0.14);
1938
+ --colorBorderRichTextMedia: rgba(0, 0, 0, 0.14);
1939
+ --richTextTableBorder: rgba(255, 255, 254, 0.18);
1940
+ --colorBgDropLine: rgb(0, 106, 135);
1941
+ --viewBg: rgb(26, 22, 20);
1942
+ --colorBgViewMetaItem: rgb(32, 27, 25);
1943
+ --collectionViewBg: rgb(32, 27, 25);
1944
+ --collectionViewBorder: 0 0 0 1px rgba(86, 80, 78, 0.3);
1945
+ --viewSecondaryBg: rgb(32, 27, 25);
1946
+ --viewHighlightBg: rgb(8, 44, 54);
1947
+ --boardBg: rgb(26, 22, 20);
1948
+ --boardBgWithOpacity80: rgba(26, 22, 20, 0.8);
1949
+ --boardAxisBgHover: rgb(45, 40, 38);
1950
+ --gridHeaderBgColor: rgb(39, 35, 33);
1951
+ --gridHeaderHoverBgColor: rgb(45, 40, 38);
1952
+ --gridHeaderTextColor: rgb(166, 159, 157);
1953
+ --gridCellBgColor: rgb(32, 27, 25);
1954
+ --gridCellBorderColor: rgb(55, 50, 48);
1955
+ --gridDisabledCellBgColor: rgb(39, 35, 33);
1956
+ --gridSelectedCellBgColor: rgb(8, 44, 54);
1957
+ --gridHighlightedCellBgColor: rgb(4, 58, 72);
1958
+ --gridSelectedCellBorderColor: rgb(0, 85, 107);
1959
+ --gridSelectedPinnedCellBorderColor: rgb(0, 85, 107);
1960
+ --gridDisabledSelectedCellBgColor: rgb(4, 58, 72);
1961
+ --gridActiveCellBorderColor: rgb(0, 136, 170);
1962
+ --timelineEntityHandleColor: rgb(0, 85, 107);
1963
+ --timelineDependencyHoverBgColor: rgb(0, 106, 135);
1964
+ --timelineDependencyOverlapBgColor: rgb(213, 50, 71);
1965
+ --timelineDependencyOverlapHoverBgColor: rgb(244, 146, 147);
1966
+ --timelineCellBgColor: rgb(26, 22, 20);
1967
+ --timelineCellWeekendBgColor: rgb(32, 27, 25);
1968
+ --timelineCellTodayBgColor: rgb(13, 32, 38);
1969
+ --timelineCreateEntityPlaceholderBgColor: rgb(65, 60, 58);
1970
+ --colorBgButtonSolidAccentDefault: rgb(0, 136, 170);
1971
+ --colorBgButtonSolidAccentHover: rgb(22, 152, 183);
1972
+ --colorBgButtonSolidNeutralDefault: rgb(224, 212, 206);
1973
+ --colorBgButtonSolidNeutralHover: rgb(255, 253, 250);
1974
+ --colorBgButtonSolidDestructiveDefault: rgb(213, 50, 71);
1975
+ --colorBgButtonSolidDestructiveHover: rgb(225, 78, 91);
1976
+ --colorTextButtonSolidAccent: rgb(255, 253, 250);
1977
+ --colorTextButtonSolidAccentActive: rgba(255, 253, 250, 0.8);
1978
+ --colorTextButtonSolidNeutral: rgb(32, 27, 25);
1979
+ --colorTextButtonSolidNeutralActive: rgba(32, 27, 25, 0.8);
1980
+ --colorTextButtonSolidDestructive: rgb(255, 253, 250);
1981
+ --colorTextButtonSolidDestructiveActive: rgba(255, 253, 250, 0.8);
1982
+ --colorIconButtonSolidAccent: rgb(255, 253, 250);
1983
+ --colorIconButtonSolidNeutral: rgb(86, 80, 78);
1984
+ --colorIconButtonSolidDestructive: rgb(255, 253, 250);
1985
+ --colorBorderButtonOutlineAccentDefault: rgb(0, 106, 135);
1986
+ --colorBorderButtonOutlineNeutralDefault: rgb(65, 60, 58);
1987
+ --colorBorderButtonOutlineDestructiveDefault: rgb(136, 27, 42);
1988
+ --colorBgButtonOutlineAccentDefault: rgb(26, 22, 20);
1989
+ --colorBgButtonOutlineAccentHover: rgb(8, 44, 54);
1990
+ --colorBgButtonOutlineNeutralDefault: rgb(26, 22, 20);
1991
+ --colorBgButtonOutlineNeutralHover: rgb(45, 40, 38);
1992
+ --colorBgButtonOutlineDestructiveDefault: rgb(26, 22, 20);
1993
+ --colorBgButtonOutlineDestructiveHover: rgb(80, 21, 27);
1994
+ --colorTextButtonOutlineAccent: rgb(124, 189, 210);
1995
+ --colorTextButtonOutlineAccentActive: rgba(124, 189, 210, 0.8);
1996
+ --colorTextButtonOutlineNeutral: rgb(166, 159, 157);
1997
+ --colorTextButtonOutlineNeutralActive: rgba(224, 212, 206, 0.8);
1998
+ --colorTextButtonOutlineDestructive: rgb(244, 146, 147);
1999
+ --colorTextButtonOutlineDestructiveActive: rgba(244, 146, 147, 0.8);
2000
+ --colorIconButtonOutlineAccent: rgb(124, 189, 210);
2001
+ --colorIconButtonOutlineNeutral: rgb(166, 159, 157);
2002
+ --colorIconButtonOutlineDestructive: rgb(244, 146, 147);
2003
+ --colorBgButtonSoftAccentDefault: rgb(1, 51, 63);
2004
+ --colorBgButtonSoftAccentHover: rgb(7, 68, 83);
2005
+ --colorBgButtonSoftNeutralDefault: rgb(39, 35, 33);
2006
+ --colorBgButtonSoftNeutralHover: rgb(65, 60, 58);
2007
+ --colorBgButtonSoftDestructiveDefault: rgb(80, 21, 27);
2008
+ --colorBgButtonSoftDestructiveHover: rgb(104, 33, 39);
2009
+ --colorTextButtonSoftAccent: rgb(124, 189, 210);
2010
+ --colorTextButtonSoftAccentActive: rgba(124, 189, 210, 0.8);
2011
+ --colorTextButtonSoftNeutral: rgb(166, 159, 157);
2012
+ --colorTextButtonSoftNeutralActive: rgba(166, 159, 157, 0.8);
2013
+ --colorTextButtonSoftDestructive: rgb(244, 146, 147);
2014
+ --colorTextButtonSoftDestructiveActive: rgba(244, 146, 147, 0.8);
2015
+ --colorIconButtonSoftAccent: rgb(124, 189, 210);
2016
+ --colorIconButtonSoftNeutral: rgb(166, 159, 157);
2017
+ --colorIconButtonSoftDestructive: rgb(244, 146, 147);
2018
+ --colorBgButtonGhostAccentDefault: rgba(255, 255, 255, 0);
2019
+ --colorBgButtonGhostAccentHover: rgba(1, 51, 63, 0.8);
2020
+ --colorBgButtonGhostNeutralDefault: rgba(255, 255, 255, 0);
2021
+ --colorBgButtonGhostNeutralHover: rgba(55, 50, 48, 0.8);
2022
+ --colorBgButtonGhostDestructiveDefault: rgba(255, 255, 255, 0);
2023
+ --colorBgButtonGhostDestructiveHover: rgb(80, 21, 27);
2024
+ --colorTextButtonGhostAccent: rgb(124, 189, 210);
2025
+ --colorTextButtonGhostAccentActive: rgba(124, 189, 210, 0.8);
2026
+ --colorTextButtonGhostNeutral: rgb(166, 159, 157);
2027
+ --colorTextButtonGhostNeutralActive: rgba(166, 159, 157, 0.8);
2028
+ --colorTextButtonGhostDestructive: rgb(244, 146, 147);
2029
+ --colorTextButtonGhostDestructiveActive: rgba(244, 146, 147, 0.8);
2030
+ --colorIconButtonGhostAccent: rgb(124, 189, 210);
2031
+ --colorIconButtonGhostNeutral: rgb(166, 159, 157);
2032
+ --colorIconButtonGhostDestructive: rgb(244, 146, 147);
2033
+ --colorBorderAccentFocusRing: rgba(0, 138, 169, 0.3);
2034
+ --colorBorderNeutralFocusRing: rgba(163, 157, 150, 0.3);
2035
+ --colorBorderDestructiveFocusRing: rgba(211, 62, 75, 0.3);
2036
+ --colorBgReactionsDefault: rgb(32, 27, 25);
2037
+ --colorBgReactionsHover: rgb(55, 50, 48);
2038
+ --colorBorderReactionsHover: rgb(117, 111, 109);
2039
+ --colorBgReactionsSelectedDefault: rgb(0, 106, 135);
2040
+ --colorBorderReactionsSelectedDefault: rgb(0, 106, 135);
2041
+ --colorBgReactionsSelectedHover: rgb(0, 126, 159);
2042
+ --colorBorderReactionsSelectedHover: rgb(0, 126, 159);
2043
+ --colorTextReactionsSelected: rgb(224, 212, 206);
2044
+ --colorBgToggleButtonUnselectedNormal: rgb(32, 27, 25);
2045
+ --colorBgToggleButtonUnselectedHover: rgb(55, 50, 48);
2046
+ --colorBgToggleButtonSelectedNormal: rgb(0, 106, 135);
2047
+ --colorBgToggleButtonSelectedHover: rgb(0, 126, 159);
2048
+ --colorBorderToggleButtonUnselectedNormal: rgb(117, 111, 109);
2049
+ --colorBorderToggleButtonUnselectedHover: rgb(117, 111, 109);
2050
+ --colorBorderToggleButtonSelectedNormal: rgb(0, 106, 135);
2051
+ --colorBorderToggleButtonSelectedHover: rgb(0, 126, 159);
2052
+ --colorTextToggleButtonUnselectedNormal: rgb(166, 159, 157);
2053
+ --colorTextToggleButtonUnselectedHover: rgb(166, 159, 157);
2054
+ --colorTextToggleButtonSelectedNormal: rgb(224, 212, 206);
2055
+ --colorTextToggleButtonSelectedHover: rgb(224, 212, 206);
2056
+ --colorIconToggleButtonUnselectedNormal: rgb(166, 159, 157);
2057
+ --colorIconToggleButtonUnselectedHover: rgb(166, 159, 157);
2058
+ --colorIconToggleButtonSelectedNormal: rgb(124, 189, 210);
2059
+ --colorIconToggleButtonSelectedHover: rgb(124, 189, 210);
2060
+ --colorBgRoundToggleButtonUnselectedNormal: rgb(32, 27, 25);
2061
+ --colorBgRoundToggleButtonUnselectedHover: rgb(55, 50, 48);
2062
+ --colorBgRoundToggleButtonSelectedNormal: rgb(0, 106, 135);
2063
+ --colorBgRoundToggleButtonSelectedHover: rgb(0, 126, 159);
2064
+ --colorBorderRoundToggleButtonUnselectedNormal: rgb(117, 111, 109);
2065
+ --colorBorderRoundToggleButtonUnselectedHover: rgb(117, 111, 109);
2066
+ --colorBorderRoundToggleButtonSelectedNormal: rgb(0, 106, 135);
2067
+ --colorBorderRoundToggleButtonSelectedHover: rgb(0, 126, 159);
2068
+ --colorTextRoundToggleButtonUnselectedNormal: rgb(166, 159, 157);
2069
+ --colorTextRoundToggleButtonUnselectedHover: rgb(166, 159, 157);
2070
+ --colorTextRoundToggleButtonSelectedNormal: rgb(224, 212, 206);
2071
+ --colorTextRoundToggleButtonSelectedHover: rgb(224, 212, 206);
2072
+ --colorIconRoundToggleButtonUnselectedNormal: rgb(166, 159, 157);
2073
+ --colorIconRoundToggleButtonUnselectedHover: rgb(166, 159, 157);
2074
+ --colorIconRoundToggleButtonSelectedNormal: rgb(124, 189, 210);
2075
+ --colorIconRoundToggleButtonSelectedHover: rgb(124, 189, 210);
2076
+ --colorBgToastDefault: rgb(26, 22, 20);
2077
+ --colorBgDbTabHover: rgb(45, 40, 38);
2078
+ --colorBgDbTabFocus: rgb(55, 50, 48);
2079
+ --colorBgTabHover: rgba(166, 159, 157, 0.1);
2080
+ --colorBgMessageContainer: rgb(39, 35, 33);
2081
+ --colorBgMessageContainerHover: rgb(45, 40, 38);
2082
+ --colorBgEntityAvatarDefault: rgb(16, 25, 28);
2083
+ --colorBgEntityAvatarHover: rgb(8, 44, 54);
2084
+ --colorTextEntityAvatarDefault: rgb(0, 106, 135);
2085
+ --colorTextEntityAvatarHover: rgb(0, 136, 170);
2086
+ --colorBgMessageHighlighted: rgb(32, 27, 25);
2087
+ --colorBgCommentHover: rgb(32, 27, 25);
2088
+ --colorBgCodeEditor: rgb(39, 35, 33);
2089
+ --colorBgEditorImageZoomed: rgb(55, 50, 48);
2090
+ --colorMermaidPrimaryColor: rgb(86, 80, 78);
2091
+ --colorMermaidPrimaryBorderColor: rgb(117, 111, 109);
2092
+ --colorMermaidLineColor: rgb(117, 111, 109);
2093
+ --colorBgWhiteboard: rgb(26, 22, 20);
2094
+ --colorGridDotWhiteboard: rgb(55, 50, 48);
2095
+ --colorSelectionWhiteboardBorderEnabled: rgb(0, 106, 135);
2096
+ --colorHighlightWhiteboardSelection: rgb(0, 106, 135);
2097
+ --colorHighlightWhiteboardSelectionLocked: rgba(117, 111, 109, 0.5);
2098
+ --colorSelectionWhiteboardBorderDisabled: rgba(117, 111, 109, 0.5);
2099
+ --colorPlaceholderWhiteboardDefault: rgba(0, 106, 135, 0.2);
2100
+ --colorLinkPointWhiteboardDefault: rgb(0, 106, 135);
2101
+ --colorLinkPointWhiteboardFillDefault: #2d2623;
2102
+ --colorMapWhiteboardPreviewDefault: rgba(0, 106, 135, 0.4);
2103
+ --colorCardWhiteboardShadowDefault: rgba(166, 159, 157, 0.05);
2104
+ --colorCardWhiteboardBgDefault: rgb(50, 45, 43);
2105
+ --colorCardWhiteboardBorderDefault: rgba(224, 212, 206, 0.2);
2106
+ --colorUnitHeaderWhiteboardDefault: rgba(224, 212, 206, 0.6);
2107
+ --colorUnitWhiteboardBgDefault: rgb(55, 50, 48);
2108
+ --colorUnitWhiteboardBorderDefault: rgba(224, 212, 206, 0.25);
2109
+ --colorSectionWhiteboardBgInactive: rgb(32, 27, 25);
2110
+ --colorSectionWhiteboardBorderInactive: rgb(55, 50, 48);
2111
+ --colorUploadPreviewBg: rgba(32, 27, 25, 0.85);
2112
+ --colorEmbedWhiteboardEditBorder: rgba(0, 112, 97, 0.9);
2113
+ --colorTextWhiteboardDefault: rgb(224, 212, 206);
2114
+ --colorTextWhiteboardDisabled: rgb(117, 111, 109);
2115
+ --colorTextWhiteboardAccent: rgba(26, 22, 20, 0.6);
2116
+ --colorTextWhiteboardInversedDefault: rgb(255, 253, 250);
2117
+ --instrumentsMenuBg: rgb(45, 40, 38);
2118
+ --instrumentsMenuShadow:
1991
2119
  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);
1992
- --fibery-color-commentBubbleBg: rgb(55, 50, 48);
1993
- --fibery-color-commentsPanelShadow:
2120
+ --commentBubbleBg: rgb(55, 50, 48);
2121
+ --commentsPanelShadow:
1994
2122
  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);
1995
- --fibery-color-searchFiltersBg: rgb(32, 27, 25);
1996
- --fibery-color-selectedColorBorder: rgba(232, 226, 219, 0.25);
1997
- --fibery-color-colorBgSegmentedControlDefault: rgb(26, 22, 20);
1998
- --fibery-color-colorBgSegmentedControlActive: rgb(55, 50, 48);
1999
- --fibery-color-colorBgSegmentedControlHover: rgb(45, 40, 38);
2000
- --fibery-color-colorBorderSegmentedControlDefault: rgb(65, 60, 58);
2001
- --fibery-color-colorBgBannerNeutral: rgb(39, 35, 33);
2002
- --fibery-color-colorBgBannerPrimary: rgb(8, 44, 54);
2003
- --fibery-color-colorBgBannerWarning: rgb(43, 36, 0);
2004
- --fibery-color-colorBgBannerError: rgb(67, 22, 25);
2005
- --fibery-color-colorBgBannerSuccess: rgb(11, 46, 40);
2006
- --fibery-color-colorIconBannerNeutral: rgb(224, 212, 206);
2007
- --fibery-color-colorIconBannerAccent: rgb(124, 189, 210);
2008
- --fibery-color-colorIconBannerWarning: rgb(227, 198, 0);
2009
- --fibery-color-colorIconBannerError: rgb(244, 146, 147);
2010
- --fibery-color-colorIconBannerSuccess: rgb(128, 192, 180);
2011
- --fibery-color-colorTextBannerNeutral: rgb(224, 212, 206);
2012
- --fibery-color-colorTextBannerAccent: rgb(124, 189, 210);
2013
- --fibery-color-colorTextBannerWarning: rgb(227, 198, 0);
2014
- --fibery-color-colorTextBannerError: rgb(244, 146, 147);
2015
- --fibery-color-colorTextBannerSuccess: rgb(128, 192, 180);
2016
- --fibery-color-colorBgChargebeeInfoBox: rgb(26, 22, 20);
2017
- --fibery-color-newCommentHorizontalRulerColor: rgb(237, 150, 150);
2018
- --fibery-color-colorBgErrorMessage: rgb(237, 150, 150);
2019
- --fibery-color-colorBorderLogoGrid: rgb(45, 40, 38);
2020
- --fibery-color-colorBorderLogoGridSubtle: rgb(45, 40, 38);
2021
- --fibery-color-colorBorderLogoGridMedium: rgb(45, 40, 38);
2022
- --fibery-color-colorStrokeLogoDashed: rgb(86, 80, 78);
2023
- --fibery-color-colorBgLogoCardTransparent: rgb(32, 27, 25);
2024
- --fibery-color-colorBgLogoCardDark: rgb(86, 80, 78);
2025
- --fibery-color-colorBgLogoCardMedium: rgb(45, 40, 38);
2026
- --fibery-color-colorBgSkeletonFrom: rgba(31, 26, 24, 0.05);
2027
- --fibery-color-colorBgSkeletonTo: rgba(31, 26, 24, 0.1);
2028
- --fibery-color-colorShadowInsetEdge: rgba(31, 26, 24, 0.05);
2029
- --fibery-color-colorShadowBorder: rgba(31, 26, 24, 0.1);
2030
- --fibery-color-colorShadowElevation: rgba(255, 253, 250, 0.1);
2031
- --fibery-color-colorShadowOutline: rgba(255, 253, 250, 0.2);
2032
- --fibery-color-colorPlaceholder: rgba(31, 26, 24, 0.4);
2033
- --fibery-color-colorPlaceholderSubtle: rgba(31, 26, 24, 0.25);
2034
- --fibery-color-colorBgSubtleLight: rgba(31, 26, 24, 0.05);
2035
- --fibery-color-colorStrokeSurface: #1f1a18;
2036
- --fibery-color-colorTextMilestone: rgba(255, 253, 250, 0.5);
2037
- --fibery-color-colorSpinnerIcon: rgba(255, 253, 250, 0.9);
2038
- --fibery-color-colorSpinnerBg: rgba(255, 253, 250, 0.1);
2039
- --fibery-color-colorBgLaneSubtle: rgba(255, 253, 250, 0.05);
2040
- --fibery-color-opacity15: 0.15;
2041
- --fibery-color-opacity20: 0.2;
2042
- --fibery-color-opacity25: 0.25;
2043
- --fibery-color-opacity30: 0.3;
2044
- --fibery-color-opacity40: 0.4;
2045
- --fibery-color-opacity50: 0.5;
2046
- --fibery-color-opacity60: 0.6;
2047
- --fibery-color-opacity65: 0.65;
2048
- --fibery-color-opacity70: 0.7;
2049
- --fibery-color-opacity75: 0.75;
2050
- --fibery-color-opacity80: 0.8;
2051
- --fibery-color-opacity85: 0.85;
2052
- --fibery-color-opacity90: 0.9;
2053
- --fibery-color-whiteA10: rgba(31, 26, 24, 0.1);
2054
- --fibery-color-whiteA40: rgba(31, 26, 24, 0.4);
2055
- --fibery-color-whiteA100: #1f1a18;
2056
- --fibery-color-colorBgFileOverlay: rgba(31, 26, 24, 0.6);
2057
- --fibery-color-colorBgScrollFade: rgba(31, 26, 24, 0.15);
2058
- --fibery-color-colorStrokeSelectedOutline: rgba(255, 253, 250, 0.75);
2059
- --fibery-color-scrollbar: rgba(65, 60, 58, 0.5);
2123
+ --searchFiltersBg: rgb(32, 27, 25);
2124
+ --selectedColorBorder: rgba(232, 226, 219, 0.25);
2125
+ --colorBgSegmentedControlDefault: rgb(26, 22, 20);
2126
+ --colorBgSegmentedControlActive: rgb(55, 50, 48);
2127
+ --colorBgSegmentedControlHover: rgb(45, 40, 38);
2128
+ --colorBorderSegmentedControlDefault: rgb(65, 60, 58);
2129
+ --colorBgBannerNeutral: rgb(39, 35, 33);
2130
+ --colorBgBannerAccent: rgb(8, 44, 54);
2131
+ --colorBgBannerWarning: rgb(43, 36, 0);
2132
+ --colorBgBannerError: rgb(67, 22, 25);
2133
+ --colorBgBannerSuccess: rgb(11, 46, 40);
2134
+ --colorIconBannerNeutral: rgb(166, 159, 157);
2135
+ --colorIconBannerAccent: rgb(124, 189, 210);
2136
+ --colorIconBannerWarning: rgb(227, 198, 0);
2137
+ --colorIconBannerError: rgb(244, 146, 147);
2138
+ --colorIconBannerSuccess: rgb(128, 192, 180);
2139
+ --colorTextBannerNeutral: rgb(224, 212, 206);
2140
+ --colorTextBannerAccent: rgb(124, 189, 210);
2141
+ --colorTextBannerWarning: rgb(227, 198, 0);
2142
+ --colorTextBannerError: rgb(244, 146, 147);
2143
+ --colorTextBannerSuccess: rgb(128, 192, 180);
2144
+ --colorBgChargebeeInfoBox: rgb(26, 22, 20);
2145
+ --newCommentHorizontalRulerColor: rgb(237, 150, 150);
2146
+ --colorBgErrorMessage: rgb(237, 150, 150);
2147
+ --colorBorderLogoGrid: rgb(45, 40, 38);
2148
+ --colorBorderLogoGridSubtle: rgb(45, 40, 38);
2149
+ --colorBorderLogoGridMedium: rgb(45, 40, 38);
2150
+ --colorStrokeLogoDashed: rgb(86, 80, 78);
2151
+ --colorBgLogoCardTransparent: rgb(32, 27, 25);
2152
+ --colorBgLogoCardDark: rgb(86, 80, 78);
2153
+ --colorBgLogoCardMedium: rgb(45, 40, 38);
2154
+ --colorBgSkeletonFrom: rgba(31, 26, 24, 0.05);
2155
+ --colorBgSkeletonTo: rgba(31, 26, 24, 0.1);
2156
+ --colorShadowInsetEdge: rgba(31, 26, 24, 0.05);
2157
+ --colorShadowBorder: rgba(31, 26, 24, 0.1);
2158
+ --colorShadowElevation: rgba(255, 253, 250, 0.1);
2159
+ --colorShadowOutline: rgba(255, 253, 250, 0.2);
2160
+ --colorPlaceholder: rgba(31, 26, 24, 0.4);
2161
+ --colorPlaceholderSubtle: rgba(31, 26, 24, 0.25);
2162
+ --colorBgSubtleLight: rgba(31, 26, 24, 0.05);
2163
+ --colorStrokeSurface: #1f1a18;
2164
+ --colorTextMilestone: rgba(255, 253, 250, 0.5);
2165
+ --colorSpinnerIcon: rgba(255, 253, 250, 0.9);
2166
+ --colorSpinnerBg: rgba(255, 253, 250, 0.1);
2167
+ --colorBgLaneSubtle: rgba(255, 253, 250, 0.05);
2168
+ --opacity15: 0.15;
2169
+ --opacity20: 0.2;
2170
+ --opacity25: 0.25;
2171
+ --opacity30: 0.3;
2172
+ --opacity40: 0.4;
2173
+ --opacity50: 0.5;
2174
+ --opacity60: 0.6;
2175
+ --opacity65: 0.65;
2176
+ --opacity70: 0.7;
2177
+ --opacity75: 0.75;
2178
+ --opacity80: 0.8;
2179
+ --opacity85: 0.85;
2180
+ --opacity90: 0.9;
2181
+ --whiteA10: rgba(31, 26, 24, 0.1);
2182
+ --whiteA40: rgba(31, 26, 24, 0.4);
2183
+ --whiteA100: #1f1a18;
2184
+ --colorBgFileOverlay: rgba(31, 26, 24, 0.6);
2185
+ --colorBgScrollFade: rgba(31, 26, 24, 0.15);
2186
+ --colorStrokeSelectedOutline: rgba(255, 253, 250, 0.75);
2187
+ --scrollbar: rgba(65, 60, 58, 0.5);
2060
2188
  }