@fibery/ui-kit 1.40.3 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/eslint.config.mjs +16 -0
- package/package.json +11 -13
- package/src/a11y-color.test.ts +162 -0
- package/src/a11y-color.ts +13 -20
- package/src/actions-menu/actions-menu-item.tsx +9 -12
- package/src/actions-menu/context-actions-menu.tsx +8 -3
- package/src/ai/model.tsx +0 -1
- package/src/ai/temperature.tsx +0 -1
- package/src/animated-height-container.tsx +3 -3
- package/src/antd/ant-modal.tsx +10 -5
- package/src/antd/index.tsx +3 -0
- package/src/antd/input.tsx +0 -1
- package/src/antd/styles.ts +15 -15
- package/src/app-icon-with-fallback.tsx +6 -6
- package/src/app-icon-wrapper.tsx +2 -3
- package/src/app-icon.tsx +4 -4
- package/src/avatar.tsx +3 -3
- package/src/button/base-button.tsx +0 -1
- package/src/button/button.tsx +1 -0
- package/src/button/make-button-colors.ts +5 -13
- package/src/checkbox.tsx +2 -2
- package/src/collapsible-section.tsx +11 -1
- package/src/color-picker/ColorPickerOrLoader.js +2 -2
- package/src/color-utils.test.ts +307 -0
- package/src/color-utils.ts +215 -0
- package/src/command-menu/index.tsx +1 -0
- package/src/comment.tsx +3 -2
- package/src/context-menu/index.tsx +12 -7
- package/src/date-picker/contexts.ts +2 -2
- package/src/date-picker/date-range-picker.tsx +3 -4
- package/src/date-picker/single-date-picker.tsx +147 -119
- package/src/date-picker/types.ts +4 -3
- package/src/day-select/iso-week-day-select.tsx +2 -2
- package/src/day-select/week-day-select.tsx +2 -2
- package/src/delayed.tsx +0 -1
- package/src/design-system/alpha.test.ts +59 -0
- package/src/design-system/alpha.ts +41 -0
- package/src/design-system/animation.ts +10 -0
- package/src/design-system/colors-css.test.ts +39 -0
- package/src/design-system/colors-css.ts +25 -0
- package/src/design-system/colors-js.test.ts +232 -0
- package/src/design-system/colors-js.ts +107 -0
- package/src/design-system/colors.test.ts +74 -0
- package/src/design-system/colors.ts +759 -0
- package/src/design-system/date.ts +3 -0
- package/src/design-system/layout.ts +106 -0
- package/src/design-system/theme.test.ts +94 -0
- package/src/design-system/theme.ts +93 -0
- package/src/design-system/typography.ts +179 -0
- package/src/design-system/vars.test.ts +1679 -0
- package/src/design-system/vars.ts +52 -0
- package/src/design-system.test.ts +45 -22
- package/src/design-system.ts +25 -1339
- package/src/dropdown-menu/index.tsx +21 -16
- package/src/emoji-picker/app-icon-picker.tsx +5 -5
- package/src/emoji-picker/emoji-picker-content-with-color.tsx +4 -4
- package/src/emoji-picker/icon-emoji-picker.tsx +3 -3
- package/src/favorites-icon.tsx +1 -1
- package/src/fibermoji-placeholder.tsx +3 -3
- package/src/field-container.tsx +11 -2
- package/src/file-item/file-icon.tsx +169 -0
- package/src/file-item/file-menu-items.tsx +68 -0
- package/src/file-item/file-preview-actions.tsx +38 -0
- package/src/file-item/file-title.tsx +48 -0
- package/src/file-item/types.ts +27 -0
- package/src/file-item/use-register-in-image-gallery.tsx +70 -0
- package/src/file-item-2.tsx +32 -348
- package/src/file-item.tsx +6 -3
- package/src/hue-shift.test.ts +91 -0
- package/src/icons/ast/ChatBubble.ts +8 -0
- package/src/icons/ast/ChatFloat.ts +8 -0
- package/src/icons/ast/ChatSidebar.ts +8 -0
- package/src/icons/ast/FileCounter.ts +8 -0
- package/src/icons/ast/FileMultiple.ts +8 -0
- package/src/icons/ast/FileOther.ts +8 -0
- package/src/icons/ast/NoBorder.ts +8 -0
- package/src/icons/ast/NoFill.ts +8 -0
- package/src/icons/ast/ValueEdit.ts +8 -0
- package/src/icons/ast/index.tsx +9 -0
- package/src/icons/react/ChatBubble.tsx +13 -0
- package/src/icons/react/ChatFloat.tsx +13 -0
- package/src/icons/react/ChatSidebar.tsx +13 -0
- package/src/icons/react/FileCounter.tsx +13 -0
- package/src/icons/react/FileMultiple.tsx +13 -0
- package/src/icons/react/FileOther.tsx +13 -0
- package/src/icons/react/NoBorder.tsx +13 -0
- package/src/icons/react/NoFill.tsx +13 -0
- package/src/icons/react/ValueEdit.tsx +13 -0
- package/src/icons/react/index.tsx +9 -0
- package/src/icons/svg/chat-bubble.svg +4 -0
- package/src/icons/svg/chat-float.svg +4 -0
- package/src/icons/svg/chat-sidebar.svg +4 -0
- package/src/icons/svg/file-counter.svg +3 -0
- package/src/icons/svg/file-multiple.svg +3 -0
- package/src/icons/svg/file-other.svg +3 -0
- package/src/icons/svg/no-border.svg +17 -0
- package/src/icons/svg/no-fill.svg +4 -0
- package/src/icons/svg/value-edit.svg +3 -0
- package/src/images-gallery/images-gallery.tsx +8 -6
- package/src/images-gallery/slide-buttons.tsx +4 -11
- package/src/is-iOS.ts +0 -1
- package/src/is-in-popup.ts +2 -1
- package/src/lists/actions-menu-row-surface.tsx +7 -7
- package/src/loading-sausage.tsx +2 -2
- package/src/media-query-utils.ts +1 -2
- package/src/mobile-keyboard-aware-popup.tsx +6 -5
- package/src/modal-menu/modal-menu-content.tsx +2 -2
- package/src/number-input/decimal.js +9 -7
- package/src/number-input/{number-inline-input-with-autosize.tsx → number-input-inline-with-autosize.tsx} +20 -41
- package/src/number-input/number-input-inline.tsx +118 -0
- package/src/number-input/{index.test.js → number-input.test.tsx} +38 -43
- package/src/number-input/number-input.tsx +63 -121
- package/src/number-input/types.ts +19 -0
- package/src/number-input/utils.ts +61 -0
- package/src/online-users.tsx +2 -2
- package/src/palette-generator.test.ts +309 -0
- package/src/palette-generator.ts +160 -0
- package/src/palettes/_.ts +72 -0
- package/src/palettes/slate-arch.colors-snapshot.test.ts +1689 -0
- package/src/palettes/slate-arch.ts +188 -0
- package/src/palettes/slate-user.colors-snapshot.test.ts +1689 -0
- package/src/palettes/slate-user.ts +187 -0
- package/src/palettes/warm-arch.colors-snapshot.test.ts +1689 -0
- package/src/palettes/warm-arch.ts +222 -0
- package/src/palettes/warm-user.colors-snapshot.test.ts +1689 -0
- package/src/palettes/warm-user.ts +222 -0
- package/src/platform.ts +0 -3
- package/src/popover/get-element-ref.ts +28 -0
- package/src/popover/index.tsx +236 -339
- package/src/popover/{mobile-popup-context.tsx → mobile-popover-context.tsx} +7 -7
- package/src/popover/mobile-popover.tsx +169 -0
- package/src/popover/modifiers.tsx +2 -2
- package/src/popover/popup-stack-context.tsx +8 -9
- package/src/progress.tsx +2 -2
- package/src/reactions/reaction-button.tsx +12 -6
- package/src/root-theme-provider.test.tsx +411 -0
- package/src/scale-generator.ts +356 -0
- package/src/select/components/menu-list-virtualized.tsx +12 -25
- package/src/select/components/menu.tsx +12 -2
- package/src/select/index.tsx +6 -5
- package/src/select/select.tsx +38 -39
- package/src/select/styles.ts +0 -1
- package/src/select/util.ts +1 -1
- package/src/static-palettes.ts +356 -0
- package/src/thematic-color-picker.tsx +266 -0
- package/src/thematic-constants.tsx +27 -0
- package/src/thematic-controls.tsx +144 -0
- package/src/thematic-scales.tsx +122 -0
- package/src/thematic-state.ts +370 -0
- package/src/thematic.tsx +386 -0
- package/src/theme-provider.test.tsx +820 -0
- package/src/theme-provider.tsx +158 -92
- package/src/theme-settings.ts +67 -12
- package/src/theme-styles.ts +58 -6
- package/src/toast/toast-action.tsx +1 -1
- package/src/toast/toast.tsx +1 -2
- package/src/toggle-on-off.tsx +2 -2
- package/src/toggle.tsx +7 -8
- package/src/tooltip.tsx +14 -10
- package/src/type-badge.tsx +7 -14
- package/src/unit/styles.ts +2 -25
- package/src/unit/unit-with-tooltip.tsx +3 -2
- package/src/use-is-phone.tsx +7 -2
- package/src/use-long-press.tsx +2 -2
- package/src/use-on-screen-keyboard-data.tsx +2 -2
- package/src/with-data.tsx +4 -3
- package/src/workflow-progress-icon.tsx +2 -2
- package/.eslintignore +0 -3
- package/.eslintrc +0 -14
- package/src/__mocks__/createInlineTheme.js +0 -3
- package/src/create-inline-theme.ts +0 -66
- package/src/number-input/index.js +0 -191
- package/src/palette.ts +0 -237
|
@@ -0,0 +1,1679 @@
|
|
|
1
|
+
/* eslint-disable max-lines */
|
|
2
|
+
import {getThemeColors} from "./theme";
|
|
3
|
+
import {makeThemeVars} from "./vars";
|
|
4
|
+
import {defaultPalette} from "../theme-styles";
|
|
5
|
+
|
|
6
|
+
test("makeThemeVars", () => {
|
|
7
|
+
expect(Object.entries(makeThemeVars(getThemeColors(null, "light2", defaultPalette)))).toMatchInlineSnapshot(`
|
|
8
|
+
[
|
|
9
|
+
[
|
|
10
|
+
"primary",
|
|
11
|
+
"var(--fibery-color-primary)",
|
|
12
|
+
],
|
|
13
|
+
[
|
|
14
|
+
"opacity",
|
|
15
|
+
{
|
|
16
|
+
"opacity0": "var(--fibery-opacity-opacity0)",
|
|
17
|
+
"opacity10": "var(--fibery-opacity-opacity10)",
|
|
18
|
+
"opacity100": "var(--fibery-opacity-opacity100)",
|
|
19
|
+
"opacity15": "var(--fibery-opacity-opacity15)",
|
|
20
|
+
"opacity20": "var(--fibery-opacity-opacity20)",
|
|
21
|
+
"opacity25": "var(--fibery-opacity-opacity25)",
|
|
22
|
+
"opacity30": "var(--fibery-opacity-opacity30)",
|
|
23
|
+
"opacity35": "var(--fibery-opacity-opacity35)",
|
|
24
|
+
"opacity40": "var(--fibery-opacity-opacity40)",
|
|
25
|
+
"opacity45": "var(--fibery-opacity-opacity45)",
|
|
26
|
+
"opacity5": "var(--fibery-opacity-opacity5)",
|
|
27
|
+
"opacity50": "var(--fibery-opacity-opacity50)",
|
|
28
|
+
"opacity55": "var(--fibery-opacity-opacity55)",
|
|
29
|
+
"opacity60": "var(--fibery-opacity-opacity60)",
|
|
30
|
+
"opacity65": "var(--fibery-opacity-opacity65)",
|
|
31
|
+
"opacity70": "var(--fibery-opacity-opacity70)",
|
|
32
|
+
"opacity75": "var(--fibery-opacity-opacity75)",
|
|
33
|
+
"opacity80": "var(--fibery-opacity-opacity80)",
|
|
34
|
+
"opacity85": "var(--fibery-opacity-opacity85)",
|
|
35
|
+
"opacity90": "var(--fibery-opacity-opacity90)",
|
|
36
|
+
"opacity95": "var(--fibery-opacity-opacity95)",
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
[
|
|
40
|
+
"darkenPrimary",
|
|
41
|
+
"var(--fibery-color-darkenPrimary)",
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"brightenPrimary",
|
|
45
|
+
"var(--fibery-color-brightenPrimary)",
|
|
46
|
+
],
|
|
47
|
+
[
|
|
48
|
+
"headerBg",
|
|
49
|
+
"var(--fibery-color-headerBg)",
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"detailsBg",
|
|
53
|
+
"var(--fibery-color-detailsBg)",
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"focus",
|
|
57
|
+
"var(--fibery-color-focus)",
|
|
58
|
+
],
|
|
59
|
+
[
|
|
60
|
+
"separator",
|
|
61
|
+
"var(--fibery-color-separator)",
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"mode",
|
|
65
|
+
"var(--fibery-color-mode)",
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"surfaceElevationS",
|
|
69
|
+
"var(--fibery-color-surfaceElevationS)",
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"surfaceElevationM",
|
|
73
|
+
"var(--fibery-color-surfaceElevationM)",
|
|
74
|
+
],
|
|
75
|
+
[
|
|
76
|
+
"surfaceElevationL",
|
|
77
|
+
"var(--fibery-color-surfaceElevationL)",
|
|
78
|
+
],
|
|
79
|
+
[
|
|
80
|
+
"shadow50",
|
|
81
|
+
"var(--fibery-color-shadow50)",
|
|
82
|
+
],
|
|
83
|
+
[
|
|
84
|
+
"shadow100",
|
|
85
|
+
"var(--fibery-color-shadow100)",
|
|
86
|
+
],
|
|
87
|
+
[
|
|
88
|
+
"shadow200",
|
|
89
|
+
"var(--fibery-color-shadow200)",
|
|
90
|
+
],
|
|
91
|
+
[
|
|
92
|
+
"shadow300",
|
|
93
|
+
"var(--fibery-color-shadow300)",
|
|
94
|
+
],
|
|
95
|
+
[
|
|
96
|
+
"shadow400",
|
|
97
|
+
"var(--fibery-color-shadow400)",
|
|
98
|
+
],
|
|
99
|
+
[
|
|
100
|
+
"shadow500",
|
|
101
|
+
"var(--fibery-color-shadow500)",
|
|
102
|
+
],
|
|
103
|
+
[
|
|
104
|
+
"shadow600",
|
|
105
|
+
"var(--fibery-color-shadow600)",
|
|
106
|
+
],
|
|
107
|
+
[
|
|
108
|
+
"actionMenuShadow",
|
|
109
|
+
"var(--fibery-color-actionMenuShadow)",
|
|
110
|
+
],
|
|
111
|
+
[
|
|
112
|
+
"shadowPopup",
|
|
113
|
+
"var(--fibery-color-shadowPopup)",
|
|
114
|
+
],
|
|
115
|
+
[
|
|
116
|
+
"shadowSidebar",
|
|
117
|
+
"var(--fibery-color-shadowSidebar)",
|
|
118
|
+
],
|
|
119
|
+
[
|
|
120
|
+
"primaryBlue",
|
|
121
|
+
"var(--fibery-color-primaryBlue)",
|
|
122
|
+
],
|
|
123
|
+
[
|
|
124
|
+
"whiteColor",
|
|
125
|
+
"var(--fibery-color-whiteColor)",
|
|
126
|
+
],
|
|
127
|
+
[
|
|
128
|
+
"blackColor",
|
|
129
|
+
"var(--fibery-color-blackColor)",
|
|
130
|
+
],
|
|
131
|
+
[
|
|
132
|
+
"mainBg",
|
|
133
|
+
"var(--fibery-color-mainBg)",
|
|
134
|
+
],
|
|
135
|
+
[
|
|
136
|
+
"panelBg",
|
|
137
|
+
"var(--fibery-color-panelBg)",
|
|
138
|
+
],
|
|
139
|
+
[
|
|
140
|
+
"panelContentBg",
|
|
141
|
+
"var(--fibery-color-panelContentBg)",
|
|
142
|
+
],
|
|
143
|
+
[
|
|
144
|
+
"colorBgRelationContainer",
|
|
145
|
+
"var(--fibery-color-colorBgRelationContainer)",
|
|
146
|
+
],
|
|
147
|
+
[
|
|
148
|
+
"colorAI",
|
|
149
|
+
"var(--fibery-color-colorAI)",
|
|
150
|
+
],
|
|
151
|
+
[
|
|
152
|
+
"colorBgAI",
|
|
153
|
+
"var(--fibery-color-colorBgAI)",
|
|
154
|
+
],
|
|
155
|
+
[
|
|
156
|
+
"colorSubtleBgAI",
|
|
157
|
+
"var(--fibery-color-colorSubtleBgAI)",
|
|
158
|
+
],
|
|
159
|
+
[
|
|
160
|
+
"colorBgAIFloatingLauncher",
|
|
161
|
+
"var(--fibery-color-colorBgAIFloatingLauncher)",
|
|
162
|
+
],
|
|
163
|
+
[
|
|
164
|
+
"colorBgAIFloatingPanelContent",
|
|
165
|
+
"var(--fibery-color-colorBgAIFloatingPanelContent)",
|
|
166
|
+
],
|
|
167
|
+
[
|
|
168
|
+
"colorBgAISidebarContent",
|
|
169
|
+
"var(--fibery-color-colorBgAISidebarContent)",
|
|
170
|
+
],
|
|
171
|
+
[
|
|
172
|
+
"pageContentBg",
|
|
173
|
+
"var(--fibery-color-pageContentBg)",
|
|
174
|
+
],
|
|
175
|
+
[
|
|
176
|
+
"colorBgPopup",
|
|
177
|
+
"var(--fibery-color-colorBgPopup)",
|
|
178
|
+
],
|
|
179
|
+
[
|
|
180
|
+
"menuBg",
|
|
181
|
+
"var(--fibery-color-menuBg)",
|
|
182
|
+
],
|
|
183
|
+
[
|
|
184
|
+
"menuTextColor",
|
|
185
|
+
"var(--fibery-color-menuTextColor)",
|
|
186
|
+
],
|
|
187
|
+
[
|
|
188
|
+
"menuItemHoverColor",
|
|
189
|
+
"var(--fibery-color-menuItemHoverColor)",
|
|
190
|
+
],
|
|
191
|
+
[
|
|
192
|
+
"menuSelectedTextColor",
|
|
193
|
+
"var(--fibery-color-menuSelectedTextColor)",
|
|
194
|
+
],
|
|
195
|
+
[
|
|
196
|
+
"menuIconColor",
|
|
197
|
+
"var(--fibery-color-menuIconColor)",
|
|
198
|
+
],
|
|
199
|
+
[
|
|
200
|
+
"textColor",
|
|
201
|
+
"var(--fibery-color-textColor)",
|
|
202
|
+
],
|
|
203
|
+
[
|
|
204
|
+
"textSelectionColor",
|
|
205
|
+
"var(--fibery-color-textSelectionColor)",
|
|
206
|
+
],
|
|
207
|
+
[
|
|
208
|
+
"accentTextColor",
|
|
209
|
+
"var(--fibery-color-accentTextColor)",
|
|
210
|
+
],
|
|
211
|
+
[
|
|
212
|
+
"disabledTextColor",
|
|
213
|
+
"var(--fibery-color-disabledTextColor)",
|
|
214
|
+
],
|
|
215
|
+
[
|
|
216
|
+
"inversedTextColor",
|
|
217
|
+
"var(--fibery-color-inversedTextColor)",
|
|
218
|
+
],
|
|
219
|
+
[
|
|
220
|
+
"colorTextSecondary",
|
|
221
|
+
"var(--fibery-color-colorTextSecondary)",
|
|
222
|
+
],
|
|
223
|
+
[
|
|
224
|
+
"linkColor",
|
|
225
|
+
"var(--fibery-color-linkColor)",
|
|
226
|
+
],
|
|
227
|
+
[
|
|
228
|
+
"linkBorder",
|
|
229
|
+
"var(--fibery-color-linkBorder)",
|
|
230
|
+
],
|
|
231
|
+
[
|
|
232
|
+
"linkHoverColor",
|
|
233
|
+
"var(--fibery-color-linkHoverColor)",
|
|
234
|
+
],
|
|
235
|
+
[
|
|
236
|
+
"linkBorderHover",
|
|
237
|
+
"var(--fibery-color-linkBorderHover)",
|
|
238
|
+
],
|
|
239
|
+
[
|
|
240
|
+
"codeColor",
|
|
241
|
+
"var(--fibery-color-codeColor)",
|
|
242
|
+
],
|
|
243
|
+
[
|
|
244
|
+
"codeBgColor",
|
|
245
|
+
"var(--fibery-color-codeBgColor)",
|
|
246
|
+
],
|
|
247
|
+
[
|
|
248
|
+
"codeBlockBgColor",
|
|
249
|
+
"var(--fibery-color-codeBlockBgColor)",
|
|
250
|
+
],
|
|
251
|
+
[
|
|
252
|
+
"addedDiffTextColor",
|
|
253
|
+
"var(--fibery-color-addedDiffTextColor)",
|
|
254
|
+
],
|
|
255
|
+
[
|
|
256
|
+
"removedDiffTextColor",
|
|
257
|
+
"var(--fibery-color-removedDiffTextColor)",
|
|
258
|
+
],
|
|
259
|
+
[
|
|
260
|
+
"entityNodeColor",
|
|
261
|
+
"var(--fibery-color-entityNodeColor)",
|
|
262
|
+
],
|
|
263
|
+
[
|
|
264
|
+
"entityNodeBorder",
|
|
265
|
+
"var(--fibery-color-entityNodeBorder)",
|
|
266
|
+
],
|
|
267
|
+
[
|
|
268
|
+
"entityNodeHoverColor",
|
|
269
|
+
"var(--fibery-color-entityNodeHoverColor)",
|
|
270
|
+
],
|
|
271
|
+
[
|
|
272
|
+
"entityNodeBorderHover",
|
|
273
|
+
"var(--fibery-color-entityNodeBorderHover)",
|
|
274
|
+
],
|
|
275
|
+
[
|
|
276
|
+
"entityNodeBgColor",
|
|
277
|
+
"var(--fibery-color-entityNodeBgColor)",
|
|
278
|
+
],
|
|
279
|
+
[
|
|
280
|
+
"shortcutTextColor",
|
|
281
|
+
"var(--fibery-color-shortcutTextColor)",
|
|
282
|
+
],
|
|
283
|
+
[
|
|
284
|
+
"shortcutBorder",
|
|
285
|
+
"var(--fibery-color-shortcutBorder)",
|
|
286
|
+
],
|
|
287
|
+
[
|
|
288
|
+
"shortcutBorderColor",
|
|
289
|
+
"var(--fibery-color-shortcutBorderColor)",
|
|
290
|
+
],
|
|
291
|
+
[
|
|
292
|
+
"inputBgColor",
|
|
293
|
+
"var(--fibery-color-inputBgColor)",
|
|
294
|
+
],
|
|
295
|
+
[
|
|
296
|
+
"inputDisabledBgColor",
|
|
297
|
+
"var(--fibery-color-inputDisabledBgColor)",
|
|
298
|
+
],
|
|
299
|
+
[
|
|
300
|
+
"inputDisabledBorderColor",
|
|
301
|
+
"var(--fibery-color-inputDisabledBorderColor)",
|
|
302
|
+
],
|
|
303
|
+
[
|
|
304
|
+
"inputCopyBgColor",
|
|
305
|
+
"var(--fibery-color-inputCopyBgColor)",
|
|
306
|
+
],
|
|
307
|
+
[
|
|
308
|
+
"inputBorderColor",
|
|
309
|
+
"var(--fibery-color-inputBorderColor)",
|
|
310
|
+
],
|
|
311
|
+
[
|
|
312
|
+
"inputBorderHoverColor",
|
|
313
|
+
"var(--fibery-color-inputBorderHoverColor)",
|
|
314
|
+
],
|
|
315
|
+
[
|
|
316
|
+
"inputBorderFocusColor",
|
|
317
|
+
"var(--fibery-color-inputBorderFocusColor)",
|
|
318
|
+
],
|
|
319
|
+
[
|
|
320
|
+
"inputBorderBlendMode",
|
|
321
|
+
"var(--fibery-color-inputBorderBlendMode)",
|
|
322
|
+
],
|
|
323
|
+
[
|
|
324
|
+
"inputPlaceholderTextColor",
|
|
325
|
+
"var(--fibery-color-inputPlaceholderTextColor)",
|
|
326
|
+
],
|
|
327
|
+
[
|
|
328
|
+
"inputErrorBorderColor",
|
|
329
|
+
"var(--fibery-color-inputErrorBorderColor)",
|
|
330
|
+
],
|
|
331
|
+
[
|
|
332
|
+
"inputErrorBorderHoverColor",
|
|
333
|
+
"var(--fibery-color-inputErrorBorderHoverColor)",
|
|
334
|
+
],
|
|
335
|
+
[
|
|
336
|
+
"inputErrorBorderFocusColor",
|
|
337
|
+
"var(--fibery-color-inputErrorBorderFocusColor)",
|
|
338
|
+
],
|
|
339
|
+
[
|
|
340
|
+
"inputErrorBorderFocusShadow",
|
|
341
|
+
"var(--fibery-color-inputErrorBorderFocusShadow)",
|
|
342
|
+
],
|
|
343
|
+
[
|
|
344
|
+
"buttonPrimaryColor",
|
|
345
|
+
"var(--fibery-color-buttonPrimaryColor)",
|
|
346
|
+
],
|
|
347
|
+
[
|
|
348
|
+
"buttonColor",
|
|
349
|
+
"var(--fibery-color-buttonColor)",
|
|
350
|
+
],
|
|
351
|
+
[
|
|
352
|
+
"buttonPrimaryTextColor",
|
|
353
|
+
"var(--fibery-color-buttonPrimaryTextColor)",
|
|
354
|
+
],
|
|
355
|
+
[
|
|
356
|
+
"checkboxColor",
|
|
357
|
+
"var(--fibery-color-checkboxColor)",
|
|
358
|
+
],
|
|
359
|
+
[
|
|
360
|
+
"colorBorderBlockQuote",
|
|
361
|
+
"var(--fibery-color-colorBorderBlockQuote)",
|
|
362
|
+
],
|
|
363
|
+
[
|
|
364
|
+
"colorBgActionsMenu",
|
|
365
|
+
"var(--fibery-color-colorBgActionsMenu)",
|
|
366
|
+
],
|
|
367
|
+
[
|
|
368
|
+
"colorBgActionsMenuItemHover",
|
|
369
|
+
"var(--fibery-color-colorBgActionsMenuItemHover)",
|
|
370
|
+
],
|
|
371
|
+
[
|
|
372
|
+
"colorBgActionsMenuItemSelected",
|
|
373
|
+
"var(--fibery-color-colorBgActionsMenuItemSelected)",
|
|
374
|
+
],
|
|
375
|
+
[
|
|
376
|
+
"colorBgActionsMenuItemSelectedHover",
|
|
377
|
+
"var(--fibery-color-colorBgActionsMenuItemSelectedHover)",
|
|
378
|
+
],
|
|
379
|
+
[
|
|
380
|
+
"colorBgActionsMenuItemDangerHover",
|
|
381
|
+
"var(--fibery-color-colorBgActionsMenuItemDangerHover)",
|
|
382
|
+
],
|
|
383
|
+
[
|
|
384
|
+
"colorBgActionsMenuItemDangerActive",
|
|
385
|
+
"var(--fibery-color-colorBgActionsMenuItemDangerActive)",
|
|
386
|
+
],
|
|
387
|
+
[
|
|
388
|
+
"actionMenuBg",
|
|
389
|
+
"var(--fibery-color-actionMenuBg)",
|
|
390
|
+
],
|
|
391
|
+
[
|
|
392
|
+
"actionMenuInnerBg",
|
|
393
|
+
"var(--fibery-color-actionMenuInnerBg)",
|
|
394
|
+
],
|
|
395
|
+
[
|
|
396
|
+
"actionMenuHover",
|
|
397
|
+
"var(--fibery-color-actionMenuHover)",
|
|
398
|
+
],
|
|
399
|
+
[
|
|
400
|
+
"actionMenuInnerHover",
|
|
401
|
+
"var(--fibery-color-actionMenuInnerHover)",
|
|
402
|
+
],
|
|
403
|
+
[
|
|
404
|
+
"actionMenuButtonColor",
|
|
405
|
+
"var(--fibery-color-actionMenuButtonColor)",
|
|
406
|
+
],
|
|
407
|
+
[
|
|
408
|
+
"actionMenuButtonHoverColor",
|
|
409
|
+
"var(--fibery-color-actionMenuButtonHoverColor)",
|
|
410
|
+
],
|
|
411
|
+
[
|
|
412
|
+
"actionMenuButtonShadow",
|
|
413
|
+
"var(--fibery-color-actionMenuButtonShadow)",
|
|
414
|
+
],
|
|
415
|
+
[
|
|
416
|
+
"actionMenuSeparatorColor",
|
|
417
|
+
"var(--fibery-color-actionMenuSeparatorColor)",
|
|
418
|
+
],
|
|
419
|
+
[
|
|
420
|
+
"separatorColor",
|
|
421
|
+
"var(--fibery-color-separatorColor)",
|
|
422
|
+
],
|
|
423
|
+
[
|
|
424
|
+
"separatorColorDimmed",
|
|
425
|
+
"var(--fibery-color-separatorColorDimmed)",
|
|
426
|
+
],
|
|
427
|
+
[
|
|
428
|
+
"separatorBreadcrumbsColor",
|
|
429
|
+
"var(--fibery-color-separatorBreadcrumbsColor)",
|
|
430
|
+
],
|
|
431
|
+
[
|
|
432
|
+
"iconColor",
|
|
433
|
+
"var(--fibery-color-iconColor)",
|
|
434
|
+
],
|
|
435
|
+
[
|
|
436
|
+
"appIconColor",
|
|
437
|
+
"var(--fibery-color-appIconColor)",
|
|
438
|
+
],
|
|
439
|
+
[
|
|
440
|
+
"appIconBgColor",
|
|
441
|
+
"var(--fibery-color-appIconBgColor)",
|
|
442
|
+
],
|
|
443
|
+
[
|
|
444
|
+
"mentionBgColor",
|
|
445
|
+
"var(--fibery-color-mentionBgColor)",
|
|
446
|
+
],
|
|
447
|
+
[
|
|
448
|
+
"colorBgSelectMenu",
|
|
449
|
+
"var(--fibery-color-colorBgSelectMenu)",
|
|
450
|
+
],
|
|
451
|
+
[
|
|
452
|
+
"shadowSelectMenu",
|
|
453
|
+
"var(--fibery-color-shadowSelectMenu)",
|
|
454
|
+
],
|
|
455
|
+
[
|
|
456
|
+
"colorBgListItemGeneral",
|
|
457
|
+
"var(--fibery-color-colorBgListItemGeneral)",
|
|
458
|
+
],
|
|
459
|
+
[
|
|
460
|
+
"colorBgListItemGeneralHover",
|
|
461
|
+
"var(--fibery-color-colorBgListItemGeneralHover)",
|
|
462
|
+
],
|
|
463
|
+
[
|
|
464
|
+
"colorBgListItemGeneralFocus",
|
|
465
|
+
"var(--fibery-color-colorBgListItemGeneralFocus)",
|
|
466
|
+
],
|
|
467
|
+
[
|
|
468
|
+
"colorBgListItemGeneralSelected",
|
|
469
|
+
"var(--fibery-color-colorBgListItemGeneralSelected)",
|
|
470
|
+
],
|
|
471
|
+
[
|
|
472
|
+
"colorBgListItemGeneralSelectedHover",
|
|
473
|
+
"var(--fibery-color-colorBgListItemGeneralSelectedHover)",
|
|
474
|
+
],
|
|
475
|
+
[
|
|
476
|
+
"colorBgListItemGeneralSelectedFocus",
|
|
477
|
+
"var(--fibery-color-colorBgListItemGeneralSelectedFocus)",
|
|
478
|
+
],
|
|
479
|
+
[
|
|
480
|
+
"colorBgListItemGeneralDisabled",
|
|
481
|
+
"var(--fibery-color-colorBgListItemGeneralDisabled)",
|
|
482
|
+
],
|
|
483
|
+
[
|
|
484
|
+
"colorTextListItemGeneralDisabled",
|
|
485
|
+
"var(--fibery-color-colorTextListItemGeneralDisabled)",
|
|
486
|
+
],
|
|
487
|
+
[
|
|
488
|
+
"colorBgListItemGeneralSelectedDisabled",
|
|
489
|
+
"var(--fibery-color-colorBgListItemGeneralSelectedDisabled)",
|
|
490
|
+
],
|
|
491
|
+
[
|
|
492
|
+
"opacityListItemGeneralDisabled",
|
|
493
|
+
"var(--fibery-color-opacityListItemGeneralDisabled)",
|
|
494
|
+
],
|
|
495
|
+
[
|
|
496
|
+
"colorBgSearchRowHover",
|
|
497
|
+
"var(--fibery-color-colorBgSearchRowHover)",
|
|
498
|
+
],
|
|
499
|
+
[
|
|
500
|
+
"colorBgSearchRowCreateHover",
|
|
501
|
+
"var(--fibery-color-colorBgSearchRowCreateHover)",
|
|
502
|
+
],
|
|
503
|
+
[
|
|
504
|
+
"opacitySearchItemDone",
|
|
505
|
+
"var(--fibery-color-opacitySearchItemDone)",
|
|
506
|
+
],
|
|
507
|
+
[
|
|
508
|
+
"colorBgEntityBoxDefault",
|
|
509
|
+
"var(--fibery-color-colorBgEntityBoxDefault)",
|
|
510
|
+
],
|
|
511
|
+
[
|
|
512
|
+
"shadowStrokeEntityBoxDefault",
|
|
513
|
+
"var(--fibery-color-shadowStrokeEntityBoxDefault)",
|
|
514
|
+
],
|
|
515
|
+
[
|
|
516
|
+
"shadowEntityBoxDefault",
|
|
517
|
+
"var(--fibery-color-shadowEntityBoxDefault)",
|
|
518
|
+
],
|
|
519
|
+
[
|
|
520
|
+
"colorBgEntityBoxDefaultHover",
|
|
521
|
+
"var(--fibery-color-colorBgEntityBoxDefaultHover)",
|
|
522
|
+
],
|
|
523
|
+
[
|
|
524
|
+
"shadowEntityBoxDefaultHover",
|
|
525
|
+
"var(--fibery-color-shadowEntityBoxDefaultHover)",
|
|
526
|
+
],
|
|
527
|
+
[
|
|
528
|
+
"colorBgEntityBoxDefaultFocus",
|
|
529
|
+
"var(--fibery-color-colorBgEntityBoxDefaultFocus)",
|
|
530
|
+
],
|
|
531
|
+
[
|
|
532
|
+
"colorOverlayEntityBoxDefaultFocus",
|
|
533
|
+
"var(--fibery-color-colorOverlayEntityBoxDefaultFocus)",
|
|
534
|
+
],
|
|
535
|
+
[
|
|
536
|
+
"shadowStrokeEntityBoxDefaultFocus",
|
|
537
|
+
"var(--fibery-color-shadowStrokeEntityBoxDefaultFocus)",
|
|
538
|
+
],
|
|
539
|
+
[
|
|
540
|
+
"colorBgEntityBoxDefaultFocusHover",
|
|
541
|
+
"var(--fibery-color-colorBgEntityBoxDefaultFocusHover)",
|
|
542
|
+
],
|
|
543
|
+
[
|
|
544
|
+
"colorOverlayEntityBoxDefaultFocusHover",
|
|
545
|
+
"var(--fibery-color-colorOverlayEntityBoxDefaultFocusHover)",
|
|
546
|
+
],
|
|
547
|
+
[
|
|
548
|
+
"shadowStrokeEntityBoxDefaultFocusHover",
|
|
549
|
+
"var(--fibery-color-shadowStrokeEntityBoxDefaultFocusHover)",
|
|
550
|
+
],
|
|
551
|
+
[
|
|
552
|
+
"opacityEntityBoxDefaultDrag",
|
|
553
|
+
"var(--fibery-color-opacityEntityBoxDefaultDrag)",
|
|
554
|
+
],
|
|
555
|
+
[
|
|
556
|
+
"shadowEntityBoxDefaultDrag",
|
|
557
|
+
"var(--fibery-color-shadowEntityBoxDefaultDrag)",
|
|
558
|
+
],
|
|
559
|
+
[
|
|
560
|
+
"colorBgEntityBoxSelected",
|
|
561
|
+
"var(--fibery-color-colorBgEntityBoxSelected)",
|
|
562
|
+
],
|
|
563
|
+
[
|
|
564
|
+
"shadowStrokeEntityBoxSelected",
|
|
565
|
+
"var(--fibery-color-shadowStrokeEntityBoxSelected)",
|
|
566
|
+
],
|
|
567
|
+
[
|
|
568
|
+
"colorBgEntityBoxSelectedHover",
|
|
569
|
+
"var(--fibery-color-colorBgEntityBoxSelectedHover)",
|
|
570
|
+
],
|
|
571
|
+
[
|
|
572
|
+
"shadowStrokeEntityBoxSelectedHover",
|
|
573
|
+
"var(--fibery-color-shadowStrokeEntityBoxSelectedHover)",
|
|
574
|
+
],
|
|
575
|
+
[
|
|
576
|
+
"colorBgEntityBoxSelectedDrag",
|
|
577
|
+
"var(--fibery-color-colorBgEntityBoxSelectedDrag)",
|
|
578
|
+
],
|
|
579
|
+
[
|
|
580
|
+
"shadowStrokeEntityBoxSelectedDrag",
|
|
581
|
+
"var(--fibery-color-shadowStrokeEntityBoxSelectedDrag)",
|
|
582
|
+
],
|
|
583
|
+
[
|
|
584
|
+
"opacityEntityBoxDisabled",
|
|
585
|
+
"var(--fibery-color-opacityEntityBoxDisabled)",
|
|
586
|
+
],
|
|
587
|
+
[
|
|
588
|
+
"opacityEntityBoxDisabledHover",
|
|
589
|
+
"var(--fibery-color-opacityEntityBoxDisabledHover)",
|
|
590
|
+
],
|
|
591
|
+
[
|
|
592
|
+
"opacityEntityBoxDisabledFocus",
|
|
593
|
+
"var(--fibery-color-opacityEntityBoxDisabledFocus)",
|
|
594
|
+
],
|
|
595
|
+
[
|
|
596
|
+
"opacityEntityBoxDisabledDrag",
|
|
597
|
+
"var(--fibery-color-opacityEntityBoxDisabledDrag)",
|
|
598
|
+
],
|
|
599
|
+
[
|
|
600
|
+
"entityCardBgColor",
|
|
601
|
+
"var(--fibery-color-entityCardBgColor)",
|
|
602
|
+
],
|
|
603
|
+
[
|
|
604
|
+
"entityCardSelectedColor",
|
|
605
|
+
"var(--fibery-color-entityCardSelectedColor)",
|
|
606
|
+
],
|
|
607
|
+
[
|
|
608
|
+
"entityCardHoverColor",
|
|
609
|
+
"var(--fibery-color-entityCardHoverColor)",
|
|
610
|
+
],
|
|
611
|
+
[
|
|
612
|
+
"entityCardDoneColor",
|
|
613
|
+
"var(--fibery-color-entityCardDoneColor)",
|
|
614
|
+
],
|
|
615
|
+
[
|
|
616
|
+
"entityCardShadow",
|
|
617
|
+
"var(--fibery-color-entityCardShadow)",
|
|
618
|
+
],
|
|
619
|
+
[
|
|
620
|
+
"entityCardShadowHover",
|
|
621
|
+
"var(--fibery-color-entityCardShadowHover)",
|
|
622
|
+
],
|
|
623
|
+
[
|
|
624
|
+
"colorBgSegmentedControl",
|
|
625
|
+
"var(--fibery-color-colorBgSegmentedControl)",
|
|
626
|
+
],
|
|
627
|
+
[
|
|
628
|
+
"colorBgMenuHeaderAvatar",
|
|
629
|
+
"var(--fibery-color-colorBgMenuHeaderAvatar)",
|
|
630
|
+
],
|
|
631
|
+
[
|
|
632
|
+
"shadowMenuHeaderAvatar",
|
|
633
|
+
"var(--fibery-color-shadowMenuHeaderAvatar)",
|
|
634
|
+
],
|
|
635
|
+
[
|
|
636
|
+
"opacityMenuItemDragged",
|
|
637
|
+
"var(--fibery-color-opacityMenuItemDragged)",
|
|
638
|
+
],
|
|
639
|
+
[
|
|
640
|
+
"colorBgMenuItemSelectedDragged",
|
|
641
|
+
"var(--fibery-color-colorBgMenuItemSelectedDragged)",
|
|
642
|
+
],
|
|
643
|
+
[
|
|
644
|
+
"colorTextMenuItem",
|
|
645
|
+
"var(--fibery-color-colorTextMenuItem)",
|
|
646
|
+
],
|
|
647
|
+
[
|
|
648
|
+
"colorBgMenuItem",
|
|
649
|
+
"var(--fibery-color-colorBgMenuItem)",
|
|
650
|
+
],
|
|
651
|
+
[
|
|
652
|
+
"colorBgMenuItemHover",
|
|
653
|
+
"var(--fibery-color-colorBgMenuItemHover)",
|
|
654
|
+
],
|
|
655
|
+
[
|
|
656
|
+
"colorBgMenuItemFocus",
|
|
657
|
+
"var(--fibery-color-colorBgMenuItemFocus)",
|
|
658
|
+
],
|
|
659
|
+
[
|
|
660
|
+
"colorBgMenuItemSelected",
|
|
661
|
+
"var(--fibery-color-colorBgMenuItemSelected)",
|
|
662
|
+
],
|
|
663
|
+
[
|
|
664
|
+
"colorBgMenuItemSelectedHover",
|
|
665
|
+
"var(--fibery-color-colorBgMenuItemSelectedHover)",
|
|
666
|
+
],
|
|
667
|
+
[
|
|
668
|
+
"colorBgPinnedFieldsLabel",
|
|
669
|
+
"var(--fibery-color-colorBgPinnedFieldsLabel)",
|
|
670
|
+
],
|
|
671
|
+
[
|
|
672
|
+
"colorBgObjectEditorSeparator",
|
|
673
|
+
"var(--fibery-color-colorBgObjectEditorSeparator)",
|
|
674
|
+
],
|
|
675
|
+
[
|
|
676
|
+
"colorBgMenuItemSelectedFocused",
|
|
677
|
+
"var(--fibery-color-colorBgMenuItemSelectedFocused)",
|
|
678
|
+
],
|
|
679
|
+
[
|
|
680
|
+
"colorBgFieldEditorContainer",
|
|
681
|
+
"var(--fibery-color-colorBgFieldEditorContainer)",
|
|
682
|
+
],
|
|
683
|
+
[
|
|
684
|
+
"colorBgFieldEditorLinkEqualSign",
|
|
685
|
+
"var(--fibery-color-colorBgFieldEditorLinkEqualSign)",
|
|
686
|
+
],
|
|
687
|
+
[
|
|
688
|
+
"allowedDropColor",
|
|
689
|
+
"var(--fibery-color-allowedDropColor)",
|
|
690
|
+
],
|
|
691
|
+
[
|
|
692
|
+
"relationViewBgColor",
|
|
693
|
+
"var(--fibery-color-relationViewBgColor)",
|
|
694
|
+
],
|
|
695
|
+
[
|
|
696
|
+
"mySpaceIconColor",
|
|
697
|
+
"var(--fibery-color-mySpaceIconColor)",
|
|
698
|
+
],
|
|
699
|
+
[
|
|
700
|
+
"mySpaceIconBg",
|
|
701
|
+
"var(--fibery-color-mySpaceIconBg)",
|
|
702
|
+
],
|
|
703
|
+
[
|
|
704
|
+
"privateIconColor",
|
|
705
|
+
"var(--fibery-color-privateIconColor)",
|
|
706
|
+
],
|
|
707
|
+
[
|
|
708
|
+
"privateIconBg",
|
|
709
|
+
"var(--fibery-color-privateIconBg)",
|
|
710
|
+
],
|
|
711
|
+
[
|
|
712
|
+
"favoritesIconColor",
|
|
713
|
+
"var(--fibery-color-favoritesIconColor)",
|
|
714
|
+
],
|
|
715
|
+
[
|
|
716
|
+
"favoritesIconBg",
|
|
717
|
+
"var(--fibery-color-favoritesIconBg)",
|
|
718
|
+
],
|
|
719
|
+
[
|
|
720
|
+
"unitBg",
|
|
721
|
+
"var(--fibery-color-unitBg)",
|
|
722
|
+
],
|
|
723
|
+
[
|
|
724
|
+
"unitBgHover",
|
|
725
|
+
"var(--fibery-color-unitBgHover)",
|
|
726
|
+
],
|
|
727
|
+
[
|
|
728
|
+
"colorBgBadgeNeutral",
|
|
729
|
+
"var(--fibery-color-colorBgBadgeNeutral)",
|
|
730
|
+
],
|
|
731
|
+
[
|
|
732
|
+
"colorBgBadgeSuccess",
|
|
733
|
+
"var(--fibery-color-colorBgBadgeSuccess)",
|
|
734
|
+
],
|
|
735
|
+
[
|
|
736
|
+
"colorBgBadgeWarning",
|
|
737
|
+
"var(--fibery-color-colorBgBadgeWarning)",
|
|
738
|
+
],
|
|
739
|
+
[
|
|
740
|
+
"colorBgBadgeError",
|
|
741
|
+
"var(--fibery-color-colorBgBadgeError)",
|
|
742
|
+
],
|
|
743
|
+
[
|
|
744
|
+
"colorTextBadgeNeutral",
|
|
745
|
+
"var(--fibery-color-colorTextBadgeNeutral)",
|
|
746
|
+
],
|
|
747
|
+
[
|
|
748
|
+
"colorTextBadgeSuccess",
|
|
749
|
+
"var(--fibery-color-colorTextBadgeSuccess)",
|
|
750
|
+
],
|
|
751
|
+
[
|
|
752
|
+
"colorTextBadgeWarning",
|
|
753
|
+
"var(--fibery-color-colorTextBadgeWarning)",
|
|
754
|
+
],
|
|
755
|
+
[
|
|
756
|
+
"colorTextBadgeError",
|
|
757
|
+
"var(--fibery-color-colorTextBadgeError)",
|
|
758
|
+
],
|
|
759
|
+
[
|
|
760
|
+
"badgeBgColor",
|
|
761
|
+
"var(--fibery-color-badgeBgColor)",
|
|
762
|
+
],
|
|
763
|
+
[
|
|
764
|
+
"tooltipBgColor",
|
|
765
|
+
"var(--fibery-color-tooltipBgColor)",
|
|
766
|
+
],
|
|
767
|
+
[
|
|
768
|
+
"todayMarkerColor",
|
|
769
|
+
"var(--fibery-color-todayMarkerColor)",
|
|
770
|
+
],
|
|
771
|
+
[
|
|
772
|
+
"viewBgOverlayColor",
|
|
773
|
+
"var(--fibery-color-viewBgOverlayColor)",
|
|
774
|
+
],
|
|
775
|
+
[
|
|
776
|
+
"floatEditorMenuBg",
|
|
777
|
+
"var(--fibery-color-floatEditorMenuBg)",
|
|
778
|
+
],
|
|
779
|
+
[
|
|
780
|
+
"floatEditorActiveColor",
|
|
781
|
+
"var(--fibery-color-floatEditorActiveColor)",
|
|
782
|
+
],
|
|
783
|
+
[
|
|
784
|
+
"commentColor",
|
|
785
|
+
"var(--fibery-color-commentColor)",
|
|
786
|
+
],
|
|
787
|
+
[
|
|
788
|
+
"cellBackgroundColor",
|
|
789
|
+
"var(--fibery-color-cellBackgroundColor)",
|
|
790
|
+
],
|
|
791
|
+
[
|
|
792
|
+
"cellBackgroundHoverColor",
|
|
793
|
+
"var(--fibery-color-cellBackgroundHoverColor)",
|
|
794
|
+
],
|
|
795
|
+
[
|
|
796
|
+
"cellBorderColor",
|
|
797
|
+
"var(--fibery-color-cellBorderColor)",
|
|
798
|
+
],
|
|
799
|
+
[
|
|
800
|
+
"cellPinnedBorderColor",
|
|
801
|
+
"var(--fibery-color-cellPinnedBorderColor)",
|
|
802
|
+
],
|
|
803
|
+
[
|
|
804
|
+
"tableRowWarningColor",
|
|
805
|
+
"var(--fibery-color-tableRowWarningColor)",
|
|
806
|
+
],
|
|
807
|
+
[
|
|
808
|
+
"errorBgColor",
|
|
809
|
+
"var(--fibery-color-errorBgColor)",
|
|
810
|
+
],
|
|
811
|
+
[
|
|
812
|
+
"errorTextColor",
|
|
813
|
+
"var(--fibery-color-errorTextColor)",
|
|
814
|
+
],
|
|
815
|
+
[
|
|
816
|
+
"errorButtonColor",
|
|
817
|
+
"var(--fibery-color-errorButtonColor)",
|
|
818
|
+
],
|
|
819
|
+
[
|
|
820
|
+
"warningBgColor",
|
|
821
|
+
"var(--fibery-color-warningBgColor)",
|
|
822
|
+
],
|
|
823
|
+
[
|
|
824
|
+
"warningButtonColor",
|
|
825
|
+
"var(--fibery-color-warningButtonColor)",
|
|
826
|
+
],
|
|
827
|
+
[
|
|
828
|
+
"infoBox",
|
|
829
|
+
"var(--fibery-color-infoBox)",
|
|
830
|
+
],
|
|
831
|
+
[
|
|
832
|
+
"appCardBgColor",
|
|
833
|
+
"var(--fibery-color-appCardBgColor)",
|
|
834
|
+
],
|
|
835
|
+
[
|
|
836
|
+
"appCardHoverColor",
|
|
837
|
+
"var(--fibery-color-appCardHoverColor)",
|
|
838
|
+
],
|
|
839
|
+
[
|
|
840
|
+
"modalBg",
|
|
841
|
+
"var(--fibery-color-modalBg)",
|
|
842
|
+
],
|
|
843
|
+
[
|
|
844
|
+
"modalContentBg",
|
|
845
|
+
"var(--fibery-color-modalContentBg)",
|
|
846
|
+
],
|
|
847
|
+
[
|
|
848
|
+
"progressIconBg",
|
|
849
|
+
"var(--fibery-color-progressIconBg)",
|
|
850
|
+
],
|
|
851
|
+
[
|
|
852
|
+
"progressIconFill",
|
|
853
|
+
"var(--fibery-color-progressIconFill)",
|
|
854
|
+
],
|
|
855
|
+
[
|
|
856
|
+
"formBg",
|
|
857
|
+
"var(--fibery-color-formBg)",
|
|
858
|
+
],
|
|
859
|
+
[
|
|
860
|
+
"formHeaderShadow",
|
|
861
|
+
"var(--fibery-color-formHeaderShadow)",
|
|
862
|
+
],
|
|
863
|
+
[
|
|
864
|
+
"formEditorFieldBg",
|
|
865
|
+
"var(--fibery-color-formEditorFieldBg)",
|
|
866
|
+
],
|
|
867
|
+
[
|
|
868
|
+
"filterGroup1Bg",
|
|
869
|
+
"var(--fibery-color-filterGroup1Bg)",
|
|
870
|
+
],
|
|
871
|
+
[
|
|
872
|
+
"filterGroup2Bg",
|
|
873
|
+
"var(--fibery-color-filterGroup2Bg)",
|
|
874
|
+
],
|
|
875
|
+
[
|
|
876
|
+
"filterGroupBorder",
|
|
877
|
+
"var(--fibery-color-filterGroupBorder)",
|
|
878
|
+
],
|
|
879
|
+
[
|
|
880
|
+
"colorBgNotificationHover",
|
|
881
|
+
"var(--fibery-color-colorBgNotificationHover)",
|
|
882
|
+
],
|
|
883
|
+
[
|
|
884
|
+
"colorBgNotificationSelected",
|
|
885
|
+
"var(--fibery-color-colorBgNotificationSelected)",
|
|
886
|
+
],
|
|
887
|
+
[
|
|
888
|
+
"colorBgNotificationSelectedHover",
|
|
889
|
+
"var(--fibery-color-colorBgNotificationSelectedHover)",
|
|
890
|
+
],
|
|
891
|
+
[
|
|
892
|
+
"disabledInversedTextColor",
|
|
893
|
+
"var(--fibery-color-disabledInversedTextColor)",
|
|
894
|
+
],
|
|
895
|
+
[
|
|
896
|
+
"success",
|
|
897
|
+
"var(--fibery-color-success)",
|
|
898
|
+
],
|
|
899
|
+
[
|
|
900
|
+
"danger",
|
|
901
|
+
"var(--fibery-color-danger)",
|
|
902
|
+
],
|
|
903
|
+
[
|
|
904
|
+
"active",
|
|
905
|
+
"var(--fibery-color-active)",
|
|
906
|
+
],
|
|
907
|
+
[
|
|
908
|
+
"warning",
|
|
909
|
+
"var(--fibery-color-warning)",
|
|
910
|
+
],
|
|
911
|
+
[
|
|
912
|
+
"cardBg",
|
|
913
|
+
"var(--fibery-color-cardBg)",
|
|
914
|
+
],
|
|
915
|
+
[
|
|
916
|
+
"selectedImageBorder",
|
|
917
|
+
"var(--fibery-color-selectedImageBorder)",
|
|
918
|
+
],
|
|
919
|
+
[
|
|
920
|
+
"transparent",
|
|
921
|
+
"var(--fibery-color-transparent)",
|
|
922
|
+
],
|
|
923
|
+
[
|
|
924
|
+
"shades",
|
|
925
|
+
{
|
|
926
|
+
"opacity0": "var(--fibery-shades-opacity0)",
|
|
927
|
+
"opacity10": "var(--fibery-shades-opacity10)",
|
|
928
|
+
"opacity100": "var(--fibery-shades-opacity100)",
|
|
929
|
+
"opacity15": "var(--fibery-shades-opacity15)",
|
|
930
|
+
"opacity20": "var(--fibery-shades-opacity20)",
|
|
931
|
+
"opacity25": "var(--fibery-shades-opacity25)",
|
|
932
|
+
"opacity30": "var(--fibery-shades-opacity30)",
|
|
933
|
+
"opacity35": "var(--fibery-shades-opacity35)",
|
|
934
|
+
"opacity40": "var(--fibery-shades-opacity40)",
|
|
935
|
+
"opacity45": "var(--fibery-shades-opacity45)",
|
|
936
|
+
"opacity5": "var(--fibery-shades-opacity5)",
|
|
937
|
+
"opacity50": "var(--fibery-shades-opacity50)",
|
|
938
|
+
"opacity55": "var(--fibery-shades-opacity55)",
|
|
939
|
+
"opacity60": "var(--fibery-shades-opacity60)",
|
|
940
|
+
"opacity65": "var(--fibery-shades-opacity65)",
|
|
941
|
+
"opacity70": "var(--fibery-shades-opacity70)",
|
|
942
|
+
"opacity75": "var(--fibery-shades-opacity75)",
|
|
943
|
+
"opacity80": "var(--fibery-shades-opacity80)",
|
|
944
|
+
"opacity85": "var(--fibery-shades-opacity85)",
|
|
945
|
+
"opacity90": "var(--fibery-shades-opacity90)",
|
|
946
|
+
"opacity95": "var(--fibery-shades-opacity95)",
|
|
947
|
+
},
|
|
948
|
+
],
|
|
949
|
+
[
|
|
950
|
+
"lights",
|
|
951
|
+
{
|
|
952
|
+
"opacity0": "var(--fibery-lights-opacity0)",
|
|
953
|
+
"opacity10": "var(--fibery-lights-opacity10)",
|
|
954
|
+
"opacity100": "var(--fibery-lights-opacity100)",
|
|
955
|
+
"opacity15": "var(--fibery-lights-opacity15)",
|
|
956
|
+
"opacity20": "var(--fibery-lights-opacity20)",
|
|
957
|
+
"opacity25": "var(--fibery-lights-opacity25)",
|
|
958
|
+
"opacity30": "var(--fibery-lights-opacity30)",
|
|
959
|
+
"opacity35": "var(--fibery-lights-opacity35)",
|
|
960
|
+
"opacity40": "var(--fibery-lights-opacity40)",
|
|
961
|
+
"opacity45": "var(--fibery-lights-opacity45)",
|
|
962
|
+
"opacity5": "var(--fibery-lights-opacity5)",
|
|
963
|
+
"opacity50": "var(--fibery-lights-opacity50)",
|
|
964
|
+
"opacity55": "var(--fibery-lights-opacity55)",
|
|
965
|
+
"opacity60": "var(--fibery-lights-opacity60)",
|
|
966
|
+
"opacity65": "var(--fibery-lights-opacity65)",
|
|
967
|
+
"opacity70": "var(--fibery-lights-opacity70)",
|
|
968
|
+
"opacity75": "var(--fibery-lights-opacity75)",
|
|
969
|
+
"opacity80": "var(--fibery-lights-opacity80)",
|
|
970
|
+
"opacity85": "var(--fibery-lights-opacity85)",
|
|
971
|
+
"opacity90": "var(--fibery-lights-opacity90)",
|
|
972
|
+
"opacity95": "var(--fibery-lights-opacity95)",
|
|
973
|
+
},
|
|
974
|
+
],
|
|
975
|
+
[
|
|
976
|
+
"separators",
|
|
977
|
+
{
|
|
978
|
+
"opacity0": "var(--fibery-separator-opacity0)",
|
|
979
|
+
"opacity10": "var(--fibery-separator-opacity10)",
|
|
980
|
+
"opacity100": "var(--fibery-separator-opacity100)",
|
|
981
|
+
"opacity15": "var(--fibery-separator-opacity15)",
|
|
982
|
+
"opacity20": "var(--fibery-separator-opacity20)",
|
|
983
|
+
"opacity25": "var(--fibery-separator-opacity25)",
|
|
984
|
+
"opacity30": "var(--fibery-separator-opacity30)",
|
|
985
|
+
"opacity35": "var(--fibery-separator-opacity35)",
|
|
986
|
+
"opacity40": "var(--fibery-separator-opacity40)",
|
|
987
|
+
"opacity45": "var(--fibery-separator-opacity45)",
|
|
988
|
+
"opacity5": "var(--fibery-separator-opacity5)",
|
|
989
|
+
"opacity50": "var(--fibery-separator-opacity50)",
|
|
990
|
+
"opacity55": "var(--fibery-separator-opacity55)",
|
|
991
|
+
"opacity60": "var(--fibery-separator-opacity60)",
|
|
992
|
+
"opacity65": "var(--fibery-separator-opacity65)",
|
|
993
|
+
"opacity70": "var(--fibery-separator-opacity70)",
|
|
994
|
+
"opacity75": "var(--fibery-separator-opacity75)",
|
|
995
|
+
"opacity80": "var(--fibery-separator-opacity80)",
|
|
996
|
+
"opacity85": "var(--fibery-separator-opacity85)",
|
|
997
|
+
"opacity90": "var(--fibery-separator-opacity90)",
|
|
998
|
+
"opacity95": "var(--fibery-separator-opacity95)",
|
|
999
|
+
},
|
|
1000
|
+
],
|
|
1001
|
+
[
|
|
1002
|
+
"progressBg",
|
|
1003
|
+
"var(--fibery-color-progressBg)",
|
|
1004
|
+
],
|
|
1005
|
+
[
|
|
1006
|
+
"progressText",
|
|
1007
|
+
"var(--fibery-color-progressText)",
|
|
1008
|
+
],
|
|
1009
|
+
[
|
|
1010
|
+
"progressFillBg",
|
|
1011
|
+
"var(--fibery-color-progressFillBg)",
|
|
1012
|
+
],
|
|
1013
|
+
[
|
|
1014
|
+
"progressFillText",
|
|
1015
|
+
"var(--fibery-color-progressFillText)",
|
|
1016
|
+
],
|
|
1017
|
+
[
|
|
1018
|
+
"progressBarFillNeutral",
|
|
1019
|
+
"var(--fibery-color-progressBarFillNeutral)",
|
|
1020
|
+
],
|
|
1021
|
+
[
|
|
1022
|
+
"progressBarFill",
|
|
1023
|
+
"var(--fibery-color-progressBarFill)",
|
|
1024
|
+
],
|
|
1025
|
+
[
|
|
1026
|
+
"progressBarBg",
|
|
1027
|
+
"var(--fibery-color-progressBarBg)",
|
|
1028
|
+
],
|
|
1029
|
+
[
|
|
1030
|
+
"colorPickerSwatchBorder",
|
|
1031
|
+
"var(--fibery-color-colorPickerSwatchBorder)",
|
|
1032
|
+
],
|
|
1033
|
+
[
|
|
1034
|
+
"colorBorderRichTextMedia",
|
|
1035
|
+
"var(--fibery-color-colorBorderRichTextMedia)",
|
|
1036
|
+
],
|
|
1037
|
+
[
|
|
1038
|
+
"richTextTableBorder",
|
|
1039
|
+
"var(--fibery-color-richTextTableBorder)",
|
|
1040
|
+
],
|
|
1041
|
+
[
|
|
1042
|
+
"colorBgDropLine",
|
|
1043
|
+
"var(--fibery-color-colorBgDropLine)",
|
|
1044
|
+
],
|
|
1045
|
+
[
|
|
1046
|
+
"viewBg",
|
|
1047
|
+
"var(--fibery-color-viewBg)",
|
|
1048
|
+
],
|
|
1049
|
+
[
|
|
1050
|
+
"viewSecondaryBg",
|
|
1051
|
+
"var(--fibery-color-viewSecondaryBg)",
|
|
1052
|
+
],
|
|
1053
|
+
[
|
|
1054
|
+
"viewHighlightBg",
|
|
1055
|
+
"var(--fibery-color-viewHighlightBg)",
|
|
1056
|
+
],
|
|
1057
|
+
[
|
|
1058
|
+
"boardBg",
|
|
1059
|
+
"var(--fibery-color-boardBg)",
|
|
1060
|
+
],
|
|
1061
|
+
[
|
|
1062
|
+
"boardBgWithOpacity80",
|
|
1063
|
+
"var(--fibery-color-boardBgWithOpacity80)",
|
|
1064
|
+
],
|
|
1065
|
+
[
|
|
1066
|
+
"boardAxisBgHover",
|
|
1067
|
+
"var(--fibery-color-boardAxisBgHover)",
|
|
1068
|
+
],
|
|
1069
|
+
[
|
|
1070
|
+
"gridHeaderBgColor",
|
|
1071
|
+
"var(--fibery-color-gridHeaderBgColor)",
|
|
1072
|
+
],
|
|
1073
|
+
[
|
|
1074
|
+
"gridHeaderHoverBgColor",
|
|
1075
|
+
"var(--fibery-color-gridHeaderHoverBgColor)",
|
|
1076
|
+
],
|
|
1077
|
+
[
|
|
1078
|
+
"gridHeaderTextColor",
|
|
1079
|
+
"var(--fibery-color-gridHeaderTextColor)",
|
|
1080
|
+
],
|
|
1081
|
+
[
|
|
1082
|
+
"gridCellBgColor",
|
|
1083
|
+
"var(--fibery-color-gridCellBgColor)",
|
|
1084
|
+
],
|
|
1085
|
+
[
|
|
1086
|
+
"gridCellBorderColor",
|
|
1087
|
+
"var(--fibery-color-gridCellBorderColor)",
|
|
1088
|
+
],
|
|
1089
|
+
[
|
|
1090
|
+
"gridDisabledCellBgColor",
|
|
1091
|
+
"var(--fibery-color-gridDisabledCellBgColor)",
|
|
1092
|
+
],
|
|
1093
|
+
[
|
|
1094
|
+
"gridSelectedCellBgColor",
|
|
1095
|
+
"var(--fibery-color-gridSelectedCellBgColor)",
|
|
1096
|
+
],
|
|
1097
|
+
[
|
|
1098
|
+
"gridHighlightedCellBgColor",
|
|
1099
|
+
"var(--fibery-color-gridHighlightedCellBgColor)",
|
|
1100
|
+
],
|
|
1101
|
+
[
|
|
1102
|
+
"gridSelectedCellBorderColor",
|
|
1103
|
+
"var(--fibery-color-gridSelectedCellBorderColor)",
|
|
1104
|
+
],
|
|
1105
|
+
[
|
|
1106
|
+
"gridSelectedPinnedCellBorderColor",
|
|
1107
|
+
"var(--fibery-color-gridSelectedPinnedCellBorderColor)",
|
|
1108
|
+
],
|
|
1109
|
+
[
|
|
1110
|
+
"gridDisabledSelectedCellBgColor",
|
|
1111
|
+
"var(--fibery-color-gridDisabledSelectedCellBgColor)",
|
|
1112
|
+
],
|
|
1113
|
+
[
|
|
1114
|
+
"gridActiveCellBorderColor",
|
|
1115
|
+
"var(--fibery-color-gridActiveCellBorderColor)",
|
|
1116
|
+
],
|
|
1117
|
+
[
|
|
1118
|
+
"timelineEntityHandleColor",
|
|
1119
|
+
"var(--fibery-color-timelineEntityHandleColor)",
|
|
1120
|
+
],
|
|
1121
|
+
[
|
|
1122
|
+
"timelineDependencyHoverBgColor",
|
|
1123
|
+
"var(--fibery-color-timelineDependencyHoverBgColor)",
|
|
1124
|
+
],
|
|
1125
|
+
[
|
|
1126
|
+
"timelineDependencyOverlapBgColor",
|
|
1127
|
+
"var(--fibery-color-timelineDependencyOverlapBgColor)",
|
|
1128
|
+
],
|
|
1129
|
+
[
|
|
1130
|
+
"timelineDependencyOverlapHoverBgColor",
|
|
1131
|
+
"var(--fibery-color-timelineDependencyOverlapHoverBgColor)",
|
|
1132
|
+
],
|
|
1133
|
+
[
|
|
1134
|
+
"timelineCellBgColor",
|
|
1135
|
+
"var(--fibery-color-timelineCellBgColor)",
|
|
1136
|
+
],
|
|
1137
|
+
[
|
|
1138
|
+
"timelineCellWeekendBgColor",
|
|
1139
|
+
"var(--fibery-color-timelineCellWeekendBgColor)",
|
|
1140
|
+
],
|
|
1141
|
+
[
|
|
1142
|
+
"timelineCellTodayBgColor",
|
|
1143
|
+
"var(--fibery-color-timelineCellTodayBgColor)",
|
|
1144
|
+
],
|
|
1145
|
+
[
|
|
1146
|
+
"timelineCreateEntityPlaceholderBgColor",
|
|
1147
|
+
"var(--fibery-color-timelineCreateEntityPlaceholderBgColor)",
|
|
1148
|
+
],
|
|
1149
|
+
[
|
|
1150
|
+
"colorBgButtonSolidAccentDefault",
|
|
1151
|
+
"var(--fibery-color-colorBgButtonSolidAccentDefault)",
|
|
1152
|
+
],
|
|
1153
|
+
[
|
|
1154
|
+
"colorBgButtonSolidAccentHover",
|
|
1155
|
+
"var(--fibery-color-colorBgButtonSolidAccentHover)",
|
|
1156
|
+
],
|
|
1157
|
+
[
|
|
1158
|
+
"colorBgButtonSolidNeutralDefault",
|
|
1159
|
+
"var(--fibery-color-colorBgButtonSolidNeutralDefault)",
|
|
1160
|
+
],
|
|
1161
|
+
[
|
|
1162
|
+
"colorBgButtonSolidNeutralHover",
|
|
1163
|
+
"var(--fibery-color-colorBgButtonSolidNeutralHover)",
|
|
1164
|
+
],
|
|
1165
|
+
[
|
|
1166
|
+
"colorBgButtonSolidDestructiveDefault",
|
|
1167
|
+
"var(--fibery-color-colorBgButtonSolidDestructiveDefault)",
|
|
1168
|
+
],
|
|
1169
|
+
[
|
|
1170
|
+
"colorBgButtonSolidDestructiveHover",
|
|
1171
|
+
"var(--fibery-color-colorBgButtonSolidDestructiveHover)",
|
|
1172
|
+
],
|
|
1173
|
+
[
|
|
1174
|
+
"colorTextButtonSolidAccent",
|
|
1175
|
+
"var(--fibery-color-colorTextButtonSolidAccent)",
|
|
1176
|
+
],
|
|
1177
|
+
[
|
|
1178
|
+
"colorTextButtonSolidAccentActive",
|
|
1179
|
+
"var(--fibery-color-colorTextButtonSolidAccentActive)",
|
|
1180
|
+
],
|
|
1181
|
+
[
|
|
1182
|
+
"colorTextButtonSolidNeutral",
|
|
1183
|
+
"var(--fibery-color-colorTextButtonSolidNeutral)",
|
|
1184
|
+
],
|
|
1185
|
+
[
|
|
1186
|
+
"colorTextButtonSolidNeutralActive",
|
|
1187
|
+
"var(--fibery-color-colorTextButtonSolidNeutralActive)",
|
|
1188
|
+
],
|
|
1189
|
+
[
|
|
1190
|
+
"colorTextButtonSolidDestructive",
|
|
1191
|
+
"var(--fibery-color-colorTextButtonSolidDestructive)",
|
|
1192
|
+
],
|
|
1193
|
+
[
|
|
1194
|
+
"colorTextButtonSolidDestructiveActive",
|
|
1195
|
+
"var(--fibery-color-colorTextButtonSolidDestructiveActive)",
|
|
1196
|
+
],
|
|
1197
|
+
[
|
|
1198
|
+
"colorIconButtonSolidAccent",
|
|
1199
|
+
"var(--fibery-color-colorIconButtonSolidAccent)",
|
|
1200
|
+
],
|
|
1201
|
+
[
|
|
1202
|
+
"colorIconButtonSolidNeutral",
|
|
1203
|
+
"var(--fibery-color-colorIconButtonSolidNeutral)",
|
|
1204
|
+
],
|
|
1205
|
+
[
|
|
1206
|
+
"colorIconButtonSolidDestructive",
|
|
1207
|
+
"var(--fibery-color-colorIconButtonSolidDestructive)",
|
|
1208
|
+
],
|
|
1209
|
+
[
|
|
1210
|
+
"colorBorderButtonOutlineAccentDefault",
|
|
1211
|
+
"var(--fibery-color-colorBorderButtonOutlineAccentDefault)",
|
|
1212
|
+
],
|
|
1213
|
+
[
|
|
1214
|
+
"colorBorderButtonOutlineNeutralDefault",
|
|
1215
|
+
"var(--fibery-color-colorBorderButtonOutlineNeutralDefault)",
|
|
1216
|
+
],
|
|
1217
|
+
[
|
|
1218
|
+
"colorBorderButtonOutlineDestructiveDefault",
|
|
1219
|
+
"var(--fibery-color-colorBorderButtonOutlineDestructiveDefault)",
|
|
1220
|
+
],
|
|
1221
|
+
[
|
|
1222
|
+
"colorBgButtonOutlineAccentDefault",
|
|
1223
|
+
"var(--fibery-color-colorBgButtonOutlineAccentDefault)",
|
|
1224
|
+
],
|
|
1225
|
+
[
|
|
1226
|
+
"colorBgButtonOutlineAccentHover",
|
|
1227
|
+
"var(--fibery-color-colorBgButtonOutlineAccentHover)",
|
|
1228
|
+
],
|
|
1229
|
+
[
|
|
1230
|
+
"colorBgButtonOutlineNeutralDefault",
|
|
1231
|
+
"var(--fibery-color-colorBgButtonOutlineNeutralDefault)",
|
|
1232
|
+
],
|
|
1233
|
+
[
|
|
1234
|
+
"colorBgButtonOutlineNeutralHover",
|
|
1235
|
+
"var(--fibery-color-colorBgButtonOutlineNeutralHover)",
|
|
1236
|
+
],
|
|
1237
|
+
[
|
|
1238
|
+
"colorBgButtonOutlineDestructiveDefault",
|
|
1239
|
+
"var(--fibery-color-colorBgButtonOutlineDestructiveDefault)",
|
|
1240
|
+
],
|
|
1241
|
+
[
|
|
1242
|
+
"colorBgButtonOutlineDestructiveHover",
|
|
1243
|
+
"var(--fibery-color-colorBgButtonOutlineDestructiveHover)",
|
|
1244
|
+
],
|
|
1245
|
+
[
|
|
1246
|
+
"colorTextButtonOutlineAccent",
|
|
1247
|
+
"var(--fibery-color-colorTextButtonOutlineAccent)",
|
|
1248
|
+
],
|
|
1249
|
+
[
|
|
1250
|
+
"colorTextButtonOutlineAccentActive",
|
|
1251
|
+
"var(--fibery-color-colorTextButtonOutlineAccentActive)",
|
|
1252
|
+
],
|
|
1253
|
+
[
|
|
1254
|
+
"colorTextButtonOutlineNeutral",
|
|
1255
|
+
"var(--fibery-color-colorTextButtonOutlineNeutral)",
|
|
1256
|
+
],
|
|
1257
|
+
[
|
|
1258
|
+
"colorTextButtonOutlineNeutralActive",
|
|
1259
|
+
"var(--fibery-color-colorTextButtonOutlineNeutralActive)",
|
|
1260
|
+
],
|
|
1261
|
+
[
|
|
1262
|
+
"colorTextButtonOutlineDestructive",
|
|
1263
|
+
"var(--fibery-color-colorTextButtonOutlineDestructive)",
|
|
1264
|
+
],
|
|
1265
|
+
[
|
|
1266
|
+
"colorTextButtonOutlineDestructiveActive",
|
|
1267
|
+
"var(--fibery-color-colorTextButtonOutlineDestructiveActive)",
|
|
1268
|
+
],
|
|
1269
|
+
[
|
|
1270
|
+
"colorIconButtonOutlineAccent",
|
|
1271
|
+
"var(--fibery-color-colorIconButtonOutlineAccent)",
|
|
1272
|
+
],
|
|
1273
|
+
[
|
|
1274
|
+
"colorIconButtonOutlineNeutral",
|
|
1275
|
+
"var(--fibery-color-colorIconButtonOutlineNeutral)",
|
|
1276
|
+
],
|
|
1277
|
+
[
|
|
1278
|
+
"colorIconButtonOutlineDestructive",
|
|
1279
|
+
"var(--fibery-color-colorIconButtonOutlineDestructive)",
|
|
1280
|
+
],
|
|
1281
|
+
[
|
|
1282
|
+
"colorBgButtonSoftAccentDefault",
|
|
1283
|
+
"var(--fibery-color-colorBgButtonSoftAccentDefault)",
|
|
1284
|
+
],
|
|
1285
|
+
[
|
|
1286
|
+
"colorBgButtonSoftAccentHover",
|
|
1287
|
+
"var(--fibery-color-colorBgButtonSoftAccentHover)",
|
|
1288
|
+
],
|
|
1289
|
+
[
|
|
1290
|
+
"colorBgButtonSoftNeutralDefault",
|
|
1291
|
+
"var(--fibery-color-colorBgButtonSoftNeutralDefault)",
|
|
1292
|
+
],
|
|
1293
|
+
[
|
|
1294
|
+
"colorBgButtonSoftNeutralHover",
|
|
1295
|
+
"var(--fibery-color-colorBgButtonSoftNeutralHover)",
|
|
1296
|
+
],
|
|
1297
|
+
[
|
|
1298
|
+
"colorBgButtonSoftDestructiveDefault",
|
|
1299
|
+
"var(--fibery-color-colorBgButtonSoftDestructiveDefault)",
|
|
1300
|
+
],
|
|
1301
|
+
[
|
|
1302
|
+
"colorBgButtonSoftDestructiveHover",
|
|
1303
|
+
"var(--fibery-color-colorBgButtonSoftDestructiveHover)",
|
|
1304
|
+
],
|
|
1305
|
+
[
|
|
1306
|
+
"colorTextButtonSoftAccent",
|
|
1307
|
+
"var(--fibery-color-colorTextButtonSoftAccent)",
|
|
1308
|
+
],
|
|
1309
|
+
[
|
|
1310
|
+
"colorTextButtonSoftAccentActive",
|
|
1311
|
+
"var(--fibery-color-colorTextButtonSoftAccentActive)",
|
|
1312
|
+
],
|
|
1313
|
+
[
|
|
1314
|
+
"colorTextButtonSoftNeutral",
|
|
1315
|
+
"var(--fibery-color-colorTextButtonSoftNeutral)",
|
|
1316
|
+
],
|
|
1317
|
+
[
|
|
1318
|
+
"colorTextButtonSoftNeutralActive",
|
|
1319
|
+
"var(--fibery-color-colorTextButtonSoftNeutralActive)",
|
|
1320
|
+
],
|
|
1321
|
+
[
|
|
1322
|
+
"colorTextButtonSoftDestructive",
|
|
1323
|
+
"var(--fibery-color-colorTextButtonSoftDestructive)",
|
|
1324
|
+
],
|
|
1325
|
+
[
|
|
1326
|
+
"colorTextButtonSoftDestructiveActive",
|
|
1327
|
+
"var(--fibery-color-colorTextButtonSoftDestructiveActive)",
|
|
1328
|
+
],
|
|
1329
|
+
[
|
|
1330
|
+
"colorIconButtonSoftAccent",
|
|
1331
|
+
"var(--fibery-color-colorIconButtonSoftAccent)",
|
|
1332
|
+
],
|
|
1333
|
+
[
|
|
1334
|
+
"colorIconButtonSoftNeutral",
|
|
1335
|
+
"var(--fibery-color-colorIconButtonSoftNeutral)",
|
|
1336
|
+
],
|
|
1337
|
+
[
|
|
1338
|
+
"colorIconButtonSoftDestructive",
|
|
1339
|
+
"var(--fibery-color-colorIconButtonSoftDestructive)",
|
|
1340
|
+
],
|
|
1341
|
+
[
|
|
1342
|
+
"colorBgButtonGhostAccentDefault",
|
|
1343
|
+
"var(--fibery-color-colorBgButtonGhostAccentDefault)",
|
|
1344
|
+
],
|
|
1345
|
+
[
|
|
1346
|
+
"colorBgButtonGhostAccentHover",
|
|
1347
|
+
"var(--fibery-color-colorBgButtonGhostAccentHover)",
|
|
1348
|
+
],
|
|
1349
|
+
[
|
|
1350
|
+
"colorBgButtonGhostNeutralDefault",
|
|
1351
|
+
"var(--fibery-color-colorBgButtonGhostNeutralDefault)",
|
|
1352
|
+
],
|
|
1353
|
+
[
|
|
1354
|
+
"colorBgButtonGhostNeutralHover",
|
|
1355
|
+
"var(--fibery-color-colorBgButtonGhostNeutralHover)",
|
|
1356
|
+
],
|
|
1357
|
+
[
|
|
1358
|
+
"colorBgButtonGhostDestructiveDefault",
|
|
1359
|
+
"var(--fibery-color-colorBgButtonGhostDestructiveDefault)",
|
|
1360
|
+
],
|
|
1361
|
+
[
|
|
1362
|
+
"colorBgButtonGhostDestructiveHover",
|
|
1363
|
+
"var(--fibery-color-colorBgButtonGhostDestructiveHover)",
|
|
1364
|
+
],
|
|
1365
|
+
[
|
|
1366
|
+
"colorTextButtonGhostAccent",
|
|
1367
|
+
"var(--fibery-color-colorTextButtonGhostAccent)",
|
|
1368
|
+
],
|
|
1369
|
+
[
|
|
1370
|
+
"colorTextButtonGhostAccentActive",
|
|
1371
|
+
"var(--fibery-color-colorTextButtonGhostAccentActive)",
|
|
1372
|
+
],
|
|
1373
|
+
[
|
|
1374
|
+
"colorTextButtonGhostNeutral",
|
|
1375
|
+
"var(--fibery-color-colorTextButtonGhostNeutral)",
|
|
1376
|
+
],
|
|
1377
|
+
[
|
|
1378
|
+
"colorTextButtonGhostNeutralActive",
|
|
1379
|
+
"var(--fibery-color-colorTextButtonGhostNeutralActive)",
|
|
1380
|
+
],
|
|
1381
|
+
[
|
|
1382
|
+
"colorTextButtonGhostDestructive",
|
|
1383
|
+
"var(--fibery-color-colorTextButtonGhostDestructive)",
|
|
1384
|
+
],
|
|
1385
|
+
[
|
|
1386
|
+
"colorTextButtonGhostDestructiveActive",
|
|
1387
|
+
"var(--fibery-color-colorTextButtonGhostDestructiveActive)",
|
|
1388
|
+
],
|
|
1389
|
+
[
|
|
1390
|
+
"colorIconButtonGhostAccent",
|
|
1391
|
+
"var(--fibery-color-colorIconButtonGhostAccent)",
|
|
1392
|
+
],
|
|
1393
|
+
[
|
|
1394
|
+
"colorIconButtonGhostNeutral",
|
|
1395
|
+
"var(--fibery-color-colorIconButtonGhostNeutral)",
|
|
1396
|
+
],
|
|
1397
|
+
[
|
|
1398
|
+
"colorIconButtonGhostDestructive",
|
|
1399
|
+
"var(--fibery-color-colorIconButtonGhostDestructive)",
|
|
1400
|
+
],
|
|
1401
|
+
[
|
|
1402
|
+
"colorBorderAccentFocusRing",
|
|
1403
|
+
"var(--fibery-color-colorBorderAccentFocusRing)",
|
|
1404
|
+
],
|
|
1405
|
+
[
|
|
1406
|
+
"colorBorderNeutralFocusRing",
|
|
1407
|
+
"var(--fibery-color-colorBorderNeutralFocusRing)",
|
|
1408
|
+
],
|
|
1409
|
+
[
|
|
1410
|
+
"colorBorderDestructiveFocusRing",
|
|
1411
|
+
"var(--fibery-color-colorBorderDestructiveFocusRing)",
|
|
1412
|
+
],
|
|
1413
|
+
[
|
|
1414
|
+
"colorBgReactionsDefault",
|
|
1415
|
+
"var(--fibery-color-colorBgReactionsDefault)",
|
|
1416
|
+
],
|
|
1417
|
+
[
|
|
1418
|
+
"colorBgReactionsHover",
|
|
1419
|
+
"var(--fibery-color-colorBgReactionsHover)",
|
|
1420
|
+
],
|
|
1421
|
+
[
|
|
1422
|
+
"colorBorderReactionsHover",
|
|
1423
|
+
"var(--fibery-color-colorBorderReactionsHover)",
|
|
1424
|
+
],
|
|
1425
|
+
[
|
|
1426
|
+
"colorBgReactionsSelectedDefault",
|
|
1427
|
+
"var(--fibery-color-colorBgReactionsSelectedDefault)",
|
|
1428
|
+
],
|
|
1429
|
+
[
|
|
1430
|
+
"colorBorderReactionsSelectedDefault",
|
|
1431
|
+
"var(--fibery-color-colorBorderReactionsSelectedDefault)",
|
|
1432
|
+
],
|
|
1433
|
+
[
|
|
1434
|
+
"colorBgReactionsSelectedHover",
|
|
1435
|
+
"var(--fibery-color-colorBgReactionsSelectedHover)",
|
|
1436
|
+
],
|
|
1437
|
+
[
|
|
1438
|
+
"colorBorderReactionsSelectedHover",
|
|
1439
|
+
"var(--fibery-color-colorBorderReactionsSelectedHover)",
|
|
1440
|
+
],
|
|
1441
|
+
[
|
|
1442
|
+
"colorTextReactionsSelected",
|
|
1443
|
+
"var(--fibery-color-colorTextReactionsSelected)",
|
|
1444
|
+
],
|
|
1445
|
+
[
|
|
1446
|
+
"colorBgToastDefault",
|
|
1447
|
+
"var(--fibery-color-colorBgToastDefault)",
|
|
1448
|
+
],
|
|
1449
|
+
[
|
|
1450
|
+
"colorBgDbTabHover",
|
|
1451
|
+
"var(--fibery-color-colorBgDbTabHover)",
|
|
1452
|
+
],
|
|
1453
|
+
[
|
|
1454
|
+
"colorBgDbTabFocus",
|
|
1455
|
+
"var(--fibery-color-colorBgDbTabFocus)",
|
|
1456
|
+
],
|
|
1457
|
+
[
|
|
1458
|
+
"colorBgTabHover",
|
|
1459
|
+
"var(--fibery-color-colorBgTabHover)",
|
|
1460
|
+
],
|
|
1461
|
+
[
|
|
1462
|
+
"colorBgMessageContainer",
|
|
1463
|
+
"var(--fibery-color-colorBgMessageContainer)",
|
|
1464
|
+
],
|
|
1465
|
+
[
|
|
1466
|
+
"colorBgMessageContainerHover",
|
|
1467
|
+
"var(--fibery-color-colorBgMessageContainerHover)",
|
|
1468
|
+
],
|
|
1469
|
+
[
|
|
1470
|
+
"colorBgEntityAvatarDefault",
|
|
1471
|
+
"var(--fibery-color-colorBgEntityAvatarDefault)",
|
|
1472
|
+
],
|
|
1473
|
+
[
|
|
1474
|
+
"colorBgEntityAvatarHover",
|
|
1475
|
+
"var(--fibery-color-colorBgEntityAvatarHover)",
|
|
1476
|
+
],
|
|
1477
|
+
[
|
|
1478
|
+
"colorTextEntityAvatarDefault",
|
|
1479
|
+
"var(--fibery-color-colorTextEntityAvatarDefault)",
|
|
1480
|
+
],
|
|
1481
|
+
[
|
|
1482
|
+
"colorTextEntityAvatarHover",
|
|
1483
|
+
"var(--fibery-color-colorTextEntityAvatarHover)",
|
|
1484
|
+
],
|
|
1485
|
+
[
|
|
1486
|
+
"colorBgEditorImageZoomed",
|
|
1487
|
+
"var(--fibery-color-colorBgEditorImageZoomed)",
|
|
1488
|
+
],
|
|
1489
|
+
[
|
|
1490
|
+
"colorMermaidPrimaryColor",
|
|
1491
|
+
"var(--fibery-color-colorMermaidPrimaryColor)",
|
|
1492
|
+
],
|
|
1493
|
+
[
|
|
1494
|
+
"colorMermaidPrimaryBorderColor",
|
|
1495
|
+
"var(--fibery-color-colorMermaidPrimaryBorderColor)",
|
|
1496
|
+
],
|
|
1497
|
+
[
|
|
1498
|
+
"colorMermaidLineColor",
|
|
1499
|
+
"var(--fibery-color-colorMermaidLineColor)",
|
|
1500
|
+
],
|
|
1501
|
+
[
|
|
1502
|
+
"colorBgWhiteboard",
|
|
1503
|
+
"var(--fibery-color-colorBgWhiteboard)",
|
|
1504
|
+
],
|
|
1505
|
+
[
|
|
1506
|
+
"colorGridDotWhiteboard",
|
|
1507
|
+
"var(--fibery-color-colorGridDotWhiteboard)",
|
|
1508
|
+
],
|
|
1509
|
+
[
|
|
1510
|
+
"colorSelectionWhiteboardBorderEnabled",
|
|
1511
|
+
"var(--fibery-color-colorSelectionWhiteboardBorderEnabled)",
|
|
1512
|
+
],
|
|
1513
|
+
[
|
|
1514
|
+
"colorHighlightWhiteboardSelection",
|
|
1515
|
+
"var(--fibery-color-colorHighlightWhiteboardSelection)",
|
|
1516
|
+
],
|
|
1517
|
+
[
|
|
1518
|
+
"colorHighlightWhiteboardSelectionLocked",
|
|
1519
|
+
"var(--fibery-color-colorHighlightWhiteboardSelectionLocked)",
|
|
1520
|
+
],
|
|
1521
|
+
[
|
|
1522
|
+
"colorSelectionWhiteboardBorderDisabled",
|
|
1523
|
+
"var(--fibery-color-colorSelectionWhiteboardBorderDisabled)",
|
|
1524
|
+
],
|
|
1525
|
+
[
|
|
1526
|
+
"colorPlaceholderWhiteboardDefault",
|
|
1527
|
+
"var(--fibery-color-colorPlaceholderWhiteboardDefault)",
|
|
1528
|
+
],
|
|
1529
|
+
[
|
|
1530
|
+
"colorLinkPointWhiteboardDefault",
|
|
1531
|
+
"var(--fibery-color-colorLinkPointWhiteboardDefault)",
|
|
1532
|
+
],
|
|
1533
|
+
[
|
|
1534
|
+
"colorLinkPointWhiteboardFillDefault",
|
|
1535
|
+
"var(--fibery-color-colorLinkPointWhiteboardFillDefault)",
|
|
1536
|
+
],
|
|
1537
|
+
[
|
|
1538
|
+
"colorMapWhiteboardPreviewDefault",
|
|
1539
|
+
"var(--fibery-color-colorMapWhiteboardPreviewDefault)",
|
|
1540
|
+
],
|
|
1541
|
+
[
|
|
1542
|
+
"colorCardWhiteboardShadowDefault",
|
|
1543
|
+
"var(--fibery-color-colorCardWhiteboardShadowDefault)",
|
|
1544
|
+
],
|
|
1545
|
+
[
|
|
1546
|
+
"colorCardWhiteboardBgDefault",
|
|
1547
|
+
"var(--fibery-color-colorCardWhiteboardBgDefault)",
|
|
1548
|
+
],
|
|
1549
|
+
[
|
|
1550
|
+
"colorCardWhiteboardBorderDefault",
|
|
1551
|
+
"var(--fibery-color-colorCardWhiteboardBorderDefault)",
|
|
1552
|
+
],
|
|
1553
|
+
[
|
|
1554
|
+
"colorUnitHeaderWhiteboardDefault",
|
|
1555
|
+
"var(--fibery-color-colorUnitHeaderWhiteboardDefault)",
|
|
1556
|
+
],
|
|
1557
|
+
[
|
|
1558
|
+
"colorUnitWhiteboardBgDefault",
|
|
1559
|
+
"var(--fibery-color-colorUnitWhiteboardBgDefault)",
|
|
1560
|
+
],
|
|
1561
|
+
[
|
|
1562
|
+
"colorUnitWhiteboardBorderDefault",
|
|
1563
|
+
"var(--fibery-color-colorUnitWhiteboardBorderDefault)",
|
|
1564
|
+
],
|
|
1565
|
+
[
|
|
1566
|
+
"colorSectionWhiteboardBgInactive",
|
|
1567
|
+
"var(--fibery-color-colorSectionWhiteboardBgInactive)",
|
|
1568
|
+
],
|
|
1569
|
+
[
|
|
1570
|
+
"colorSectionWhiteboardBorderInactive",
|
|
1571
|
+
"var(--fibery-color-colorSectionWhiteboardBorderInactive)",
|
|
1572
|
+
],
|
|
1573
|
+
[
|
|
1574
|
+
"colorEmbedWhiteboardEditBorder",
|
|
1575
|
+
"var(--fibery-color-colorEmbedWhiteboardEditBorder)",
|
|
1576
|
+
],
|
|
1577
|
+
[
|
|
1578
|
+
"colorTextWhiteboardDefault",
|
|
1579
|
+
"var(--fibery-color-colorTextWhiteboardDefault)",
|
|
1580
|
+
],
|
|
1581
|
+
[
|
|
1582
|
+
"colorTextWhiteboardDisabled",
|
|
1583
|
+
"var(--fibery-color-colorTextWhiteboardDisabled)",
|
|
1584
|
+
],
|
|
1585
|
+
[
|
|
1586
|
+
"colorTextWhiteboardAccent",
|
|
1587
|
+
"var(--fibery-color-colorTextWhiteboardAccent)",
|
|
1588
|
+
],
|
|
1589
|
+
[
|
|
1590
|
+
"colorTextWhiteboardInversedDefault",
|
|
1591
|
+
"var(--fibery-color-colorTextWhiteboardInversedDefault)",
|
|
1592
|
+
],
|
|
1593
|
+
[
|
|
1594
|
+
"instrumentsMenuBg",
|
|
1595
|
+
"var(--fibery-color-instrumentsMenuBg)",
|
|
1596
|
+
],
|
|
1597
|
+
[
|
|
1598
|
+
"instrumentsMenuShadow",
|
|
1599
|
+
"var(--fibery-color-instrumentsMenuShadow)",
|
|
1600
|
+
],
|
|
1601
|
+
[
|
|
1602
|
+
"commentBubbleBg",
|
|
1603
|
+
"var(--fibery-color-commentBubbleBg)",
|
|
1604
|
+
],
|
|
1605
|
+
[
|
|
1606
|
+
"commentsPanelShadow",
|
|
1607
|
+
"var(--fibery-color-commentsPanelShadow)",
|
|
1608
|
+
],
|
|
1609
|
+
[
|
|
1610
|
+
"searchFiltersBg",
|
|
1611
|
+
"var(--fibery-color-searchFiltersBg)",
|
|
1612
|
+
],
|
|
1613
|
+
[
|
|
1614
|
+
"selectedColorBorder",
|
|
1615
|
+
"var(--fibery-color-selectedColorBorder)",
|
|
1616
|
+
],
|
|
1617
|
+
[
|
|
1618
|
+
"colorBgSegmentedControlDefault",
|
|
1619
|
+
"var(--fibery-color-colorBgSegmentedControlDefault)",
|
|
1620
|
+
],
|
|
1621
|
+
[
|
|
1622
|
+
"colorBgSegmentedControlActive",
|
|
1623
|
+
"var(--fibery-color-colorBgSegmentedControlActive)",
|
|
1624
|
+
],
|
|
1625
|
+
[
|
|
1626
|
+
"colorBgSegmentedControlHover",
|
|
1627
|
+
"var(--fibery-color-colorBgSegmentedControlHover)",
|
|
1628
|
+
],
|
|
1629
|
+
[
|
|
1630
|
+
"colorBorderSegmentedControlDefault",
|
|
1631
|
+
"var(--fibery-color-colorBorderSegmentedControlDefault)",
|
|
1632
|
+
],
|
|
1633
|
+
[
|
|
1634
|
+
"colorBgChargebeeInfoBox",
|
|
1635
|
+
"var(--fibery-color-colorBgChargebeeInfoBox)",
|
|
1636
|
+
],
|
|
1637
|
+
[
|
|
1638
|
+
"newCommentHorizontalRulerColor",
|
|
1639
|
+
"var(--fibery-color-newCommentHorizontalRulerColor)",
|
|
1640
|
+
],
|
|
1641
|
+
[
|
|
1642
|
+
"colorBgErrorMessage",
|
|
1643
|
+
"var(--fibery-color-colorBgErrorMessage)",
|
|
1644
|
+
],
|
|
1645
|
+
[
|
|
1646
|
+
"colorBorderLogoGrid",
|
|
1647
|
+
"var(--fibery-color-colorBorderLogoGrid)",
|
|
1648
|
+
],
|
|
1649
|
+
[
|
|
1650
|
+
"colorBorderLogoGridSubtle",
|
|
1651
|
+
"var(--fibery-color-colorBorderLogoGridSubtle)",
|
|
1652
|
+
],
|
|
1653
|
+
[
|
|
1654
|
+
"colorBorderLogoGridMedium",
|
|
1655
|
+
"var(--fibery-color-colorBorderLogoGridMedium)",
|
|
1656
|
+
],
|
|
1657
|
+
[
|
|
1658
|
+
"colorStrokeLogoDashed",
|
|
1659
|
+
"var(--fibery-color-colorStrokeLogoDashed)",
|
|
1660
|
+
],
|
|
1661
|
+
[
|
|
1662
|
+
"colorBgLogoCardTransparent",
|
|
1663
|
+
"var(--fibery-color-colorBgLogoCardTransparent)",
|
|
1664
|
+
],
|
|
1665
|
+
[
|
|
1666
|
+
"colorBgLogoCardDark",
|
|
1667
|
+
"var(--fibery-color-colorBgLogoCardDark)",
|
|
1668
|
+
],
|
|
1669
|
+
[
|
|
1670
|
+
"colorBgLogoCardMedium",
|
|
1671
|
+
"var(--fibery-color-colorBgLogoCardMedium)",
|
|
1672
|
+
],
|
|
1673
|
+
[
|
|
1674
|
+
"scrollbar",
|
|
1675
|
+
"var(--fibery-color-scrollbar)",
|
|
1676
|
+
],
|
|
1677
|
+
]
|
|
1678
|
+
`);
|
|
1679
|
+
});
|