@likec4/styles 1.59.3 → 1.59.4
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/dev.mjs +0 -43
- package/dist/jsx/is-valid-prop.d.mts +1 -1
- package/dist/jsx/txt.mjs +1 -1
- package/dist/patterns/txt.d.mts +4 -1
- package/dist/patterns/txt.mjs +14 -9
- package/dist/recipes/empty-box.d.mts +31 -0
- package/dist/recipes/empty-box.mjs +28 -0
- package/dist/recipes/floating-window.d.mts +33 -0
- package/dist/recipes/floating-window.mjs +24 -0
- package/dist/recipes/index.d.mts +2 -0
- package/dist/recipes/index.mjs +2 -0
- package/dist/tokens/index.mjs +514 -806
- package/dist/tokens/tokens.d.mts +16 -19
- package/dist/types/composition.d.mts +1 -1
- package/dist/types/prop-type.d.mts +3 -5
- package/dist/types/style-props.d.mts +134 -138
- package/package.json +13 -10
package/dist/tokens/index.mjs
CHANGED
|
@@ -1,24 +1,4 @@
|
|
|
1
1
|
const tokens = {
|
|
2
|
-
"fontWeights.normal": {
|
|
3
|
-
"value": "400",
|
|
4
|
-
"variable": "var(--font-weights-normal)"
|
|
5
|
-
},
|
|
6
|
-
"fontWeights.medium": {
|
|
7
|
-
"value": "500",
|
|
8
|
-
"variable": "var(--font-weights-medium)"
|
|
9
|
-
},
|
|
10
|
-
"fontWeights.semibold": {
|
|
11
|
-
"value": "600",
|
|
12
|
-
"variable": "var(--font-weights-semibold)"
|
|
13
|
-
},
|
|
14
|
-
"fontWeights.bold": {
|
|
15
|
-
"value": "600",
|
|
16
|
-
"variable": "var(--font-weights-bold)"
|
|
17
|
-
},
|
|
18
|
-
"fontWeights.extrabold": {
|
|
19
|
-
"value": "700",
|
|
20
|
-
"variable": "var(--font-weights-extrabold)"
|
|
21
|
-
},
|
|
22
2
|
"fontSizes.xxs": {
|
|
23
3
|
"value": "10px",
|
|
24
4
|
"variable": "var(--font-sizes-xxs)"
|
|
@@ -28,19 +8,19 @@ const tokens = {
|
|
|
28
8
|
"variable": "var(--font-sizes-xs)"
|
|
29
9
|
},
|
|
30
10
|
"fontSizes.sm": {
|
|
31
|
-
"value": "
|
|
11
|
+
"value": "13px",
|
|
32
12
|
"variable": "var(--font-sizes-sm)"
|
|
33
13
|
},
|
|
34
14
|
"fontSizes.md": {
|
|
35
|
-
"value": "
|
|
15
|
+
"value": "14px",
|
|
36
16
|
"variable": "var(--font-sizes-md)"
|
|
37
17
|
},
|
|
38
18
|
"fontSizes.lg": {
|
|
39
|
-
"value": "
|
|
19
|
+
"value": "16px",
|
|
40
20
|
"variable": "var(--font-sizes-lg)"
|
|
41
21
|
},
|
|
42
22
|
"fontSizes.xl": {
|
|
43
|
-
"value": "
|
|
23
|
+
"value": "18px",
|
|
44
24
|
"variable": "var(--font-sizes-xl)"
|
|
45
25
|
},
|
|
46
26
|
"fontSizes.likec4.xs": {
|
|
@@ -63,13 +43,65 @@ const tokens = {
|
|
|
63
43
|
"value": "27.65px",
|
|
64
44
|
"variable": "var(--font-sizes-likec4-xl)"
|
|
65
45
|
},
|
|
46
|
+
"fontSizes.h1": {
|
|
47
|
+
"value": "2.125rem",
|
|
48
|
+
"variable": "var(--font-sizes-h1)"
|
|
49
|
+
},
|
|
50
|
+
"fontSizes.h2": {
|
|
51
|
+
"value": "1.625rem",
|
|
52
|
+
"variable": "var(--font-sizes-h2)"
|
|
53
|
+
},
|
|
54
|
+
"fontSizes.h3": {
|
|
55
|
+
"value": "1.375rem",
|
|
56
|
+
"variable": "var(--font-sizes-h3)"
|
|
57
|
+
},
|
|
58
|
+
"fontSizes.h4": {
|
|
59
|
+
"value": "1.125rem",
|
|
60
|
+
"variable": "var(--font-sizes-h4)"
|
|
61
|
+
},
|
|
62
|
+
"fontSizes.h5": {
|
|
63
|
+
"value": "1rem",
|
|
64
|
+
"variable": "var(--font-sizes-h5)"
|
|
65
|
+
},
|
|
66
|
+
"fontSizes.h6": {
|
|
67
|
+
"value": "0.875rem",
|
|
68
|
+
"variable": "var(--font-sizes-h6)"
|
|
69
|
+
},
|
|
70
|
+
"fontWeights.normal": {
|
|
71
|
+
"value": "400",
|
|
72
|
+
"variable": "var(--font-weights-normal)"
|
|
73
|
+
},
|
|
74
|
+
"fontWeights.medium": {
|
|
75
|
+
"value": "500",
|
|
76
|
+
"variable": "var(--font-weights-medium)"
|
|
77
|
+
},
|
|
78
|
+
"fontWeights.semibold": {
|
|
79
|
+
"value": "600",
|
|
80
|
+
"variable": "var(--font-weights-semibold)"
|
|
81
|
+
},
|
|
82
|
+
"fontWeights.bold": {
|
|
83
|
+
"value": "600",
|
|
84
|
+
"variable": "var(--font-weights-bold)"
|
|
85
|
+
},
|
|
86
|
+
"fontWeights.extrabold": {
|
|
87
|
+
"value": "700",
|
|
88
|
+
"variable": "var(--font-weights-extrabold)"
|
|
89
|
+
},
|
|
90
|
+
"fontWeights.display": {
|
|
91
|
+
"value": "700",
|
|
92
|
+
"variable": "var(--font-weights-display)"
|
|
93
|
+
},
|
|
66
94
|
"lineHeights.1": {
|
|
67
95
|
"value": "1",
|
|
68
96
|
"variable": "var(--line-heights-1)"
|
|
69
97
|
},
|
|
70
|
-
"lineHeights.
|
|
98
|
+
"lineHeights.tight": {
|
|
99
|
+
"value": "1.05",
|
|
100
|
+
"variable": "var(--line-heights-tight)"
|
|
101
|
+
},
|
|
102
|
+
"lineHeights.snug": {
|
|
71
103
|
"value": "1.1",
|
|
72
|
-
"variable": "var(--line-heights-
|
|
104
|
+
"variable": "var(--line-heights-snug)"
|
|
73
105
|
},
|
|
74
106
|
"lineHeights.xs": {
|
|
75
107
|
"value": "1.2",
|
|
@@ -84,13 +116,17 @@ const tokens = {
|
|
|
84
116
|
"variable": "var(--line-heights-md)"
|
|
85
117
|
},
|
|
86
118
|
"lineHeights.lg": {
|
|
87
|
-
"value": "1.
|
|
119
|
+
"value": "1.5",
|
|
88
120
|
"variable": "var(--line-heights-lg)"
|
|
89
121
|
},
|
|
90
122
|
"lineHeights.xl": {
|
|
91
|
-
"value": "1.
|
|
123
|
+
"value": "1.5",
|
|
92
124
|
"variable": "var(--line-heights-xl)"
|
|
93
125
|
},
|
|
126
|
+
"fonts.display": {
|
|
127
|
+
"value": "'IBM Plex Sans Variable',ui-sans-serif,system-ui,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",\"Segoe UI Symbol\",\"Noto Color Emoji\"",
|
|
128
|
+
"variable": "var(--fonts-display)"
|
|
129
|
+
},
|
|
94
130
|
"fonts.mono": {
|
|
95
131
|
"value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace",
|
|
96
132
|
"variable": "var(--fonts-mono)"
|
|
@@ -115,9 +151,9 @@ const tokens = {
|
|
|
115
151
|
"value": "var(--likec4-relation-font, var(--fonts-likec4))",
|
|
116
152
|
"variable": "var(--fonts-likec4-relation)"
|
|
117
153
|
},
|
|
118
|
-
"letterSpacings.
|
|
119
|
-
"value": "-0.
|
|
120
|
-
"variable": "var(--letter-spacings-
|
|
154
|
+
"letterSpacings.display": {
|
|
155
|
+
"value": "-0.02em",
|
|
156
|
+
"variable": "var(--letter-spacings-display)"
|
|
121
157
|
},
|
|
122
158
|
"letterSpacings.tight": {
|
|
123
159
|
"value": "-0.025em",
|
|
@@ -127,17 +163,13 @@ const tokens = {
|
|
|
127
163
|
"value": "0em",
|
|
128
164
|
"variable": "var(--letter-spacings-normal)"
|
|
129
165
|
},
|
|
130
|
-
"letterSpacings.
|
|
131
|
-
"value": "0.
|
|
132
|
-
"variable": "var(--letter-spacings-
|
|
166
|
+
"letterSpacings.caps": {
|
|
167
|
+
"value": "0.12em",
|
|
168
|
+
"variable": "var(--letter-spacings-caps)"
|
|
133
169
|
},
|
|
134
|
-
"letterSpacings.
|
|
135
|
-
"value": "0.
|
|
136
|
-
"variable": "var(--letter-spacings-
|
|
137
|
-
},
|
|
138
|
-
"letterSpacings.widest": {
|
|
139
|
-
"value": "0.1em",
|
|
140
|
-
"variable": "var(--letter-spacings-widest)"
|
|
170
|
+
"letterSpacings.caps.sm": {
|
|
171
|
+
"value": "0.06em",
|
|
172
|
+
"variable": "var(--letter-spacings-caps-sm)"
|
|
141
173
|
},
|
|
142
174
|
"sizes.0": {
|
|
143
175
|
"value": "0",
|
|
@@ -187,125 +219,21 @@ const tokens = {
|
|
|
187
219
|
"value": "50%",
|
|
188
220
|
"variable": "var(--sizes-50\\%)"
|
|
189
221
|
},
|
|
190
|
-
"sizes.
|
|
191
|
-
"value": "
|
|
192
|
-
"variable": "var(--sizes-
|
|
193
|
-
},
|
|
194
|
-
"sizes.spacing.1": {
|
|
195
|
-
"value": "4px",
|
|
196
|
-
"variable": "var(--sizes-spacing-1)"
|
|
197
|
-
},
|
|
198
|
-
"sizes.spacing.2": {
|
|
199
|
-
"value": "8px",
|
|
200
|
-
"variable": "var(--sizes-spacing-2)"
|
|
201
|
-
},
|
|
202
|
-
"sizes.spacing.3": {
|
|
203
|
-
"value": "12px",
|
|
204
|
-
"variable": "var(--sizes-spacing-3)"
|
|
205
|
-
},
|
|
206
|
-
"sizes.spacing.4": {
|
|
207
|
-
"value": "16px",
|
|
208
|
-
"variable": "var(--sizes-spacing-4)"
|
|
209
|
-
},
|
|
210
|
-
"sizes.spacing.5": {
|
|
211
|
-
"value": "20px",
|
|
212
|
-
"variable": "var(--sizes-spacing-5)"
|
|
213
|
-
},
|
|
214
|
-
"sizes.spacing.6": {
|
|
215
|
-
"value": "24px",
|
|
216
|
-
"variable": "var(--sizes-spacing-6)"
|
|
217
|
-
},
|
|
218
|
-
"sizes.spacing.7": {
|
|
219
|
-
"value": "28px",
|
|
220
|
-
"variable": "var(--sizes-spacing-7)"
|
|
222
|
+
"sizes.full": {
|
|
223
|
+
"value": "100%",
|
|
224
|
+
"variable": "var(--sizes-full)"
|
|
221
225
|
},
|
|
222
|
-
"sizes.
|
|
223
|
-
"value": "
|
|
224
|
-
"variable": "var(--sizes-
|
|
226
|
+
"sizes.control.sm": {
|
|
227
|
+
"value": "30px",
|
|
228
|
+
"variable": "var(--sizes-control-sm)"
|
|
225
229
|
},
|
|
226
|
-
"sizes.
|
|
230
|
+
"sizes.control.md": {
|
|
227
231
|
"value": "36px",
|
|
228
|
-
"variable": "var(--sizes-
|
|
229
|
-
},
|
|
230
|
-
"sizes.spacing.10": {
|
|
231
|
-
"value": "40px",
|
|
232
|
-
"variable": "var(--sizes-spacing-10)"
|
|
233
|
-
},
|
|
234
|
-
"sizes.spacing.12": {
|
|
235
|
-
"value": "48px",
|
|
236
|
-
"variable": "var(--sizes-spacing-12)"
|
|
237
|
-
},
|
|
238
|
-
"sizes.spacing.16": {
|
|
239
|
-
"value": "64px",
|
|
240
|
-
"variable": "var(--sizes-spacing-16)"
|
|
241
|
-
},
|
|
242
|
-
"sizes.spacing.0.5": {
|
|
243
|
-
"value": "2px",
|
|
244
|
-
"variable": "var(--sizes-spacing-0\\.5)"
|
|
245
|
-
},
|
|
246
|
-
"sizes.spacing.1.5": {
|
|
247
|
-
"value": "6px",
|
|
248
|
-
"variable": "var(--sizes-spacing-1\\.5)"
|
|
249
|
-
},
|
|
250
|
-
"sizes.spacing.2.5": {
|
|
251
|
-
"value": "10px",
|
|
252
|
-
"variable": "var(--sizes-spacing-2\\.5)"
|
|
253
|
-
},
|
|
254
|
-
"sizes.spacing.3.5": {
|
|
255
|
-
"value": "14px",
|
|
256
|
-
"variable": "var(--sizes-spacing-3\\.5)"
|
|
257
|
-
},
|
|
258
|
-
"sizes.spacing.4.5": {
|
|
259
|
-
"value": "18px",
|
|
260
|
-
"variable": "var(--sizes-spacing-4\\.5)"
|
|
261
|
-
},
|
|
262
|
-
"sizes.spacing.xxs": {
|
|
263
|
-
"value": "calc(8px * var(--mantine-scale))",
|
|
264
|
-
"variable": "var(--sizes-spacing-xxs)"
|
|
265
|
-
},
|
|
266
|
-
"sizes.spacing.xs": {
|
|
267
|
-
"value": "calc(10px * var(--mantine-scale))",
|
|
268
|
-
"variable": "var(--sizes-spacing-xs)"
|
|
269
|
-
},
|
|
270
|
-
"sizes.spacing.sm": {
|
|
271
|
-
"value": "calc(12px * var(--mantine-scale))",
|
|
272
|
-
"variable": "var(--sizes-spacing-sm)"
|
|
273
|
-
},
|
|
274
|
-
"sizes.spacing.md": {
|
|
275
|
-
"value": "calc(16px * var(--mantine-scale))",
|
|
276
|
-
"variable": "var(--sizes-spacing-md)"
|
|
277
|
-
},
|
|
278
|
-
"sizes.spacing.lg": {
|
|
279
|
-
"value": "calc(20px * var(--mantine-scale))",
|
|
280
|
-
"variable": "var(--sizes-spacing-lg)"
|
|
281
|
-
},
|
|
282
|
-
"sizes.spacing.xl": {
|
|
283
|
-
"value": "calc(32px * var(--mantine-scale))",
|
|
284
|
-
"variable": "var(--sizes-spacing-xl)"
|
|
285
|
-
},
|
|
286
|
-
"sizes.spacing.likec4.xs": {
|
|
287
|
-
"value": "8px",
|
|
288
|
-
"variable": "var(--sizes-spacing-likec4-xs)"
|
|
289
|
-
},
|
|
290
|
-
"sizes.spacing.likec4.sm": {
|
|
291
|
-
"value": "10px",
|
|
292
|
-
"variable": "var(--sizes-spacing-likec4-sm)"
|
|
293
|
-
},
|
|
294
|
-
"sizes.spacing.likec4.md": {
|
|
295
|
-
"value": "16px",
|
|
296
|
-
"variable": "var(--sizes-spacing-likec4-md)"
|
|
297
|
-
},
|
|
298
|
-
"sizes.spacing.likec4.lg": {
|
|
299
|
-
"value": "24px",
|
|
300
|
-
"variable": "var(--sizes-spacing-likec4-lg)"
|
|
232
|
+
"variable": "var(--sizes-control-md)"
|
|
301
233
|
},
|
|
302
|
-
"sizes.
|
|
303
|
-
"value": "
|
|
304
|
-
"variable": "var(--sizes-
|
|
305
|
-
},
|
|
306
|
-
"sizes.full": {
|
|
307
|
-
"value": "100%",
|
|
308
|
-
"variable": "var(--sizes-full)"
|
|
234
|
+
"sizes.control.lg": {
|
|
235
|
+
"value": "42px",
|
|
236
|
+
"variable": "var(--sizes-control-lg)"
|
|
309
237
|
},
|
|
310
238
|
"sizes.action-icon": {
|
|
311
239
|
"value": "28px",
|
|
@@ -367,10 +295,26 @@ const tokens = {
|
|
|
367
295
|
"value": "0px solid transparent",
|
|
368
296
|
"variable": "var(--borders-transparent)"
|
|
369
297
|
},
|
|
298
|
+
"borders.subtle": {
|
|
299
|
+
"value": "var(--border-widths-default) solid var(--colors-border-subtle)",
|
|
300
|
+
"variable": "var(--borders-subtle)"
|
|
301
|
+
},
|
|
370
302
|
"borders.default": {
|
|
371
|
-
"value": "
|
|
303
|
+
"value": "var(--border-widths-default) solid var(--colors-border-default)",
|
|
372
304
|
"variable": "var(--borders-default)"
|
|
373
305
|
},
|
|
306
|
+
"borders.strong": {
|
|
307
|
+
"value": "var(--border-widths-strong) solid var(--colors-border-strong)",
|
|
308
|
+
"variable": "var(--borders-strong)"
|
|
309
|
+
},
|
|
310
|
+
"borders.outline": {
|
|
311
|
+
"value": "var(--border-widths-strong) solid var(--colors-border-outline)",
|
|
312
|
+
"variable": "var(--borders-outline)"
|
|
313
|
+
},
|
|
314
|
+
"borders.panel": {
|
|
315
|
+
"value": "var(--border-widths-default) solid var(--colors-likec4-panel-border)",
|
|
316
|
+
"variable": "var(--borders-panel)"
|
|
317
|
+
},
|
|
374
318
|
"borderWidths.0": {
|
|
375
319
|
"value": "0px",
|
|
376
320
|
"variable": "var(--border-widths-0)"
|
|
@@ -391,6 +335,18 @@ const tokens = {
|
|
|
391
335
|
"value": "4px",
|
|
392
336
|
"variable": "var(--border-widths-4)"
|
|
393
337
|
},
|
|
338
|
+
"borderWidths.default": {
|
|
339
|
+
"value": "1px",
|
|
340
|
+
"variable": "var(--border-widths-default)"
|
|
341
|
+
},
|
|
342
|
+
"borderWidths.strong": {
|
|
343
|
+
"value": "2px",
|
|
344
|
+
"variable": "var(--border-widths-strong)"
|
|
345
|
+
},
|
|
346
|
+
"borderWidths.extra": {
|
|
347
|
+
"value": "3px",
|
|
348
|
+
"variable": "var(--border-widths-extra)"
|
|
349
|
+
},
|
|
394
350
|
"spacing.0": {
|
|
395
351
|
"value": "0px",
|
|
396
352
|
"variable": "var(--spacing-0)"
|
|
@@ -528,627 +484,171 @@ const tokens = {
|
|
|
528
484
|
"variable": "var(--radii-lg)"
|
|
529
485
|
},
|
|
530
486
|
"radii.xl": {
|
|
531
|
-
"value": "
|
|
487
|
+
"value": "24px",
|
|
532
488
|
"variable": "var(--radii-xl)"
|
|
533
489
|
},
|
|
534
490
|
"radii.pill": {
|
|
535
491
|
"value": "999px",
|
|
536
492
|
"variable": "var(--radii-pill)"
|
|
537
493
|
},
|
|
538
|
-
"colors.mantine.primary": {
|
|
539
|
-
"value": "var(--mantine-primary-color-6)",
|
|
540
|
-
"variable": "var(--colors-mantine-primary)"
|
|
541
|
-
},
|
|
542
|
-
"colors.mantine.primary.filled": {
|
|
543
|
-
"value": "var(--mantine-primary-color-filled)",
|
|
544
|
-
"variable": "var(--colors-mantine-primary-filled)"
|
|
545
|
-
},
|
|
546
|
-
"colors.mantine.primary.filledHover": {
|
|
547
|
-
"value": "var(--mantine-primary-color-filled-hover)",
|
|
548
|
-
"variable": "var(--colors-mantine-primary-filled-hover)"
|
|
549
|
-
},
|
|
550
|
-
"colors.mantine.primary.light": {
|
|
551
|
-
"value": "var(--mantine-primary-color-light)",
|
|
552
|
-
"variable": "var(--colors-mantine-primary-light)"
|
|
553
|
-
},
|
|
554
|
-
"colors.mantine.primary.lightHover": {
|
|
555
|
-
"value": "var(--mantine-primary-color-light-hover)",
|
|
556
|
-
"variable": "var(--colors-mantine-primary-light-hover)"
|
|
557
|
-
},
|
|
558
|
-
"colors.mantine.primary.lightColor": {
|
|
559
|
-
"value": "var(--mantine-primary-color-light-color)",
|
|
560
|
-
"variable": "var(--colors-mantine-primary-light-color)"
|
|
561
|
-
},
|
|
562
|
-
"colors.mantine.primary.outline": {
|
|
563
|
-
"value": "var(--mantine-primary-color-outline)",
|
|
564
|
-
"variable": "var(--colors-mantine-primary-outline)"
|
|
565
|
-
},
|
|
566
|
-
"colors.mantine.primary.outlineHover": {
|
|
567
|
-
"value": "var(--mantine-primary-color-outline-hover)",
|
|
568
|
-
"variable": "var(--colors-mantine-primary-outline-hover)"
|
|
569
|
-
},
|
|
570
|
-
"colors.mantine.primary[0]": {
|
|
571
|
-
"value": "var(--mantine-primary-color-0)",
|
|
572
|
-
"variable": "var(--colors-mantine-primary\\[0\\])"
|
|
573
|
-
},
|
|
574
|
-
"colors.mantine.primary[1]": {
|
|
575
|
-
"value": "var(--mantine-primary-color-1)",
|
|
576
|
-
"variable": "var(--colors-mantine-primary\\[1\\])"
|
|
577
|
-
},
|
|
578
|
-
"colors.mantine.primary[2]": {
|
|
579
|
-
"value": "var(--mantine-primary-color-2)",
|
|
580
|
-
"variable": "var(--colors-mantine-primary\\[2\\])"
|
|
581
|
-
},
|
|
582
|
-
"colors.mantine.primary[3]": {
|
|
583
|
-
"value": "var(--mantine-primary-color-3)",
|
|
584
|
-
"variable": "var(--colors-mantine-primary\\[3\\])"
|
|
585
|
-
},
|
|
586
|
-
"colors.mantine.primary[4]": {
|
|
587
|
-
"value": "var(--mantine-primary-color-4)",
|
|
588
|
-
"variable": "var(--colors-mantine-primary\\[4\\])"
|
|
589
|
-
},
|
|
590
|
-
"colors.mantine.primary[5]": {
|
|
591
|
-
"value": "var(--mantine-primary-color-5)",
|
|
592
|
-
"variable": "var(--colors-mantine-primary\\[5\\])"
|
|
593
|
-
},
|
|
594
|
-
"colors.mantine.primary[6]": {
|
|
595
|
-
"value": "var(--mantine-primary-color-6)",
|
|
596
|
-
"variable": "var(--colors-mantine-primary\\[6\\])"
|
|
597
|
-
},
|
|
598
|
-
"colors.mantine.primary[7]": {
|
|
599
|
-
"value": "var(--mantine-primary-color-7)",
|
|
600
|
-
"variable": "var(--colors-mantine-primary\\[7\\])"
|
|
601
|
-
},
|
|
602
|
-
"colors.mantine.primary[8]": {
|
|
603
|
-
"value": "var(--mantine-primary-color-8)",
|
|
604
|
-
"variable": "var(--colors-mantine-primary\\[8\\])"
|
|
605
|
-
},
|
|
606
|
-
"colors.mantine.primary[9]": {
|
|
607
|
-
"value": "var(--mantine-primary-color-9)",
|
|
608
|
-
"variable": "var(--colors-mantine-primary\\[9\\])"
|
|
609
|
-
},
|
|
610
|
-
"colors.mantine.white": {
|
|
611
|
-
"value": "var(--mantine-color-white)",
|
|
612
|
-
"variable": "var(--colors-mantine-white)"
|
|
613
|
-
},
|
|
614
|
-
"colors.mantine.text": {
|
|
615
|
-
"value": "var(--mantine-color-text)",
|
|
616
|
-
"variable": "var(--colors-mantine-text)"
|
|
617
|
-
},
|
|
618
|
-
"colors.mantine.body": {
|
|
619
|
-
"value": "var(--mantine-color-body)",
|
|
620
|
-
"variable": "var(--colors-mantine-body)"
|
|
621
|
-
},
|
|
622
|
-
"colors.mantine.dimmed": {
|
|
623
|
-
"value": "var(--mantine-color-dimmed)",
|
|
624
|
-
"variable": "var(--colors-mantine-dimmed)"
|
|
625
|
-
},
|
|
626
|
-
"colors.mantine.defaultBorder": {
|
|
627
|
-
"value": "var(--mantine-color-default-border)",
|
|
628
|
-
"variable": "var(--colors-mantine-default-border)"
|
|
629
|
-
},
|
|
630
|
-
"colors.mantine.defaultColor": {
|
|
631
|
-
"value": "var(--mantine-color-default-color)",
|
|
632
|
-
"variable": "var(--colors-mantine-default-color)"
|
|
633
|
-
},
|
|
634
|
-
"colors.mantine.defaultHover": {
|
|
635
|
-
"value": "var(--mantine-color-default-hover)",
|
|
636
|
-
"variable": "var(--colors-mantine-default-hover)"
|
|
637
|
-
},
|
|
638
|
-
"colors.mantine.default": {
|
|
639
|
-
"value": "var(--mantine-color-default)",
|
|
640
|
-
"variable": "var(--colors-mantine-default)"
|
|
641
|
-
},
|
|
642
|
-
"colors.mantine.error": {
|
|
643
|
-
"value": "var(--mantine-color-error)",
|
|
644
|
-
"variable": "var(--colors-mantine-error)"
|
|
645
|
-
},
|
|
646
|
-
"colors.mantine.placeholder": {
|
|
647
|
-
"value": "var(--mantine-color-placeholder)",
|
|
648
|
-
"variable": "var(--colors-mantine-placeholder)"
|
|
649
|
-
},
|
|
650
|
-
"colors.mantine.gray": {
|
|
651
|
-
"value": "var(--mantine-color-gray-6)",
|
|
652
|
-
"variable": "var(--colors-mantine-gray)"
|
|
653
|
-
},
|
|
654
|
-
"colors.mantine.gray.filled": {
|
|
655
|
-
"value": "var(--mantine-color-gray-filled)",
|
|
656
|
-
"variable": "var(--colors-mantine-gray-filled)"
|
|
657
|
-
},
|
|
658
|
-
"colors.mantine.gray.filledHover": {
|
|
659
|
-
"value": "var(--mantine-color-gray-filled-hover)",
|
|
660
|
-
"variable": "var(--colors-mantine-gray-filled-hover)"
|
|
661
|
-
},
|
|
662
|
-
"colors.mantine.gray.light": {
|
|
663
|
-
"value": "var(--mantine-color-gray-light)",
|
|
664
|
-
"variable": "var(--colors-mantine-gray-light)"
|
|
665
|
-
},
|
|
666
|
-
"colors.mantine.gray.lightHover": {
|
|
667
|
-
"value": "var(--mantine-color-gray-light-hover)",
|
|
668
|
-
"variable": "var(--colors-mantine-gray-light-hover)"
|
|
669
|
-
},
|
|
670
|
-
"colors.mantine.gray.lightColor": {
|
|
671
|
-
"value": "var(--mantine-color-gray-light-color)",
|
|
672
|
-
"variable": "var(--colors-mantine-gray-light-color)"
|
|
673
|
-
},
|
|
674
|
-
"colors.mantine.gray.outline": {
|
|
675
|
-
"value": "var(--mantine-color-gray-outline)",
|
|
676
|
-
"variable": "var(--colors-mantine-gray-outline)"
|
|
677
|
-
},
|
|
678
|
-
"colors.mantine.gray.outlineHover": {
|
|
679
|
-
"value": "var(--mantine-color-gray-outline-hover)",
|
|
680
|
-
"variable": "var(--colors-mantine-gray-outline-hover)"
|
|
681
|
-
},
|
|
682
494
|
"colors.mantine.gray[0]": {
|
|
683
|
-
"value": "
|
|
495
|
+
"value": "#f8f9fa",
|
|
684
496
|
"variable": "var(--colors-mantine-gray\\[0\\])"
|
|
685
497
|
},
|
|
686
498
|
"colors.mantine.gray[1]": {
|
|
687
|
-
"value": "
|
|
499
|
+
"value": "#f1f3f5",
|
|
688
500
|
"variable": "var(--colors-mantine-gray\\[1\\])"
|
|
689
501
|
},
|
|
690
502
|
"colors.mantine.gray[2]": {
|
|
691
|
-
"value": "
|
|
503
|
+
"value": "#e9ecef",
|
|
692
504
|
"variable": "var(--colors-mantine-gray\\[2\\])"
|
|
693
505
|
},
|
|
694
506
|
"colors.mantine.gray[3]": {
|
|
695
|
-
"value": "
|
|
507
|
+
"value": "#dee2e6",
|
|
696
508
|
"variable": "var(--colors-mantine-gray\\[3\\])"
|
|
697
509
|
},
|
|
698
510
|
"colors.mantine.gray[4]": {
|
|
699
|
-
"value": "
|
|
511
|
+
"value": "#ced4da",
|
|
700
512
|
"variable": "var(--colors-mantine-gray\\[4\\])"
|
|
701
513
|
},
|
|
702
514
|
"colors.mantine.gray[5]": {
|
|
703
|
-
"value": "
|
|
515
|
+
"value": "#adb5bd",
|
|
704
516
|
"variable": "var(--colors-mantine-gray\\[5\\])"
|
|
705
517
|
},
|
|
706
518
|
"colors.mantine.gray[6]": {
|
|
707
|
-
"value": "
|
|
519
|
+
"value": "#868e96",
|
|
708
520
|
"variable": "var(--colors-mantine-gray\\[6\\])"
|
|
709
521
|
},
|
|
710
522
|
"colors.mantine.gray[7]": {
|
|
711
|
-
"value": "
|
|
523
|
+
"value": "#495057",
|
|
712
524
|
"variable": "var(--colors-mantine-gray\\[7\\])"
|
|
713
525
|
},
|
|
714
526
|
"colors.mantine.gray[8]": {
|
|
715
|
-
"value": "
|
|
527
|
+
"value": "#343a40",
|
|
716
528
|
"variable": "var(--colors-mantine-gray\\[8\\])"
|
|
717
529
|
},
|
|
718
530
|
"colors.mantine.gray[9]": {
|
|
719
|
-
"value": "
|
|
531
|
+
"value": "#212529",
|
|
720
532
|
"variable": "var(--colors-mantine-gray\\[9\\])"
|
|
721
533
|
},
|
|
722
|
-
"colors.mantine.dark": {
|
|
723
|
-
"value": "var(--mantine-color-dark-6)",
|
|
724
|
-
"variable": "var(--colors-mantine-dark)"
|
|
725
|
-
},
|
|
726
|
-
"colors.mantine.dark.filled": {
|
|
727
|
-
"value": "var(--mantine-color-dark-filled)",
|
|
728
|
-
"variable": "var(--colors-mantine-dark-filled)"
|
|
729
|
-
},
|
|
730
|
-
"colors.mantine.dark.filledHover": {
|
|
731
|
-
"value": "var(--mantine-color-dark-filled-hover)",
|
|
732
|
-
"variable": "var(--colors-mantine-dark-filled-hover)"
|
|
733
|
-
},
|
|
734
|
-
"colors.mantine.dark.light": {
|
|
735
|
-
"value": "var(--mantine-color-dark-light)",
|
|
736
|
-
"variable": "var(--colors-mantine-dark-light)"
|
|
737
|
-
},
|
|
738
|
-
"colors.mantine.dark.lightHover": {
|
|
739
|
-
"value": "var(--mantine-color-dark-light-hover)",
|
|
740
|
-
"variable": "var(--colors-mantine-dark-light-hover)"
|
|
741
|
-
},
|
|
742
|
-
"colors.mantine.dark.lightColor": {
|
|
743
|
-
"value": "var(--mantine-color-dark-light-color)",
|
|
744
|
-
"variable": "var(--colors-mantine-dark-light-color)"
|
|
745
|
-
},
|
|
746
|
-
"colors.mantine.dark.outline": {
|
|
747
|
-
"value": "var(--mantine-color-dark-outline)",
|
|
748
|
-
"variable": "var(--colors-mantine-dark-outline)"
|
|
749
|
-
},
|
|
750
|
-
"colors.mantine.dark.outlineHover": {
|
|
751
|
-
"value": "var(--mantine-color-dark-outline-hover)",
|
|
752
|
-
"variable": "var(--colors-mantine-dark-outline-hover)"
|
|
753
|
-
},
|
|
754
534
|
"colors.mantine.dark[0]": {
|
|
755
|
-
"value": "
|
|
535
|
+
"value": "#C9C9C9",
|
|
756
536
|
"variable": "var(--colors-mantine-dark\\[0\\])"
|
|
757
537
|
},
|
|
758
538
|
"colors.mantine.dark[1]": {
|
|
759
|
-
"value": "
|
|
539
|
+
"value": "#b8b8b8",
|
|
760
540
|
"variable": "var(--colors-mantine-dark\\[1\\])"
|
|
761
541
|
},
|
|
762
542
|
"colors.mantine.dark[2]": {
|
|
763
|
-
"value": "
|
|
543
|
+
"value": "#828282",
|
|
764
544
|
"variable": "var(--colors-mantine-dark\\[2\\])"
|
|
765
545
|
},
|
|
766
546
|
"colors.mantine.dark[3]": {
|
|
767
|
-
"value": "
|
|
547
|
+
"value": "#696969",
|
|
768
548
|
"variable": "var(--colors-mantine-dark\\[3\\])"
|
|
769
549
|
},
|
|
770
550
|
"colors.mantine.dark[4]": {
|
|
771
|
-
"value": "
|
|
551
|
+
"value": "#424242",
|
|
772
552
|
"variable": "var(--colors-mantine-dark\\[4\\])"
|
|
773
553
|
},
|
|
774
554
|
"colors.mantine.dark[5]": {
|
|
775
|
-
"value": "
|
|
555
|
+
"value": "#3b3b3b",
|
|
776
556
|
"variable": "var(--colors-mantine-dark\\[5\\])"
|
|
777
557
|
},
|
|
778
558
|
"colors.mantine.dark[6]": {
|
|
779
|
-
"value": "
|
|
559
|
+
"value": "#2e2e2e",
|
|
780
560
|
"variable": "var(--colors-mantine-dark\\[6\\])"
|
|
781
561
|
},
|
|
782
562
|
"colors.mantine.dark[7]": {
|
|
783
|
-
"value": "
|
|
563
|
+
"value": "#242424",
|
|
784
564
|
"variable": "var(--colors-mantine-dark\\[7\\])"
|
|
785
565
|
},
|
|
786
566
|
"colors.mantine.dark[8]": {
|
|
787
|
-
"value": "
|
|
567
|
+
"value": "#1f1f1f",
|
|
788
568
|
"variable": "var(--colors-mantine-dark\\[8\\])"
|
|
789
569
|
},
|
|
790
570
|
"colors.mantine.dark[9]": {
|
|
791
|
-
"value": "
|
|
571
|
+
"value": "#141414",
|
|
792
572
|
"variable": "var(--colors-mantine-dark\\[9\\])"
|
|
793
573
|
},
|
|
794
|
-
"colors.mantine.orange": {
|
|
795
|
-
"value": "var(--mantine-color-orange-6)",
|
|
796
|
-
"variable": "var(--colors-mantine-orange)"
|
|
797
|
-
},
|
|
798
|
-
"colors.mantine.orange.filled": {
|
|
799
|
-
"value": "var(--mantine-color-orange-filled)",
|
|
800
|
-
"variable": "var(--colors-mantine-orange-filled)"
|
|
801
|
-
},
|
|
802
|
-
"colors.mantine.orange.filledHover": {
|
|
803
|
-
"value": "var(--mantine-color-orange-filled-hover)",
|
|
804
|
-
"variable": "var(--colors-mantine-orange-filled-hover)"
|
|
805
|
-
},
|
|
806
|
-
"colors.mantine.orange.light": {
|
|
807
|
-
"value": "var(--mantine-color-orange-light)",
|
|
808
|
-
"variable": "var(--colors-mantine-orange-light)"
|
|
809
|
-
},
|
|
810
|
-
"colors.mantine.orange.lightHover": {
|
|
811
|
-
"value": "var(--mantine-color-orange-light-hover)",
|
|
812
|
-
"variable": "var(--colors-mantine-orange-light-hover)"
|
|
813
|
-
},
|
|
814
|
-
"colors.mantine.orange.lightColor": {
|
|
815
|
-
"value": "var(--mantine-color-orange-light-color)",
|
|
816
|
-
"variable": "var(--colors-mantine-orange-light-color)"
|
|
817
|
-
},
|
|
818
|
-
"colors.mantine.orange.outline": {
|
|
819
|
-
"value": "var(--mantine-color-orange-outline)",
|
|
820
|
-
"variable": "var(--colors-mantine-orange-outline)"
|
|
821
|
-
},
|
|
822
|
-
"colors.mantine.orange.outlineHover": {
|
|
823
|
-
"value": "var(--mantine-color-orange-outline-hover)",
|
|
824
|
-
"variable": "var(--colors-mantine-orange-outline-hover)"
|
|
825
|
-
},
|
|
826
574
|
"colors.mantine.orange[0]": {
|
|
827
|
-
"value": "
|
|
575
|
+
"value": "#fff4e6",
|
|
828
576
|
"variable": "var(--colors-mantine-orange\\[0\\])"
|
|
829
577
|
},
|
|
830
578
|
"colors.mantine.orange[1]": {
|
|
831
|
-
"value": "
|
|
579
|
+
"value": "#ffe8cc",
|
|
832
580
|
"variable": "var(--colors-mantine-orange\\[1\\])"
|
|
833
581
|
},
|
|
834
582
|
"colors.mantine.orange[2]": {
|
|
835
|
-
"value": "
|
|
583
|
+
"value": "#ffd8a8",
|
|
836
584
|
"variable": "var(--colors-mantine-orange\\[2\\])"
|
|
837
585
|
},
|
|
838
586
|
"colors.mantine.orange[3]": {
|
|
839
|
-
"value": "
|
|
587
|
+
"value": "#ffc078",
|
|
840
588
|
"variable": "var(--colors-mantine-orange\\[3\\])"
|
|
841
589
|
},
|
|
842
590
|
"colors.mantine.orange[4]": {
|
|
843
|
-
"value": "
|
|
591
|
+
"value": "#ffa94d",
|
|
844
592
|
"variable": "var(--colors-mantine-orange\\[4\\])"
|
|
845
593
|
},
|
|
846
594
|
"colors.mantine.orange[5]": {
|
|
847
|
-
"value": "
|
|
595
|
+
"value": "#ff922b",
|
|
848
596
|
"variable": "var(--colors-mantine-orange\\[5\\])"
|
|
849
597
|
},
|
|
850
598
|
"colors.mantine.orange[6]": {
|
|
851
|
-
"value": "
|
|
599
|
+
"value": "#fd7e14",
|
|
852
600
|
"variable": "var(--colors-mantine-orange\\[6\\])"
|
|
853
601
|
},
|
|
854
602
|
"colors.mantine.orange[7]": {
|
|
855
|
-
"value": "
|
|
603
|
+
"value": "#f76707",
|
|
856
604
|
"variable": "var(--colors-mantine-orange\\[7\\])"
|
|
857
605
|
},
|
|
858
606
|
"colors.mantine.orange[8]": {
|
|
859
|
-
"value": "
|
|
607
|
+
"value": "#e8590c",
|
|
860
608
|
"variable": "var(--colors-mantine-orange\\[8\\])"
|
|
861
609
|
},
|
|
862
610
|
"colors.mantine.orange[9]": {
|
|
863
|
-
"value": "
|
|
611
|
+
"value": "#d9480f",
|
|
864
612
|
"variable": "var(--colors-mantine-orange\\[9\\])"
|
|
865
613
|
},
|
|
866
|
-
"colors.mantine.teal": {
|
|
867
|
-
"value": "var(--mantine-color-teal-6)",
|
|
868
|
-
"variable": "var(--colors-mantine-teal)"
|
|
869
|
-
},
|
|
870
|
-
"colors.mantine.teal.filled": {
|
|
871
|
-
"value": "var(--mantine-color-teal-filled)",
|
|
872
|
-
"variable": "var(--colors-mantine-teal-filled)"
|
|
873
|
-
},
|
|
874
|
-
"colors.mantine.teal.filledHover": {
|
|
875
|
-
"value": "var(--mantine-color-teal-filled-hover)",
|
|
876
|
-
"variable": "var(--colors-mantine-teal-filled-hover)"
|
|
877
|
-
},
|
|
878
|
-
"colors.mantine.teal.light": {
|
|
879
|
-
"value": "var(--mantine-color-teal-light)",
|
|
880
|
-
"variable": "var(--colors-mantine-teal-light)"
|
|
881
|
-
},
|
|
882
|
-
"colors.mantine.teal.lightHover": {
|
|
883
|
-
"value": "var(--mantine-color-teal-light-hover)",
|
|
884
|
-
"variable": "var(--colors-mantine-teal-light-hover)"
|
|
885
|
-
},
|
|
886
|
-
"colors.mantine.teal.lightColor": {
|
|
887
|
-
"value": "var(--mantine-color-teal-light-color)",
|
|
888
|
-
"variable": "var(--colors-mantine-teal-light-color)"
|
|
889
|
-
},
|
|
890
|
-
"colors.mantine.teal.outline": {
|
|
891
|
-
"value": "var(--mantine-color-teal-outline)",
|
|
892
|
-
"variable": "var(--colors-mantine-teal-outline)"
|
|
893
|
-
},
|
|
894
|
-
"colors.mantine.teal.outlineHover": {
|
|
895
|
-
"value": "var(--mantine-color-teal-outline-hover)",
|
|
896
|
-
"variable": "var(--colors-mantine-teal-outline-hover)"
|
|
897
|
-
},
|
|
898
|
-
"colors.mantine.teal[0]": {
|
|
899
|
-
"value": "var(--mantine-color-teal-0)",
|
|
900
|
-
"variable": "var(--colors-mantine-teal\\[0\\])"
|
|
901
|
-
},
|
|
902
|
-
"colors.mantine.teal[1]": {
|
|
903
|
-
"value": "var(--mantine-color-teal-1)",
|
|
904
|
-
"variable": "var(--colors-mantine-teal\\[1\\])"
|
|
905
|
-
},
|
|
906
|
-
"colors.mantine.teal[2]": {
|
|
907
|
-
"value": "var(--mantine-color-teal-2)",
|
|
908
|
-
"variable": "var(--colors-mantine-teal\\[2\\])"
|
|
909
|
-
},
|
|
910
|
-
"colors.mantine.teal[3]": {
|
|
911
|
-
"value": "var(--mantine-color-teal-3)",
|
|
912
|
-
"variable": "var(--colors-mantine-teal\\[3\\])"
|
|
913
|
-
},
|
|
914
|
-
"colors.mantine.teal[4]": {
|
|
915
|
-
"value": "var(--mantine-color-teal-4)",
|
|
916
|
-
"variable": "var(--colors-mantine-teal\\[4\\])"
|
|
917
|
-
},
|
|
918
|
-
"colors.mantine.teal[5]": {
|
|
919
|
-
"value": "var(--mantine-color-teal-5)",
|
|
920
|
-
"variable": "var(--colors-mantine-teal\\[5\\])"
|
|
921
|
-
},
|
|
922
|
-
"colors.mantine.teal[6]": {
|
|
923
|
-
"value": "var(--mantine-color-teal-6)",
|
|
924
|
-
"variable": "var(--colors-mantine-teal\\[6\\])"
|
|
925
|
-
},
|
|
926
|
-
"colors.mantine.teal[7]": {
|
|
927
|
-
"value": "var(--mantine-color-teal-7)",
|
|
928
|
-
"variable": "var(--colors-mantine-teal\\[7\\])"
|
|
929
|
-
},
|
|
930
|
-
"colors.mantine.teal[8]": {
|
|
931
|
-
"value": "var(--mantine-color-teal-8)",
|
|
932
|
-
"variable": "var(--colors-mantine-teal\\[8\\])"
|
|
933
|
-
},
|
|
934
|
-
"colors.mantine.teal[9]": {
|
|
935
|
-
"value": "var(--mantine-color-teal-9)",
|
|
936
|
-
"variable": "var(--colors-mantine-teal\\[9\\])"
|
|
937
|
-
},
|
|
938
|
-
"colors.mantine.red": {
|
|
939
|
-
"value": "var(--mantine-color-red-6)",
|
|
940
|
-
"variable": "var(--colors-mantine-red)"
|
|
941
|
-
},
|
|
942
|
-
"colors.mantine.red.filled": {
|
|
943
|
-
"value": "var(--mantine-color-red-filled)",
|
|
944
|
-
"variable": "var(--colors-mantine-red-filled)"
|
|
945
|
-
},
|
|
946
|
-
"colors.mantine.red.filledHover": {
|
|
947
|
-
"value": "var(--mantine-color-red-filled-hover)",
|
|
948
|
-
"variable": "var(--colors-mantine-red-filled-hover)"
|
|
949
|
-
},
|
|
950
|
-
"colors.mantine.red.light": {
|
|
951
|
-
"value": "var(--mantine-color-red-light)",
|
|
952
|
-
"variable": "var(--colors-mantine-red-light)"
|
|
953
|
-
},
|
|
954
|
-
"colors.mantine.red.lightHover": {
|
|
955
|
-
"value": "var(--mantine-color-red-light-hover)",
|
|
956
|
-
"variable": "var(--colors-mantine-red-light-hover)"
|
|
957
|
-
},
|
|
958
|
-
"colors.mantine.red.lightColor": {
|
|
959
|
-
"value": "var(--mantine-color-red-light-color)",
|
|
960
|
-
"variable": "var(--colors-mantine-red-light-color)"
|
|
961
|
-
},
|
|
962
|
-
"colors.mantine.red.outline": {
|
|
963
|
-
"value": "var(--mantine-color-red-outline)",
|
|
964
|
-
"variable": "var(--colors-mantine-red-outline)"
|
|
965
|
-
},
|
|
966
|
-
"colors.mantine.red.outlineHover": {
|
|
967
|
-
"value": "var(--mantine-color-red-outline-hover)",
|
|
968
|
-
"variable": "var(--colors-mantine-red-outline-hover)"
|
|
969
|
-
},
|
|
970
|
-
"colors.mantine.red[0]": {
|
|
971
|
-
"value": "var(--mantine-color-red-0)",
|
|
972
|
-
"variable": "var(--colors-mantine-red\\[0\\])"
|
|
973
|
-
},
|
|
974
|
-
"colors.mantine.red[1]": {
|
|
975
|
-
"value": "var(--mantine-color-red-1)",
|
|
976
|
-
"variable": "var(--colors-mantine-red\\[1\\])"
|
|
977
|
-
},
|
|
978
|
-
"colors.mantine.red[2]": {
|
|
979
|
-
"value": "var(--mantine-color-red-2)",
|
|
980
|
-
"variable": "var(--colors-mantine-red\\[2\\])"
|
|
981
|
-
},
|
|
982
|
-
"colors.mantine.red[3]": {
|
|
983
|
-
"value": "var(--mantine-color-red-3)",
|
|
984
|
-
"variable": "var(--colors-mantine-red\\[3\\])"
|
|
985
|
-
},
|
|
986
|
-
"colors.mantine.red[4]": {
|
|
987
|
-
"value": "var(--mantine-color-red-4)",
|
|
988
|
-
"variable": "var(--colors-mantine-red\\[4\\])"
|
|
989
|
-
},
|
|
990
|
-
"colors.mantine.red[5]": {
|
|
991
|
-
"value": "var(--mantine-color-red-5)",
|
|
992
|
-
"variable": "var(--colors-mantine-red\\[5\\])"
|
|
993
|
-
},
|
|
994
|
-
"colors.mantine.red[6]": {
|
|
995
|
-
"value": "var(--mantine-color-red-6)",
|
|
996
|
-
"variable": "var(--colors-mantine-red\\[6\\])"
|
|
997
|
-
},
|
|
998
|
-
"colors.mantine.red[7]": {
|
|
999
|
-
"value": "var(--mantine-color-red-7)",
|
|
1000
|
-
"variable": "var(--colors-mantine-red\\[7\\])"
|
|
1001
|
-
},
|
|
1002
|
-
"colors.mantine.red[8]": {
|
|
1003
|
-
"value": "var(--mantine-color-red-8)",
|
|
1004
|
-
"variable": "var(--colors-mantine-red\\[8\\])"
|
|
1005
|
-
},
|
|
1006
|
-
"colors.mantine.red[9]": {
|
|
1007
|
-
"value": "var(--mantine-color-red-9)",
|
|
1008
|
-
"variable": "var(--colors-mantine-red\\[9\\])"
|
|
1009
|
-
},
|
|
1010
|
-
"colors.mantine.green": {
|
|
1011
|
-
"value": "var(--mantine-color-green-6)",
|
|
1012
|
-
"variable": "var(--colors-mantine-green)"
|
|
1013
|
-
},
|
|
1014
|
-
"colors.mantine.green.filled": {
|
|
1015
|
-
"value": "var(--mantine-color-green-filled)",
|
|
1016
|
-
"variable": "var(--colors-mantine-green-filled)"
|
|
1017
|
-
},
|
|
1018
|
-
"colors.mantine.green.filledHover": {
|
|
1019
|
-
"value": "var(--mantine-color-green-filled-hover)",
|
|
1020
|
-
"variable": "var(--colors-mantine-green-filled-hover)"
|
|
1021
|
-
},
|
|
1022
|
-
"colors.mantine.green.light": {
|
|
1023
|
-
"value": "var(--mantine-color-green-light)",
|
|
1024
|
-
"variable": "var(--colors-mantine-green-light)"
|
|
1025
|
-
},
|
|
1026
|
-
"colors.mantine.green.lightHover": {
|
|
1027
|
-
"value": "var(--mantine-color-green-light-hover)",
|
|
1028
|
-
"variable": "var(--colors-mantine-green-light-hover)"
|
|
1029
|
-
},
|
|
1030
|
-
"colors.mantine.green.lightColor": {
|
|
1031
|
-
"value": "var(--mantine-color-green-light-color)",
|
|
1032
|
-
"variable": "var(--colors-mantine-green-light-color)"
|
|
1033
|
-
},
|
|
1034
|
-
"colors.mantine.green.outline": {
|
|
1035
|
-
"value": "var(--mantine-color-green-outline)",
|
|
1036
|
-
"variable": "var(--colors-mantine-green-outline)"
|
|
1037
|
-
},
|
|
1038
|
-
"colors.mantine.green.outlineHover": {
|
|
1039
|
-
"value": "var(--mantine-color-green-outline-hover)",
|
|
1040
|
-
"variable": "var(--colors-mantine-green-outline-hover)"
|
|
1041
|
-
},
|
|
1042
|
-
"colors.mantine.green[0]": {
|
|
1043
|
-
"value": "var(--mantine-color-green-0)",
|
|
1044
|
-
"variable": "var(--colors-mantine-green\\[0\\])"
|
|
1045
|
-
},
|
|
1046
|
-
"colors.mantine.green[1]": {
|
|
1047
|
-
"value": "var(--mantine-color-green-1)",
|
|
1048
|
-
"variable": "var(--colors-mantine-green\\[1\\])"
|
|
1049
|
-
},
|
|
1050
|
-
"colors.mantine.green[2]": {
|
|
1051
|
-
"value": "var(--mantine-color-green-2)",
|
|
1052
|
-
"variable": "var(--colors-mantine-green\\[2\\])"
|
|
1053
|
-
},
|
|
1054
|
-
"colors.mantine.green[3]": {
|
|
1055
|
-
"value": "var(--mantine-color-green-3)",
|
|
1056
|
-
"variable": "var(--colors-mantine-green\\[3\\])"
|
|
1057
|
-
},
|
|
1058
|
-
"colors.mantine.green[4]": {
|
|
1059
|
-
"value": "var(--mantine-color-green-4)",
|
|
1060
|
-
"variable": "var(--colors-mantine-green\\[4\\])"
|
|
1061
|
-
},
|
|
1062
|
-
"colors.mantine.green[5]": {
|
|
1063
|
-
"value": "var(--mantine-color-green-5)",
|
|
1064
|
-
"variable": "var(--colors-mantine-green\\[5\\])"
|
|
1065
|
-
},
|
|
1066
|
-
"colors.mantine.green[6]": {
|
|
1067
|
-
"value": "var(--mantine-color-green-6)",
|
|
1068
|
-
"variable": "var(--colors-mantine-green\\[6\\])"
|
|
1069
|
-
},
|
|
1070
|
-
"colors.mantine.green[7]": {
|
|
1071
|
-
"value": "var(--mantine-color-green-7)",
|
|
1072
|
-
"variable": "var(--colors-mantine-green\\[7\\])"
|
|
1073
|
-
},
|
|
1074
|
-
"colors.mantine.green[8]": {
|
|
1075
|
-
"value": "var(--mantine-color-green-8)",
|
|
1076
|
-
"variable": "var(--colors-mantine-green\\[8\\])"
|
|
1077
|
-
},
|
|
1078
|
-
"colors.mantine.green[9]": {
|
|
1079
|
-
"value": "var(--mantine-color-green-9)",
|
|
1080
|
-
"variable": "var(--colors-mantine-green\\[9\\])"
|
|
1081
|
-
},
|
|
1082
|
-
"colors.mantine.yellow": {
|
|
1083
|
-
"value": "var(--mantine-color-yellow-6)",
|
|
1084
|
-
"variable": "var(--colors-mantine-yellow)"
|
|
1085
|
-
},
|
|
1086
|
-
"colors.mantine.yellow.filled": {
|
|
1087
|
-
"value": "var(--mantine-color-yellow-filled)",
|
|
1088
|
-
"variable": "var(--colors-mantine-yellow-filled)"
|
|
1089
|
-
},
|
|
1090
|
-
"colors.mantine.yellow.filledHover": {
|
|
1091
|
-
"value": "var(--mantine-color-yellow-filled-hover)",
|
|
1092
|
-
"variable": "var(--colors-mantine-yellow-filled-hover)"
|
|
1093
|
-
},
|
|
1094
|
-
"colors.mantine.yellow.light": {
|
|
1095
|
-
"value": "var(--mantine-color-yellow-light)",
|
|
1096
|
-
"variable": "var(--colors-mantine-yellow-light)"
|
|
1097
|
-
},
|
|
1098
|
-
"colors.mantine.yellow.lightHover": {
|
|
1099
|
-
"value": "var(--mantine-color-yellow-light-hover)",
|
|
1100
|
-
"variable": "var(--colors-mantine-yellow-light-hover)"
|
|
1101
|
-
},
|
|
1102
|
-
"colors.mantine.yellow.lightColor": {
|
|
1103
|
-
"value": "var(--mantine-color-yellow-light-color)",
|
|
1104
|
-
"variable": "var(--colors-mantine-yellow-light-color)"
|
|
1105
|
-
},
|
|
1106
|
-
"colors.mantine.yellow.outline": {
|
|
1107
|
-
"value": "var(--mantine-color-yellow-outline)",
|
|
1108
|
-
"variable": "var(--colors-mantine-yellow-outline)"
|
|
1109
|
-
},
|
|
1110
|
-
"colors.mantine.yellow.outlineHover": {
|
|
1111
|
-
"value": "var(--mantine-color-yellow-outline-hover)",
|
|
1112
|
-
"variable": "var(--colors-mantine-yellow-outline-hover)"
|
|
1113
|
-
},
|
|
1114
614
|
"colors.mantine.yellow[0]": {
|
|
1115
|
-
"value": "
|
|
615
|
+
"value": "#fff9db",
|
|
1116
616
|
"variable": "var(--colors-mantine-yellow\\[0\\])"
|
|
1117
617
|
},
|
|
1118
618
|
"colors.mantine.yellow[1]": {
|
|
1119
|
-
"value": "
|
|
619
|
+
"value": "#fff3bf",
|
|
1120
620
|
"variable": "var(--colors-mantine-yellow\\[1\\])"
|
|
1121
621
|
},
|
|
1122
622
|
"colors.mantine.yellow[2]": {
|
|
1123
|
-
"value": "
|
|
623
|
+
"value": "#ffec99",
|
|
1124
624
|
"variable": "var(--colors-mantine-yellow\\[2\\])"
|
|
1125
625
|
},
|
|
1126
626
|
"colors.mantine.yellow[3]": {
|
|
1127
|
-
"value": "
|
|
627
|
+
"value": "#ffe066",
|
|
1128
628
|
"variable": "var(--colors-mantine-yellow\\[3\\])"
|
|
1129
629
|
},
|
|
1130
630
|
"colors.mantine.yellow[4]": {
|
|
1131
|
-
"value": "
|
|
631
|
+
"value": "#ffd43b",
|
|
1132
632
|
"variable": "var(--colors-mantine-yellow\\[4\\])"
|
|
1133
633
|
},
|
|
1134
634
|
"colors.mantine.yellow[5]": {
|
|
1135
|
-
"value": "
|
|
635
|
+
"value": "#fcc419",
|
|
1136
636
|
"variable": "var(--colors-mantine-yellow\\[5\\])"
|
|
1137
637
|
},
|
|
1138
638
|
"colors.mantine.yellow[6]": {
|
|
1139
|
-
"value": "
|
|
639
|
+
"value": "#fab005",
|
|
1140
640
|
"variable": "var(--colors-mantine-yellow\\[6\\])"
|
|
1141
641
|
},
|
|
1142
642
|
"colors.mantine.yellow[7]": {
|
|
1143
|
-
"value": "
|
|
643
|
+
"value": "#f59f00",
|
|
1144
644
|
"variable": "var(--colors-mantine-yellow\\[7\\])"
|
|
1145
645
|
},
|
|
1146
646
|
"colors.mantine.yellow[8]": {
|
|
1147
|
-
"value": "
|
|
647
|
+
"value": "#f08c00",
|
|
1148
648
|
"variable": "var(--colors-mantine-yellow\\[8\\])"
|
|
1149
649
|
},
|
|
1150
650
|
"colors.mantine.yellow[9]": {
|
|
1151
|
-
"value": "
|
|
651
|
+
"value": "#e67700",
|
|
1152
652
|
"variable": "var(--colors-mantine-yellow\\[9\\])"
|
|
1153
653
|
},
|
|
1154
654
|
"colors.transparent": {
|
|
@@ -1179,6 +679,50 @@ const tokens = {
|
|
|
1179
679
|
"value": "#000",
|
|
1180
680
|
"variable": "var(--colors-black)"
|
|
1181
681
|
},
|
|
682
|
+
"colors.likec4.accent.0": {
|
|
683
|
+
"value": "#eff7fa",
|
|
684
|
+
"variable": "var(--colors-likec4-accent-0)"
|
|
685
|
+
},
|
|
686
|
+
"colors.likec4.accent.1": {
|
|
687
|
+
"value": "#ddedf4",
|
|
688
|
+
"variable": "var(--colors-likec4-accent-1)"
|
|
689
|
+
},
|
|
690
|
+
"colors.likec4.accent.2": {
|
|
691
|
+
"value": "#bcdae6",
|
|
692
|
+
"variable": "var(--colors-likec4-accent-2)"
|
|
693
|
+
},
|
|
694
|
+
"colors.likec4.accent.3": {
|
|
695
|
+
"value": "#97c2d3",
|
|
696
|
+
"variable": "var(--colors-likec4-accent-3)"
|
|
697
|
+
},
|
|
698
|
+
"colors.likec4.accent.4": {
|
|
699
|
+
"value": "#5e98af",
|
|
700
|
+
"variable": "var(--colors-likec4-accent-4)"
|
|
701
|
+
},
|
|
702
|
+
"colors.likec4.accent.5": {
|
|
703
|
+
"value": "#4587a1",
|
|
704
|
+
"variable": "var(--colors-likec4-accent-5)"
|
|
705
|
+
},
|
|
706
|
+
"colors.likec4.accent.6": {
|
|
707
|
+
"value": "#34748d",
|
|
708
|
+
"variable": "var(--colors-likec4-accent-6)"
|
|
709
|
+
},
|
|
710
|
+
"colors.likec4.accent.7": {
|
|
711
|
+
"value": "#2a637a",
|
|
712
|
+
"variable": "var(--colors-likec4-accent-7)"
|
|
713
|
+
},
|
|
714
|
+
"colors.likec4.accent.8": {
|
|
715
|
+
"value": "#205165",
|
|
716
|
+
"variable": "var(--colors-likec4-accent-8)"
|
|
717
|
+
},
|
|
718
|
+
"colors.likec4.accent.9": {
|
|
719
|
+
"value": "#184253",
|
|
720
|
+
"variable": "var(--colors-likec4-accent-9)"
|
|
721
|
+
},
|
|
722
|
+
"colors.likec4.accent": {
|
|
723
|
+
"value": "#34748d",
|
|
724
|
+
"variable": "var(--colors-likec4-accent)"
|
|
725
|
+
},
|
|
1182
726
|
"easings.default": {
|
|
1183
727
|
"value": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
1184
728
|
"variable": "var(--easings-default)"
|
|
@@ -1188,7 +732,7 @@ const tokens = {
|
|
|
1188
732
|
"variable": "var(--easings-in)"
|
|
1189
733
|
},
|
|
1190
734
|
"easings.out": {
|
|
1191
|
-
"value": "cubic-bezier(0, 0, 0.
|
|
735
|
+
"value": "cubic-bezier(0.2, 0.8, 0.2, 1)",
|
|
1192
736
|
"variable": "var(--easings-out)"
|
|
1193
737
|
},
|
|
1194
738
|
"easings.inOut": {
|
|
@@ -1200,29 +744,21 @@ const tokens = {
|
|
|
1200
744
|
"variable": "var(--durations-0)"
|
|
1201
745
|
},
|
|
1202
746
|
"durations.fastest": {
|
|
1203
|
-
"value": "
|
|
747
|
+
"value": "80ms",
|
|
1204
748
|
"variable": "var(--durations-fastest)"
|
|
1205
749
|
},
|
|
1206
|
-
"durations.faster": {
|
|
1207
|
-
"value": "100ms",
|
|
1208
|
-
"variable": "var(--durations-faster)"
|
|
1209
|
-
},
|
|
1210
750
|
"durations.fast": {
|
|
1211
|
-
"value": "
|
|
751
|
+
"value": "120ms",
|
|
1212
752
|
"variable": "var(--durations-fast)"
|
|
1213
753
|
},
|
|
1214
|
-
"durations.
|
|
754
|
+
"durations.medium": {
|
|
1215
755
|
"value": "170ms",
|
|
1216
|
-
"variable": "var(--durations-
|
|
756
|
+
"variable": "var(--durations-medium)"
|
|
1217
757
|
},
|
|
1218
758
|
"durations.slow": {
|
|
1219
|
-
"value": "
|
|
759
|
+
"value": "240ms",
|
|
1220
760
|
"variable": "var(--durations-slow)"
|
|
1221
761
|
},
|
|
1222
|
-
"durations.slower": {
|
|
1223
|
-
"value": "400ms",
|
|
1224
|
-
"variable": "var(--durations-slower)"
|
|
1225
|
-
},
|
|
1226
762
|
"durations.slowest": {
|
|
1227
763
|
"value": "500ms",
|
|
1228
764
|
"variable": "var(--durations-slowest)"
|
|
@@ -1252,73 +788,153 @@ const tokens = {
|
|
|
1252
788
|
"variable": "var(--shadows-xl)"
|
|
1253
789
|
},
|
|
1254
790
|
"zIndex.0": {
|
|
1255
|
-
"value":
|
|
791
|
+
"value": 0,
|
|
1256
792
|
"variable": "var(--z-index-0)"
|
|
1257
793
|
},
|
|
1258
|
-
"zIndex.1": {
|
|
1259
|
-
"value": "1",
|
|
1260
|
-
"variable": "var(--z-index-1)"
|
|
1261
|
-
},
|
|
1262
794
|
"zIndex.-1": {
|
|
1263
|
-
"value":
|
|
795
|
+
"value": -1,
|
|
1264
796
|
"variable": "var(--z-index--1)"
|
|
1265
797
|
},
|
|
1266
|
-
"zIndex.
|
|
1267
|
-
"value":
|
|
1268
|
-
"variable": "var(--z-index-
|
|
798
|
+
"zIndex.base": {
|
|
799
|
+
"value": 0,
|
|
800
|
+
"variable": "var(--z-index-base)"
|
|
801
|
+
},
|
|
802
|
+
"zIndex.sticky": {
|
|
803
|
+
"value": 100,
|
|
804
|
+
"variable": "var(--z-index-sticky)"
|
|
1269
805
|
},
|
|
1270
|
-
"zIndex.
|
|
1271
|
-
"value":
|
|
1272
|
-
"variable": "var(--z-index-
|
|
806
|
+
"zIndex.floating": {
|
|
807
|
+
"value": 150,
|
|
808
|
+
"variable": "var(--z-index-floating)"
|
|
1273
809
|
},
|
|
1274
|
-
"zIndex.
|
|
1275
|
-
"value":
|
|
1276
|
-
"variable": "var(--z-index-
|
|
810
|
+
"zIndex.panel": {
|
|
811
|
+
"value": 200,
|
|
812
|
+
"variable": "var(--z-index-panel)"
|
|
1277
813
|
},
|
|
1278
|
-
"zIndex.
|
|
1279
|
-
"value":
|
|
1280
|
-
"variable": "var(--z-index-
|
|
814
|
+
"zIndex.dropdown": {
|
|
815
|
+
"value": 1000,
|
|
816
|
+
"variable": "var(--z-index-dropdown)"
|
|
1281
817
|
},
|
|
1282
|
-
"zIndex.
|
|
1283
|
-
"value":
|
|
1284
|
-
"variable": "var(--z-index-
|
|
818
|
+
"zIndex.overlay": {
|
|
819
|
+
"value": 2000,
|
|
820
|
+
"variable": "var(--z-index-overlay)"
|
|
1285
821
|
},
|
|
1286
|
-
"zIndex.
|
|
1287
|
-
"value":
|
|
1288
|
-
"variable": "var(--z-index-
|
|
822
|
+
"zIndex.tooltip": {
|
|
823
|
+
"value": 3000,
|
|
824
|
+
"variable": "var(--z-index-tooltip)"
|
|
1289
825
|
},
|
|
1290
|
-
"zIndex.
|
|
1291
|
-
"value":
|
|
1292
|
-
"variable": "var(--z-index-
|
|
826
|
+
"zIndex.toast": {
|
|
827
|
+
"value": 4000,
|
|
828
|
+
"variable": "var(--z-index-toast)"
|
|
1293
829
|
},
|
|
1294
|
-
"zIndex.
|
|
1295
|
-
"value":
|
|
1296
|
-
"variable": "var(--z-index-
|
|
830
|
+
"zIndex.diagram.edge": {
|
|
831
|
+
"value": 20,
|
|
832
|
+
"variable": "var(--z-index-diagram-edge)"
|
|
1297
833
|
},
|
|
1298
|
-
"zIndex.
|
|
1299
|
-
"value":
|
|
1300
|
-
"variable": "var(--z-index-
|
|
834
|
+
"zIndex.diagram.edge.label": {
|
|
835
|
+
"value": 25,
|
|
836
|
+
"variable": "var(--z-index-diagram-edge-label)"
|
|
837
|
+
},
|
|
838
|
+
"zIndex.diagram.edge.controlPoint": {
|
|
839
|
+
"value": 30,
|
|
840
|
+
"variable": "var(--z-index-diagram-edge-control-point)"
|
|
841
|
+
},
|
|
842
|
+
"zIndex.diagram.node.compound": {
|
|
843
|
+
"value": 10,
|
|
844
|
+
"variable": "var(--z-index-diagram-node-compound)"
|
|
845
|
+
},
|
|
846
|
+
"zIndex.diagram.node.element": {
|
|
847
|
+
"value": 40,
|
|
848
|
+
"variable": "var(--z-index-diagram-node-element)"
|
|
1301
849
|
},
|
|
1302
850
|
"opacity.0": {
|
|
1303
|
-
"value":
|
|
851
|
+
"value": 0,
|
|
1304
852
|
"variable": "var(--opacity-0)"
|
|
1305
853
|
},
|
|
1306
854
|
"opacity.1": {
|
|
1307
|
-
"value":
|
|
855
|
+
"value": 1,
|
|
1308
856
|
"variable": "var(--opacity-1)"
|
|
1309
857
|
},
|
|
858
|
+
"opacity.0.05": {
|
|
859
|
+
"value": 0.05,
|
|
860
|
+
"variable": "var(--opacity-0\\.05)"
|
|
861
|
+
},
|
|
862
|
+
"opacity.0.1": {
|
|
863
|
+
"value": 0.1,
|
|
864
|
+
"variable": "var(--opacity-0\\.1)"
|
|
865
|
+
},
|
|
866
|
+
"opacity.0.15": {
|
|
867
|
+
"value": 0.15,
|
|
868
|
+
"variable": "var(--opacity-0\\.15)"
|
|
869
|
+
},
|
|
870
|
+
"opacity.0.2": {
|
|
871
|
+
"value": 0.2,
|
|
872
|
+
"variable": "var(--opacity-0\\.2)"
|
|
873
|
+
},
|
|
874
|
+
"opacity.0.25": {
|
|
875
|
+
"value": 0.25,
|
|
876
|
+
"variable": "var(--opacity-0\\.25)"
|
|
877
|
+
},
|
|
878
|
+
"opacity.0.3": {
|
|
879
|
+
"value": 0.3,
|
|
880
|
+
"variable": "var(--opacity-0\\.3)"
|
|
881
|
+
},
|
|
882
|
+
"opacity.0.35": {
|
|
883
|
+
"value": 0.35,
|
|
884
|
+
"variable": "var(--opacity-0\\.35)"
|
|
885
|
+
},
|
|
886
|
+
"opacity.0.4": {
|
|
887
|
+
"value": 0.4,
|
|
888
|
+
"variable": "var(--opacity-0\\.4)"
|
|
889
|
+
},
|
|
890
|
+
"opacity.0.45": {
|
|
891
|
+
"value": 0.45,
|
|
892
|
+
"variable": "var(--opacity-0\\.45)"
|
|
893
|
+
},
|
|
1310
894
|
"opacity.0.5": {
|
|
1311
|
-
"value":
|
|
895
|
+
"value": 0.5,
|
|
1312
896
|
"variable": "var(--opacity-0\\.5)"
|
|
1313
897
|
},
|
|
898
|
+
"opacity.0.55": {
|
|
899
|
+
"value": 0.55,
|
|
900
|
+
"variable": "var(--opacity-0\\.55)"
|
|
901
|
+
},
|
|
902
|
+
"opacity.0.6": {
|
|
903
|
+
"value": 0.6,
|
|
904
|
+
"variable": "var(--opacity-0\\.6)"
|
|
905
|
+
},
|
|
906
|
+
"opacity.0.65": {
|
|
907
|
+
"value": 0.65,
|
|
908
|
+
"variable": "var(--opacity-0\\.65)"
|
|
909
|
+
},
|
|
1314
910
|
"opacity.0.7": {
|
|
1315
|
-
"value":
|
|
911
|
+
"value": 0.7,
|
|
1316
912
|
"variable": "var(--opacity-0\\.7)"
|
|
1317
913
|
},
|
|
914
|
+
"opacity.0.75": {
|
|
915
|
+
"value": 0.75,
|
|
916
|
+
"variable": "var(--opacity-0\\.75)"
|
|
917
|
+
},
|
|
918
|
+
"opacity.0.8": {
|
|
919
|
+
"value": 0.8,
|
|
920
|
+
"variable": "var(--opacity-0\\.8)"
|
|
921
|
+
},
|
|
922
|
+
"opacity.0.85": {
|
|
923
|
+
"value": 0.85,
|
|
924
|
+
"variable": "var(--opacity-0\\.85)"
|
|
925
|
+
},
|
|
1318
926
|
"opacity.0.9": {
|
|
1319
|
-
"value":
|
|
927
|
+
"value": 0.9,
|
|
1320
928
|
"variable": "var(--opacity-0\\.9)"
|
|
1321
929
|
},
|
|
930
|
+
"opacity.0.95": {
|
|
931
|
+
"value": 0.95,
|
|
932
|
+
"variable": "var(--opacity-0\\.95)"
|
|
933
|
+
},
|
|
934
|
+
"opacity.disabled": {
|
|
935
|
+
"value": 0.6,
|
|
936
|
+
"variable": "var(--opacity-disabled)"
|
|
937
|
+
},
|
|
1322
938
|
"cursor.default": {
|
|
1323
939
|
"value": "default",
|
|
1324
940
|
"variable": "var(--cursor-default)"
|
|
@@ -1331,21 +947,25 @@ const tokens = {
|
|
|
1331
947
|
"value": "none",
|
|
1332
948
|
"variable": "var(--cursor-none)"
|
|
1333
949
|
},
|
|
1334
|
-
"
|
|
1335
|
-
"value": "
|
|
1336
|
-
"variable": "var(--
|
|
950
|
+
"cursor.inherit": {
|
|
951
|
+
"value": "inherit",
|
|
952
|
+
"variable": "var(--cursor-inherit)"
|
|
1337
953
|
},
|
|
1338
|
-
"
|
|
1339
|
-
"value": "
|
|
1340
|
-
"variable": "var(--
|
|
954
|
+
"cursor.grab": {
|
|
955
|
+
"value": "grab",
|
|
956
|
+
"variable": "var(--cursor-grab)"
|
|
1341
957
|
},
|
|
1342
|
-
"
|
|
1343
|
-
"value": "
|
|
1344
|
-
"variable": "var(--
|
|
958
|
+
"cursor.grabbing": {
|
|
959
|
+
"value": "grabbing",
|
|
960
|
+
"variable": "var(--cursor-grabbing)"
|
|
1345
961
|
},
|
|
1346
|
-
"
|
|
1347
|
-
"value": "
|
|
1348
|
-
"variable": "var(--
|
|
962
|
+
"cursor.move": {
|
|
963
|
+
"value": "move",
|
|
964
|
+
"variable": "var(--cursor-move)"
|
|
965
|
+
},
|
|
966
|
+
"cursor.zoom-out": {
|
|
967
|
+
"value": "zoom-out",
|
|
968
|
+
"variable": "var(--cursor-zoom-out)"
|
|
1349
969
|
},
|
|
1350
970
|
"breakpoints.xs": {
|
|
1351
971
|
"value": "36em",
|
|
@@ -1367,94 +987,182 @@ const tokens = {
|
|
|
1367
987
|
"value": "88em",
|
|
1368
988
|
"variable": "var(--breakpoints-xl)"
|
|
1369
989
|
},
|
|
990
|
+
"colors.surface.canvas": {
|
|
991
|
+
"value": "var(--colors-surface-canvas)",
|
|
992
|
+
"variable": "var(--colors-surface-canvas)"
|
|
993
|
+
},
|
|
994
|
+
"colors.surface.default": {
|
|
995
|
+
"value": "var(--colors-surface-default)",
|
|
996
|
+
"variable": "var(--colors-surface-default)"
|
|
997
|
+
},
|
|
998
|
+
"colors.surface.sunken": {
|
|
999
|
+
"value": "var(--colors-surface-sunken)",
|
|
1000
|
+
"variable": "var(--colors-surface-sunken)"
|
|
1001
|
+
},
|
|
1002
|
+
"colors.surface.sunken.hover": {
|
|
1003
|
+
"value": "var(--colors-surface-sunken-hover)",
|
|
1004
|
+
"variable": "var(--colors-surface-sunken-hover)"
|
|
1005
|
+
},
|
|
1006
|
+
"colors.surface.code": {
|
|
1007
|
+
"value": "var(--colors-surface-code)",
|
|
1008
|
+
"variable": "var(--colors-surface-code)"
|
|
1009
|
+
},
|
|
1010
|
+
"colors.surface.field": {
|
|
1011
|
+
"value": "var(--colors-surface-field)",
|
|
1012
|
+
"variable": "var(--colors-surface-field)"
|
|
1013
|
+
},
|
|
1014
|
+
"colors.surface.field.hover": {
|
|
1015
|
+
"value": "var(--colors-surface-field-hover)",
|
|
1016
|
+
"variable": "var(--colors-surface-field-hover)"
|
|
1017
|
+
},
|
|
1018
|
+
"colors.surface.hover": {
|
|
1019
|
+
"value": "var(--colors-surface-hover)",
|
|
1020
|
+
"variable": "var(--colors-surface-hover)"
|
|
1021
|
+
},
|
|
1022
|
+
"colors.surface.selected": {
|
|
1023
|
+
"value": "var(--colors-surface-selected)",
|
|
1024
|
+
"variable": "var(--colors-surface-selected)"
|
|
1025
|
+
},
|
|
1370
1026
|
"colors.text": {
|
|
1371
|
-
"value": "var(--
|
|
1027
|
+
"value": "var(--colors-text)",
|
|
1372
1028
|
"variable": "var(--colors-text)"
|
|
1373
1029
|
},
|
|
1030
|
+
"colors.text.default": {
|
|
1031
|
+
"value": "var(--colors-text)",
|
|
1032
|
+
"variable": "var(--colors-text-default)"
|
|
1033
|
+
},
|
|
1374
1034
|
"colors.text.bright": {
|
|
1375
|
-
"value": "var(--
|
|
1035
|
+
"value": "var(--colors-text-bright)",
|
|
1376
1036
|
"variable": "var(--colors-text-bright)"
|
|
1377
1037
|
},
|
|
1378
1038
|
"colors.text.dimmed": {
|
|
1379
|
-
"value": "var(--
|
|
1039
|
+
"value": "var(--colors-text-dimmed)",
|
|
1380
1040
|
"variable": "var(--colors-text-dimmed)"
|
|
1381
1041
|
},
|
|
1382
|
-
"colors.text.
|
|
1383
|
-
"value": "var(--
|
|
1384
|
-
"variable": "var(--colors-text-
|
|
1042
|
+
"colors.text.non-essential": {
|
|
1043
|
+
"value": "var(--colors-text-non-essential)",
|
|
1044
|
+
"variable": "var(--colors-text-non-essential)"
|
|
1045
|
+
},
|
|
1046
|
+
"colors.text.display": {
|
|
1047
|
+
"value": "var(--colors-text-display)",
|
|
1048
|
+
"variable": "var(--colors-text-display)"
|
|
1049
|
+
},
|
|
1050
|
+
"colors.text.heading": {
|
|
1051
|
+
"value": "var(--colors-text-heading)",
|
|
1052
|
+
"variable": "var(--colors-text-heading)"
|
|
1053
|
+
},
|
|
1054
|
+
"colors.text.link": {
|
|
1055
|
+
"value": "var(--colors-text-link)",
|
|
1056
|
+
"variable": "var(--colors-text-link)"
|
|
1057
|
+
},
|
|
1058
|
+
"colors.text.on-primary": {
|
|
1059
|
+
"value": "#ffffff",
|
|
1060
|
+
"variable": "var(--colors-text-on-primary)"
|
|
1061
|
+
},
|
|
1062
|
+
"colors.text.on-inverse": {
|
|
1063
|
+
"value": "var(--colors-text-on-inverse)",
|
|
1064
|
+
"variable": "var(--colors-text-on-inverse)"
|
|
1065
|
+
},
|
|
1066
|
+
"colors.text.warning": {
|
|
1067
|
+
"value": "var(--colors-text-warning)",
|
|
1068
|
+
"variable": "var(--colors-text-warning)"
|
|
1069
|
+
},
|
|
1070
|
+
"colors.border.subtle": {
|
|
1071
|
+
"value": "var(--colors-border-subtle)",
|
|
1072
|
+
"variable": "var(--colors-border-subtle)"
|
|
1385
1073
|
},
|
|
1386
|
-
"colors.default": {
|
|
1387
|
-
"value": "var(--
|
|
1388
|
-
"variable": "var(--colors-default)"
|
|
1074
|
+
"colors.border.default": {
|
|
1075
|
+
"value": "var(--colors-border-default)",
|
|
1076
|
+
"variable": "var(--colors-border-default)"
|
|
1389
1077
|
},
|
|
1390
|
-
"colors.
|
|
1391
|
-
"value": "var(--
|
|
1392
|
-
"variable": "var(--colors-
|
|
1078
|
+
"colors.border.strong": {
|
|
1079
|
+
"value": "var(--colors-border-strong)",
|
|
1080
|
+
"variable": "var(--colors-border-strong)"
|
|
1393
1081
|
},
|
|
1394
|
-
"colors.
|
|
1395
|
-
"value": "var(--
|
|
1396
|
-
"variable": "var(--colors-
|
|
1082
|
+
"colors.border.focus": {
|
|
1083
|
+
"value": "var(--colors-likec4-accent-6)",
|
|
1084
|
+
"variable": "var(--colors-border-focus)"
|
|
1397
1085
|
},
|
|
1398
|
-
"colors.
|
|
1399
|
-
"value": "var(--
|
|
1400
|
-
"variable": "var(--colors-
|
|
1086
|
+
"colors.border.outline": {
|
|
1087
|
+
"value": "var(--colors-likec4-accent-7)",
|
|
1088
|
+
"variable": "var(--colors-border-outline)"
|
|
1089
|
+
},
|
|
1090
|
+
"colors.disabled.body": {
|
|
1091
|
+
"value": "var(--colors-disabled-body)",
|
|
1092
|
+
"variable": "var(--colors-disabled-body)"
|
|
1401
1093
|
},
|
|
1402
1094
|
"colors.disabled.text": {
|
|
1403
|
-
"value": "var(--
|
|
1095
|
+
"value": "var(--colors-disabled-text)",
|
|
1404
1096
|
"variable": "var(--colors-disabled-text)"
|
|
1405
1097
|
},
|
|
1406
1098
|
"colors.disabled.border": {
|
|
1407
|
-
"value": "var(--
|
|
1099
|
+
"value": "var(--colors-disabled-border)",
|
|
1408
1100
|
"variable": "var(--colors-disabled-border)"
|
|
1409
1101
|
},
|
|
1410
|
-
"colors.
|
|
1411
|
-
"value": "var(--
|
|
1412
|
-
"variable": "var(--colors-
|
|
1102
|
+
"colors.highlight.body": {
|
|
1103
|
+
"value": "var(--colors-highlight-body)",
|
|
1104
|
+
"variable": "var(--colors-highlight-body)"
|
|
1413
1105
|
},
|
|
1414
|
-
"colors.
|
|
1415
|
-
"value": "
|
|
1416
|
-
"variable": "var(--colors-
|
|
1106
|
+
"colors.highlight.text": {
|
|
1107
|
+
"value": "#000000",
|
|
1108
|
+
"variable": "var(--colors-highlight-text)"
|
|
1417
1109
|
},
|
|
1418
|
-
"colors.
|
|
1419
|
-
"value": "var(--colors-
|
|
1420
|
-
"variable": "var(--colors-
|
|
1110
|
+
"colors.primary.body": {
|
|
1111
|
+
"value": "var(--colors-likec4-accent-6)",
|
|
1112
|
+
"variable": "var(--colors-primary-body)"
|
|
1421
1113
|
},
|
|
1422
|
-
"colors.
|
|
1423
|
-
"value": "
|
|
1424
|
-
"variable": "var(--colors-
|
|
1114
|
+
"colors.primary.body.hover": {
|
|
1115
|
+
"value": "var(--colors-likec4-accent-5)",
|
|
1116
|
+
"variable": "var(--colors-primary-body-hover)"
|
|
1425
1117
|
},
|
|
1426
|
-
"colors.
|
|
1427
|
-
"value": "var(--colors-
|
|
1428
|
-
"variable": "var(--colors-
|
|
1118
|
+
"colors.primary.body.focused": {
|
|
1119
|
+
"value": "var(--colors-likec4-accent-7)",
|
|
1120
|
+
"variable": "var(--colors-primary-body-focused)"
|
|
1429
1121
|
},
|
|
1430
|
-
"colors.
|
|
1431
|
-
"value": "
|
|
1432
|
-
"variable": "var(--colors-
|
|
1122
|
+
"colors.primary.body.light": {
|
|
1123
|
+
"value": "var(--colors-primary-body-light)",
|
|
1124
|
+
"variable": "var(--colors-primary-body-light)"
|
|
1433
1125
|
},
|
|
1434
|
-
"colors.
|
|
1435
|
-
"value": "var(--colors-
|
|
1436
|
-
"variable": "var(--colors-
|
|
1126
|
+
"colors.primary.body.lightHover": {
|
|
1127
|
+
"value": "var(--colors-primary-body-light-hover)",
|
|
1128
|
+
"variable": "var(--colors-primary-body-light-hover)"
|
|
1437
1129
|
},
|
|
1438
|
-
"colors.
|
|
1439
|
-
"value": "
|
|
1440
|
-
"variable": "var(--colors-
|
|
1130
|
+
"colors.primary.text": {
|
|
1131
|
+
"value": "#ffffff",
|
|
1132
|
+
"variable": "var(--colors-primary-text)"
|
|
1133
|
+
},
|
|
1134
|
+
"colors.primary.text.light": {
|
|
1135
|
+
"value": "var(--colors-primary-text-light)",
|
|
1136
|
+
"variable": "var(--colors-primary-text-light)"
|
|
1137
|
+
},
|
|
1138
|
+
"colors.primary.border": {
|
|
1139
|
+
"value": "var(--colors-likec4-accent-6)",
|
|
1140
|
+
"variable": "var(--colors-primary-border)"
|
|
1141
|
+
},
|
|
1142
|
+
"colors.primary.border.hover": {
|
|
1143
|
+
"value": "var(--colors-likec4-accent-5)",
|
|
1144
|
+
"variable": "var(--colors-primary-border-hover)"
|
|
1145
|
+
},
|
|
1146
|
+
"colors.primary.border.focused": {
|
|
1147
|
+
"value": "var(--colors-likec4-accent-7)",
|
|
1148
|
+
"variable": "var(--colors-primary-border-focused)"
|
|
1149
|
+
},
|
|
1150
|
+
"colors.warning.body": {
|
|
1151
|
+
"value": "var(--colors-warning-body)",
|
|
1152
|
+
"variable": "var(--colors-warning-body)"
|
|
1153
|
+
},
|
|
1154
|
+
"colors.warning.text": {
|
|
1155
|
+
"value": "#000000",
|
|
1156
|
+
"variable": "var(--colors-warning-text)"
|
|
1441
1157
|
},
|
|
1442
1158
|
"colors.diagram.background": {
|
|
1443
|
-
"value": "var(--
|
|
1159
|
+
"value": "var(--colors-surface-canvas)",
|
|
1444
1160
|
"variable": "var(--colors-diagram-background)"
|
|
1445
1161
|
},
|
|
1446
1162
|
"colors.diagram.background.pattern": {
|
|
1447
1163
|
"value": "var(--colors-diagram-background-pattern)",
|
|
1448
1164
|
"variable": "var(--colors-diagram-background-pattern)"
|
|
1449
1165
|
},
|
|
1450
|
-
"colors.likec4.background": {
|
|
1451
|
-
"value": "var(--mantine-color-body)",
|
|
1452
|
-
"variable": "var(--colors-likec4-background)"
|
|
1453
|
-
},
|
|
1454
|
-
"colors.likec4.background.pattern": {
|
|
1455
|
-
"value": "var(--colors-likec4-background-pattern)",
|
|
1456
|
-
"variable": "var(--colors-likec4-background-pattern)"
|
|
1457
|
-
},
|
|
1458
1166
|
"colors.likec4.mixColor": {
|
|
1459
1167
|
"value": "var(--colors-likec4-mix-color)",
|
|
1460
1168
|
"variable": "var(--colors-likec4-mix-color)"
|
|
@@ -1484,7 +1192,7 @@ const tokens = {
|
|
|
1484
1192
|
"variable": "var(--colors-likec4-panel-border)"
|
|
1485
1193
|
},
|
|
1486
1194
|
"colors.likec4.panel.text": {
|
|
1487
|
-
"value": "
|
|
1195
|
+
"value": "color-mix(in srgb, var(--colors-text-default) 85%, transparent)",
|
|
1488
1196
|
"variable": "var(--colors-likec4-panel-text)"
|
|
1489
1197
|
},
|
|
1490
1198
|
"colors.likec4.panel.text.dimmed": {
|
|
@@ -1492,7 +1200,7 @@ const tokens = {
|
|
|
1492
1200
|
"variable": "var(--colors-likec4-panel-text-dimmed)"
|
|
1493
1201
|
},
|
|
1494
1202
|
"colors.likec4.panel.action": {
|
|
1495
|
-
"value": "
|
|
1203
|
+
"value": "color-mix(in srgb, var(--colors-text-default) 90%, transparent)",
|
|
1496
1204
|
"variable": "var(--colors-likec4-panel-action)"
|
|
1497
1205
|
},
|
|
1498
1206
|
"colors.likec4.panel.action.disabled": {
|
|
@@ -1500,7 +1208,7 @@ const tokens = {
|
|
|
1500
1208
|
"variable": "var(--colors-likec4-panel-action-disabled)"
|
|
1501
1209
|
},
|
|
1502
1210
|
"colors.likec4.panel.action.hover": {
|
|
1503
|
-
"value": "var(--
|
|
1211
|
+
"value": "var(--colors-text-bright)",
|
|
1504
1212
|
"variable": "var(--colors-likec4-panel-action-hover)"
|
|
1505
1213
|
},
|
|
1506
1214
|
"colors.likec4.panel.action.bg": {
|
|
@@ -1512,7 +1220,7 @@ const tokens = {
|
|
|
1512
1220
|
"variable": "var(--colors-likec4-panel-action-bg-hover)"
|
|
1513
1221
|
},
|
|
1514
1222
|
"colors.likec4.panel.action.warning": {
|
|
1515
|
-
"value": "
|
|
1223
|
+
"value": "#fd7e14",
|
|
1516
1224
|
"variable": "var(--colors-likec4-panel-action-warning)"
|
|
1517
1225
|
},
|
|
1518
1226
|
"colors.likec4.panel.action.warning.hover": {
|
|
@@ -1544,19 +1252,31 @@ const tokens = {
|
|
|
1544
1252
|
"variable": "var(--colors-likec4-overlay-body)"
|
|
1545
1253
|
},
|
|
1546
1254
|
"colors.likec4.overlay.border": {
|
|
1547
|
-
"value": "
|
|
1255
|
+
"value": "color-mix(in srgb, var(--colors-border-default) 50%, transparent)",
|
|
1548
1256
|
"variable": "var(--colors-likec4-overlay-border)"
|
|
1549
1257
|
},
|
|
1258
|
+
"colors.likec4.walkthrough.parallelFrame": {
|
|
1259
|
+
"value": "var(--colors-likec4-walkthrough-parallel-frame)",
|
|
1260
|
+
"variable": "var(--colors-likec4-walkthrough-parallel-frame)"
|
|
1261
|
+
},
|
|
1262
|
+
"colors.likec4.compare.manual": {
|
|
1263
|
+
"value": "var(--colors-likec4-compare-manual)",
|
|
1264
|
+
"variable": "var(--colors-likec4-compare-manual)"
|
|
1265
|
+
},
|
|
1266
|
+
"colors.likec4.compare.outline": {
|
|
1267
|
+
"value": "var(--colors-likec4-compare-outline)",
|
|
1268
|
+
"variable": "var(--colors-likec4-compare-outline)"
|
|
1269
|
+
},
|
|
1550
1270
|
"colors.likec4.compare.latest": {
|
|
1551
|
-
"value": "
|
|
1271
|
+
"value": "#40c057",
|
|
1552
1272
|
"variable": "var(--colors-likec4-compare-latest)"
|
|
1553
1273
|
},
|
|
1554
1274
|
"colors.subflow.opt": {
|
|
1555
|
-
"value": "oklch(from
|
|
1275
|
+
"value": "oklch(from #3b5bdb l c h / 8%)",
|
|
1556
1276
|
"variable": "var(--colors-subflow-opt)"
|
|
1557
1277
|
},
|
|
1558
1278
|
"colors.subflow.opt.hovered": {
|
|
1559
|
-
"value": "oklch(from
|
|
1279
|
+
"value": "oklch(from #3b5bdb l c h / 13%)",
|
|
1560
1280
|
"variable": "var(--colors-subflow-opt-hovered)"
|
|
1561
1281
|
},
|
|
1562
1282
|
"colors.subflow.opt.text": {
|
|
@@ -1564,11 +1284,11 @@ const tokens = {
|
|
|
1564
1284
|
"variable": "var(--colors-subflow-opt-text)"
|
|
1565
1285
|
},
|
|
1566
1286
|
"colors.subflow.opt.border": {
|
|
1567
|
-
"value": "oklch(from
|
|
1287
|
+
"value": "oklch(from #4263eb l c h / 65%)",
|
|
1568
1288
|
"variable": "var(--colors-subflow-opt-border)"
|
|
1569
1289
|
},
|
|
1570
1290
|
"colors.subflow.opt.label": {
|
|
1571
|
-
"value": "oklch(from
|
|
1291
|
+
"value": "oklch(from #4263eb l c h / 20%)",
|
|
1572
1292
|
"variable": "var(--colors-subflow-opt-label)"
|
|
1573
1293
|
},
|
|
1574
1294
|
"colors.subflow.loop": {
|
|
@@ -1588,11 +1308,11 @@ const tokens = {
|
|
|
1588
1308
|
"variable": "var(--colors-subflow-loop-border)"
|
|
1589
1309
|
},
|
|
1590
1310
|
"colors.subflow.loop.header": {
|
|
1591
|
-
"value": "oklch(from
|
|
1311
|
+
"value": "oklch(from #099268 l c h / 40%)",
|
|
1592
1312
|
"variable": "var(--colors-subflow-loop-header)"
|
|
1593
1313
|
},
|
|
1594
1314
|
"colors.subflow.loop.label": {
|
|
1595
|
-
"value": "oklch(from
|
|
1315
|
+
"value": "oklch(from #099268 l c h / 20%)",
|
|
1596
1316
|
"variable": "var(--colors-subflow-loop-label)"
|
|
1597
1317
|
},
|
|
1598
1318
|
"colors.subflow.try": {
|
|
@@ -1616,7 +1336,7 @@ const tokens = {
|
|
|
1616
1336
|
"variable": "var(--colors-subflow-try-header)"
|
|
1617
1337
|
},
|
|
1618
1338
|
"colors.subflow.try.label": {
|
|
1619
|
-
"value": "oklch(from
|
|
1339
|
+
"value": "oklch(from #f08c00 l c h / 20%)",
|
|
1620
1340
|
"variable": "var(--colors-subflow-try-label)"
|
|
1621
1341
|
},
|
|
1622
1342
|
"colors.subflow.break": {
|
|
@@ -1632,7 +1352,7 @@ const tokens = {
|
|
|
1632
1352
|
"variable": "var(--colors-subflow-break-text)"
|
|
1633
1353
|
},
|
|
1634
1354
|
"colors.subflow.break.border": {
|
|
1635
|
-
"value": "oklch(from
|
|
1355
|
+
"value": "oklch(from #f03e3e l c h / 65%)",
|
|
1636
1356
|
"variable": "var(--colors-subflow-break-border)"
|
|
1637
1357
|
},
|
|
1638
1358
|
"colors.subflow.break.header": {
|
|
@@ -1640,15 +1360,15 @@ const tokens = {
|
|
|
1640
1360
|
"variable": "var(--colors-subflow-break-header)"
|
|
1641
1361
|
},
|
|
1642
1362
|
"colors.subflow.break.label": {
|
|
1643
|
-
"value": "oklch(from
|
|
1363
|
+
"value": "oklch(from #e03131 l c h / 25%)",
|
|
1644
1364
|
"variable": "var(--colors-subflow-break-label)"
|
|
1645
1365
|
},
|
|
1646
1366
|
"colors.subflow.par": {
|
|
1647
|
-
"value": "oklch(from
|
|
1367
|
+
"value": "oklch(from #9c36b5 l c h / 8%)",
|
|
1648
1368
|
"variable": "var(--colors-subflow-par)"
|
|
1649
1369
|
},
|
|
1650
1370
|
"colors.subflow.par.hovered": {
|
|
1651
|
-
"value": "oklch(from
|
|
1371
|
+
"value": "oklch(from #9c36b5 l c h / 13%)",
|
|
1652
1372
|
"variable": "var(--colors-subflow-par-hovered)"
|
|
1653
1373
|
},
|
|
1654
1374
|
"colors.subflow.par.text": {
|
|
@@ -1656,15 +1376,15 @@ const tokens = {
|
|
|
1656
1376
|
"variable": "var(--colors-subflow-par-text)"
|
|
1657
1377
|
},
|
|
1658
1378
|
"colors.subflow.par.border": {
|
|
1659
|
-
"value": "oklch(from
|
|
1379
|
+
"value": "oklch(from #ae3ec9 l c h / 65%)",
|
|
1660
1380
|
"variable": "var(--colors-subflow-par-border)"
|
|
1661
1381
|
},
|
|
1662
1382
|
"colors.subflow.par.header": {
|
|
1663
|
-
"value": "oklch(from
|
|
1383
|
+
"value": "oklch(from #9c36b5 l c h / 40%)",
|
|
1664
1384
|
"variable": "var(--colors-subflow-par-header)"
|
|
1665
1385
|
},
|
|
1666
1386
|
"colors.subflow.par.label": {
|
|
1667
|
-
"value": "oklch(from
|
|
1387
|
+
"value": "oklch(from #ae3ec9 l c h / 20%)",
|
|
1668
1388
|
"variable": "var(--colors-subflow-par-label)"
|
|
1669
1389
|
},
|
|
1670
1390
|
"colors.subflow.alt": {
|
|
@@ -1676,7 +1396,7 @@ const tokens = {
|
|
|
1676
1396
|
"variable": "var(--colors-subflow-alt-hovered)"
|
|
1677
1397
|
},
|
|
1678
1398
|
"colors.subflow.alt.header": {
|
|
1679
|
-
"value": "oklch(from
|
|
1399
|
+
"value": "oklch(from #6741d9 l c h / 50%)",
|
|
1680
1400
|
"variable": "var(--colors-subflow-alt-header)"
|
|
1681
1401
|
},
|
|
1682
1402
|
"colors.subflow.alt.text": {
|
|
@@ -1684,11 +1404,11 @@ const tokens = {
|
|
|
1684
1404
|
"variable": "var(--colors-subflow-alt-text)"
|
|
1685
1405
|
},
|
|
1686
1406
|
"colors.subflow.alt.border": {
|
|
1687
|
-
"value": "oklch(from
|
|
1407
|
+
"value": "oklch(from #7048e8 l c h / 65%)",
|
|
1688
1408
|
"variable": "var(--colors-subflow-alt-border)"
|
|
1689
1409
|
},
|
|
1690
1410
|
"colors.subflow.alt.label": {
|
|
1691
|
-
"value": "oklch(from
|
|
1411
|
+
"value": "oklch(from #7048e8 l c h / 30%)",
|
|
1692
1412
|
"variable": "var(--colors-subflow-alt-label)"
|
|
1693
1413
|
},
|
|
1694
1414
|
"colors.amber.1": {
|
|
@@ -2527,18 +2247,6 @@ const tokens = {
|
|
|
2527
2247
|
"value": "calc(var(--spacing-likec4-xl) * -1)",
|
|
2528
2248
|
"variable": "var(--spacing-likec4-xl)"
|
|
2529
2249
|
},
|
|
2530
|
-
"colors.likec4.walkthrough.parallelFrame": {
|
|
2531
|
-
"value": "var(--colors-likec4-walkthrough-parallel-frame)",
|
|
2532
|
-
"variable": "var(--colors-likec4-walkthrough-parallel-frame)"
|
|
2533
|
-
},
|
|
2534
|
-
"colors.likec4.compare.manual": {
|
|
2535
|
-
"value": "var(--colors-likec4-compare-manual)",
|
|
2536
|
-
"variable": "var(--colors-likec4-compare-manual)"
|
|
2537
|
-
},
|
|
2538
|
-
"colors.likec4.compare.manual.outline": {
|
|
2539
|
-
"value": "var(--colors-likec4-compare-manual-outline)",
|
|
2540
|
-
"variable": "var(--colors-likec4-compare-manual-outline)"
|
|
2541
|
-
},
|
|
2542
2250
|
"colors.colorPalette.opt": {
|
|
2543
2251
|
"value": "var(--colors-color-palette-opt)",
|
|
2544
2252
|
"variable": "var(--colors-color-palette-opt)"
|