@sragatiping/cuboid 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/components/ApiResponseViewer/ApiResponseViewer.d.ts +2 -1
  2. package/dist/components/CodeBlock/CodeBlock.d.ts +1 -1
  3. package/dist/components/CodeBlock/CodeSurface.d.ts +1 -1
  4. package/dist/components/CodeBlock/CodeViewingDocs.d.ts +3 -2
  5. package/dist/components/CodeBlock/JsonCodeView.d.ts +2 -1
  6. package/dist/components/CodeSnippet/CodeSnippet.d.ts +1 -1
  7. package/dist/components/DataGrid/DataGrid.d.ts +1 -1
  8. package/dist/components/Graph/GraphCanvas.d.ts +1 -1
  9. package/dist/components/Graph/GraphCard.d.ts +1 -1
  10. package/dist/components/Graph/GraphHandle.d.ts +2 -2
  11. package/dist/components/Graph/GraphRow.d.ts +1 -1
  12. package/dist/components/JsonGraph/JsonCardTitle.d.ts +1 -1
  13. package/dist/components/JsonGraph/JsonFieldRow.d.ts +2 -2
  14. package/dist/components/JsonGraph/JsonInputHandle.d.ts +2 -1
  15. package/dist/components/JsonGraph/JsonObjectRow.d.ts +1 -1
  16. package/dist/components/JsonViewer/JsonViewer.d.ts +2 -1
  17. package/dist/components/core/ActionMenu/ActionMenu.d.ts +1 -1
  18. package/dist/components/core/ActionMenu/ActionMenuItem.d.ts +1 -1
  19. package/dist/components/core/ActionMenu/ActionMenuList.d.ts +3 -3
  20. package/dist/components/core/Breadcrumb/BreadcrumbLink.d.ts +1 -1
  21. package/dist/components/core/Breadcrumb/Breadcrumbs.d.ts +2 -1
  22. package/dist/components/core/Button/Button.d.ts +1 -1
  23. package/dist/components/core/Callout/Callout.d.ts +1 -1
  24. package/dist/components/core/Container/Container.d.ts +1 -1
  25. package/dist/components/core/Divider/Divider.d.ts +1 -1
  26. package/dist/components/core/Highlight/Highlight.d.ts +1 -1
  27. package/dist/components/core/Icon/Icon.d.ts +3 -3
  28. package/dist/components/core/IconButton/IconButton.d.ts +1 -1
  29. package/dist/components/core/Link/Link.d.ts +1 -1
  30. package/dist/components/core/Pill/Pill.d.ts +2 -1
  31. package/dist/components/core/Popover/Popover.d.ts +1 -1
  32. package/dist/components/core/ResizeHandle/ResizeHandle.d.ts +2 -1
  33. package/dist/components/core/Sheet/Sheet.d.ts +2 -2
  34. package/dist/components/core/Sidebar/Sidebar.d.ts +5 -5
  35. package/dist/components/core/SiteHeader/SiteHeader.d.ts +2 -2
  36. package/dist/components/core/SplitLayout/SplitLayout.d.ts +2 -2
  37. package/dist/components/core/Text/Text.d.ts +1 -1
  38. package/dist/components/core/Tooltip/Tooltip.d.ts +1 -1
  39. package/dist/globalColor-BecSaRw9.mjs +1736 -0
  40. package/dist/globalColor-BecSaRw9.mjs.map +1 -0
  41. package/dist/globalColor-DO1bmuFH.js +2 -0
  42. package/dist/globalColor-DO1bmuFH.js.map +1 -0
  43. package/dist/index.cjs.js +3 -3
  44. package/dist/index.cjs.js.map +1 -1
  45. package/dist/index.es.js +2491 -4177
  46. package/dist/index.es.js.map +1 -1
  47. package/dist/style.css +1 -1
  48. package/dist/theme/ThemeContext.d.ts +1 -1
  49. package/dist/theme/foundationTokens.d.ts +7 -0
  50. package/dist/theme/foundationTypes.d.ts +36 -0
  51. package/dist/theme/output/theme.json.d.ts +30 -3
  52. package/dist/theme/types.d.ts +16 -1
  53. package/dist/tokens.cjs.js +2 -0
  54. package/dist/tokens.cjs.js.map +1 -0
  55. package/dist/tokens.d.ts +10 -0
  56. package/dist/tokens.es.js +55 -0
  57. package/dist/tokens.es.js.map +1 -0
  58. package/package.json +6 -1
  59. package/src/theme/output/components.css +1 -0
  60. package/src/theme/output/theme.css +18 -2
@@ -0,0 +1,1736 @@
1
+ const t = {
2
+ fontFamily: {
3
+ base: "'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'",
4
+ mono: "'Mona Sans Mono', monospace"
5
+ },
6
+ fontSize: {
7
+ xs: "0.75rem",
8
+ sm: "0.875rem",
9
+ md: "1.25rem",
10
+ lg: "1.5rem",
11
+ xl: "2rem",
12
+ xxl: "2rem"
13
+ },
14
+ fontWeight: {
15
+ regular: 400,
16
+ medium: 500,
17
+ semibold: 600,
18
+ bold: 700
19
+ },
20
+ lineHeight: {
21
+ tight: 1.25,
22
+ normal: 1.5,
23
+ relaxed: 1.75
24
+ },
25
+ text: {
26
+ display: {
27
+ fontSize: "2rem",
28
+ fontWeight: 600,
29
+ lineHeight: 1.25
30
+ },
31
+ titleLarge: {
32
+ fontSize: "2rem",
33
+ fontWeight: 600,
34
+ lineHeight: 1.25
35
+ },
36
+ titleMedium: {
37
+ fontSize: "1.25rem",
38
+ fontWeight: 600,
39
+ lineHeight: 1.25
40
+ },
41
+ titleSmall: {
42
+ fontSize: "0.875rem",
43
+ fontWeight: 600,
44
+ lineHeight: 1.5
45
+ },
46
+ subtitle: {
47
+ fontSize: "1.25rem",
48
+ fontWeight: 400,
49
+ lineHeight: 1.5
50
+ },
51
+ subheadXs: {
52
+ fontSize: "0.625rem",
53
+ fontWeight: 600,
54
+ lineHeight: 1.2
55
+ },
56
+ subheadSm: {
57
+ fontSize: "0.75rem",
58
+ fontWeight: 600,
59
+ lineHeight: 1.3333
60
+ },
61
+ subheadMd: {
62
+ fontSize: "0.875rem",
63
+ fontWeight: 600,
64
+ lineHeight: 1.4286
65
+ },
66
+ bodyLarge: {
67
+ fontSize: "1.25rem",
68
+ fontWeight: 400,
69
+ lineHeight: 1.75
70
+ },
71
+ bodyMedium: {
72
+ fontSize: "0.875rem",
73
+ fontWeight: 400,
74
+ lineHeight: 1.5
75
+ },
76
+ bodyStrong: {
77
+ fontSize: "0.875rem",
78
+ fontWeight: 600,
79
+ lineHeight: 1.5
80
+ },
81
+ bodySmall: {
82
+ fontSize: "0.75rem",
83
+ fontWeight: 400,
84
+ lineHeight: 1.5
85
+ },
86
+ caption: {
87
+ fontSize: "0.75rem",
88
+ fontWeight: 400,
89
+ lineHeight: 1.25
90
+ },
91
+ codeBlock: {
92
+ fontSize: "0.75rem",
93
+ fontWeight: 400,
94
+ lineHeight: 1.25,
95
+ fontFamily: "'Mona Sans Mono', monospace"
96
+ },
97
+ inlineCode: {
98
+ fontSize: "0.875em",
99
+ fontWeight: 400,
100
+ lineHeight: 1.5,
101
+ fontFamily: "'Mona Sans Mono', monospace"
102
+ }
103
+ },
104
+ button: {
105
+ extraSmall: {
106
+ fontSize: "0.75rem",
107
+ lineHeight: "0.875rem"
108
+ },
109
+ small: {
110
+ fontSize: "0.875rem",
111
+ lineHeight: "1rem"
112
+ },
113
+ medium: {
114
+ fontSize: "0.875rem",
115
+ lineHeight: "1.25rem"
116
+ },
117
+ large: {
118
+ fontSize: "1rem",
119
+ lineHeight: "1.5rem"
120
+ }
121
+ }
122
+ }, a = {
123
+ functional: {
124
+ background: {
125
+ default: "#FFFFFF",
126
+ muted: "#F9F9F8",
127
+ inset: "#F4F4F2",
128
+ emphasis: "#474746",
129
+ disabled: "#F4F4F2",
130
+ transparent: "transparent",
131
+ inverse: "#474746",
132
+ neutral: {
133
+ muted: "#EFEEEA",
134
+ emphasis: "#6F6F6D"
135
+ }
136
+ },
137
+ foreground: {
138
+ default: "#6F6F6D",
139
+ muted: "#888783",
140
+ onEmphasis: "#FFFFFF",
141
+ disabled: "#D8D7D4",
142
+ link: "#525252",
143
+ white: "#FFFFFF",
144
+ neutral: "#6F6F6D"
145
+ },
146
+ border: {
147
+ default: "#E2E1DD",
148
+ muted: "rgba(58,58,57,0.1)",
149
+ emphasis: "#D8D7D4",
150
+ disabled: "#EFEEEA",
151
+ transparent: "transparent",
152
+ translucent: "rgba(58,58,57,0.08)",
153
+ neutral: {
154
+ muted: "#EFEEEA",
155
+ emphasis: "#D8D7D4"
156
+ }
157
+ },
158
+ syntax: {
159
+ comment: "#888783",
160
+ key: "#6F6F6D",
161
+ constant: "#3a80f9 ",
162
+ constantOtherReferenceLink: "#0a3069",
163
+ entity: "#d22799",
164
+ entityTag: "#d22799",
165
+ keyword: "#EF6262",
166
+ string: "#EF6262",
167
+ stringRegexp: "#A2D794",
168
+ variable: "#FF8635",
169
+ brackethighlighterAngle: "#ABA9A5",
170
+ brackethighlighterUnmatched: "#F99090",
171
+ carriageReturnBg: "#FBC4C4",
172
+ carriageReturnText: "#FFFFFF",
173
+ invalidIllegalText: "#FFFFFF",
174
+ invalidIllegalBg: "#F99090",
175
+ markupBold: "#525252",
176
+ markupItalic: "#525252",
177
+ markupHeading: "#09B2B5",
178
+ markupList: "#A2D794",
179
+ markupInsertedBg: "#F0F9EF",
180
+ markupInsertedText: "#A2D794",
181
+ markupDeletedBg: "#FFF6F5",
182
+ markupDeletedText: "#F99090",
183
+ markupChangedBg: "#FEE8D8",
184
+ markupChangedText: "#FF8635",
185
+ nullLiteral: "#E2E1DD",
186
+ booleanLiteral: "#9035BD",
187
+ numberLiteral: "#3a80f9 ",
188
+ bracket: "#E01280",
189
+ bracketNested: "#9035BD",
190
+ stringUrl: "#6565FA",
191
+ stringEmail: "#6565FA",
192
+ stringUuid: "#D8D7D4",
193
+ rowHoverBg: "#F9F9F8",
194
+ collapsedRowBg: "#FFFFFF",
195
+ watchMark: "#518ff8",
196
+ watchMarkHover: "#518ff8",
197
+ watchRowBg: "#F4F8FF"
198
+ }
199
+ }
200
+ }, i = {
201
+ space: {
202
+ 1: "0.0625rem",
203
+ 2: "0.125rem",
204
+ 3: "0.1875rem",
205
+ 4: "0.25rem",
206
+ 5: "0.3125rem",
207
+ 6: "0.375rem",
208
+ 8: "0.5rem",
209
+ 10: "0.625rem",
210
+ 12: "0.75rem"
211
+ },
212
+ stack: {
213
+ gap: {
214
+ none: "0",
215
+ xxs: "0.25rem",
216
+ xs: "0.5rem",
217
+ sm: "0.75rem",
218
+ md: "1rem",
219
+ lg: "1.5rem",
220
+ xl: "2rem",
221
+ xxl: "3rem"
222
+ },
223
+ padding: {
224
+ none: "0",
225
+ xxs: "0.25rem",
226
+ xs: "0.5rem",
227
+ sm: "0.75rem",
228
+ md: "1rem",
229
+ lg: "1.5rem",
230
+ xl: "2rem",
231
+ xxl: "3rem"
232
+ }
233
+ },
234
+ layout: {
235
+ pageMaxWidth: "56rem",
236
+ contentMaxWidth: "40rem",
237
+ sectionLabelWidth: "clamp(6.5rem, 25%, 10rem)",
238
+ pagePaddingInline: "1.25rem"
239
+ },
240
+ container: {
241
+ panelMinWidth: "15rem",
242
+ sheetWidthSm: "20rem",
243
+ sheetWidthMd: "25rem",
244
+ sheetWidthLg: "35rem",
245
+ sidebarWidthSm: "15rem",
246
+ sidebarWidthMd: "17rem",
247
+ sidebarWidthLg: "20rem",
248
+ sidebarMinWidth: "12.5rem",
249
+ sidebarMaxWidth: "30rem",
250
+ tooltipMaxWidth: "15rem",
251
+ tooltipMaxWidthSingleLine: "7.5rem",
252
+ popoverMinWidth: "10rem",
253
+ popoverMaxWidth: "20rem"
254
+ },
255
+ highlight: {
256
+ paddingInline: "0.125rem",
257
+ paddingBlock: "0",
258
+ borderRadius: "0.125rem"
259
+ },
260
+ borderRadius: {
261
+ sm: "0.25rem",
262
+ md: "0.5rem",
263
+ lg: "1rem",
264
+ xl: "1.5rem",
265
+ full: "624.9375rem"
266
+ },
267
+ borderWidth: {
268
+ thin: "max(1px, 0.0625rem)",
269
+ thick: "max(2px, 0.125rem)"
270
+ },
271
+ breakpoints: {
272
+ md: "48rem",
273
+ lg: "63.25rem"
274
+ },
275
+ control: {
276
+ extraSmall: {
277
+ size: "1.5rem",
278
+ borderRadius: "0.375rem",
279
+ gap: "0.5rem",
280
+ paddingBlock: "0.375rem",
281
+ paddingInline: {
282
+ condensed: "0.5rem",
283
+ normal: "0.75rem",
284
+ spacious: "1.5rem"
285
+ }
286
+ },
287
+ small: {
288
+ size: "1.75rem",
289
+ borderRadius: "0.375rem",
290
+ gap: "0.5rem",
291
+ paddingBlock: "0.375rem",
292
+ paddingInline: {
293
+ condensed: "0.5rem",
294
+ normal: "0.75rem",
295
+ spacious: "1.5rem"
296
+ }
297
+ },
298
+ medium: {
299
+ size: "2rem",
300
+ borderRadius: "0.5rem",
301
+ gap: "0.75rem",
302
+ paddingBlock: "0.5rem",
303
+ paddingInline: {
304
+ condensed: "0.75rem",
305
+ normal: "1rem",
306
+ spacious: "1.5rem"
307
+ }
308
+ },
309
+ large: {
310
+ size: "2.5rem",
311
+ borderRadius: "0.5rem",
312
+ gap: "1rem",
313
+ paddingBlock: "0.75rem",
314
+ paddingInline: {
315
+ condensed: "1rem",
316
+ normal: "1.25rem",
317
+ spacious: "1.5rem"
318
+ }
319
+ }
320
+ },
321
+ tooltip: {
322
+ gap: "0.125rem",
323
+ borderRadius: "0.25rem",
324
+ paddingInline: "0.375rem",
325
+ paddingBlock: "0.125rem",
326
+ maxWidth: "15rem",
327
+ maxWidthSingleLine: "7.5rem",
328
+ boxShadow: "0 1px 2px rgba(68, 68, 69, 0.08)"
329
+ },
330
+ pill: {
331
+ paddingInline: "0.375rem",
332
+ paddingBlock: "0.1875rem",
333
+ borderRadius: "0.25rem",
334
+ gap: "0.25rem",
335
+ height: "1.25rem"
336
+ },
337
+ icon: {
338
+ xs: "1rem",
339
+ sm: "1.125rem",
340
+ md: "1.25rem",
341
+ lg: "1.5rem"
342
+ },
343
+ iconButton: {
344
+ extraSmall: {
345
+ size: "1.5rem",
346
+ borderRadius: "0.375rem",
347
+ icon: "1.125rem"
348
+ },
349
+ small: {
350
+ size: "1.75rem",
351
+ borderRadius: "0.375rem",
352
+ icon: "1.25rem"
353
+ },
354
+ medium: {
355
+ size: "2rem",
356
+ borderRadius: "0.5rem",
357
+ icon: "1.25rem"
358
+ },
359
+ large: {
360
+ size: "2.5rem",
361
+ borderRadius: "0.5rem",
362
+ icon: "1.5rem"
363
+ }
364
+ },
365
+ breadcrumb: {
366
+ gap: "0.125rem",
367
+ itemPaddingInline: "0.5rem",
368
+ itemPaddingBlock: "0.125rem",
369
+ itemBorderRadius: "0.5rem",
370
+ separatorWidth: "0.625rem"
371
+ },
372
+ siteHeader: {
373
+ height: "3rem",
374
+ paddingInlineStart: "1rem",
375
+ paddingInlineEnd: "0.5rem",
376
+ paddingBlock: "0.5rem",
377
+ leadingGap: "0.25rem",
378
+ trailingGap: "0.5rem",
379
+ dividerHeight: "0.9375rem",
380
+ dividerWidth: "0.0625rem"
381
+ },
382
+ sheet: {
383
+ width: {
384
+ sm: "20rem",
385
+ md: "25rem",
386
+ lg: "35rem"
387
+ },
388
+ minWidth: "15rem",
389
+ maxWidth: "90vw",
390
+ maxHeight: "90vh",
391
+ padding: "1rem",
392
+ bottomCornerRadius: "1rem"
393
+ },
394
+ sidebar: {
395
+ width: {
396
+ sm: "15rem",
397
+ md: "17rem",
398
+ lg: "20rem"
399
+ },
400
+ widthMinimized: "5.6rem",
401
+ minWidth: "12.5rem",
402
+ maxWidth: "30rem",
403
+ padding: "0.5rem",
404
+ footerPadding: "0.5rem"
405
+ },
406
+ popover: {
407
+ gap: "0.25rem",
408
+ borderRadius: "0.5rem",
409
+ minWidth: "10rem",
410
+ maxWidth: "20rem"
411
+ },
412
+ actionMenu: {
413
+ item: {
414
+ minHeight: "1.875rem",
415
+ paddingInline: "0.75rem",
416
+ paddingBlock: "0.3125rem",
417
+ borderRadius: "0.375rem",
418
+ slotGap: "1rem",
419
+ subtextGap: "0.25rem",
420
+ iconSize: "1.25rem",
421
+ subtextIconSize: "1rem"
422
+ },
423
+ list: {
424
+ paddingInline: "0.25rem",
425
+ paddingBlock: "0.5rem",
426
+ itemGap: "0.25rem",
427
+ sectionGap: "0.5rem"
428
+ },
429
+ section: {
430
+ paddingInline: "0.75rem",
431
+ paddingBlock: "0.125rem"
432
+ },
433
+ header: {
434
+ paddingInline: "1rem",
435
+ paddingBlockStart: "0.75rem",
436
+ paddingBlockEnd: "1rem"
437
+ },
438
+ footer: {
439
+ padding: "1rem"
440
+ }
441
+ },
442
+ resizeHandle: {
443
+ hitArea: "0.5rem"
444
+ },
445
+ zIndex: {
446
+ base: "0",
447
+ raised: "1",
448
+ sticky: "200",
449
+ dropdown: "300",
450
+ overlay: "400",
451
+ sheet: "500",
452
+ dialog: "600",
453
+ popover: "700",
454
+ tooltip: "800",
455
+ toast: "900",
456
+ max: "9999"
457
+ }
458
+ }, g = {
459
+ bgColor: {
460
+ rest: "#3A3A39",
461
+ hover: "#2D2D2D",
462
+ pressed: "#222221",
463
+ disabled: "#EFEEEA"
464
+ },
465
+ borderColor: {
466
+ rest: "#474746",
467
+ hover: "#474746",
468
+ pressed: "#474746",
469
+ disabled: "#EFEEEA"
470
+ },
471
+ fgColor: {
472
+ rest: "#FFFFFF",
473
+ hover: "#FFFFFF",
474
+ pressed: "#FFFFFF",
475
+ disabled: "#D8D7D4"
476
+ }
477
+ }, n = {
478
+ bgColor: {
479
+ rest: "#FFFFFF",
480
+ hover: "#F9F9F8",
481
+ pressed: "#EFEEEA",
482
+ disabled: "#F4F4F2"
483
+ },
484
+ borderColor: {
485
+ rest: "#D8D7D4",
486
+ hover: "#D8D7D4",
487
+ pressed: "#D8D7D4",
488
+ disabled: "#EFEEEA"
489
+ },
490
+ fgColor: {
491
+ rest: "#6F6F6D",
492
+ hover: "#6F6F6D",
493
+ pressed: "#ABA9A5",
494
+ disabled: "#D8D7D4"
495
+ }
496
+ }, s = {
497
+ bgColor: {
498
+ rest: "#ffffff00",
499
+ hover: "#F9F9F8",
500
+ pressed: "#F9F9F8",
501
+ disabled: "#ffffff00"
502
+ },
503
+ borderColor: {
504
+ rest: "#ffffff00",
505
+ hover: "#ffffff00",
506
+ pressed: "#ffffff00",
507
+ disabled: "#ffffff00"
508
+ },
509
+ fgColor: {
510
+ rest: "#888783",
511
+ hover: "#888783",
512
+ pressed: "#6F6F6D",
513
+ disabled: "#D8D7D4"
514
+ }
515
+ }, b = {
516
+ bgColor: {
517
+ rest: "#E74646",
518
+ hover: "#DA2222",
519
+ pressed: "#DA2222",
520
+ disabled: "#EFEEEA"
521
+ },
522
+ borderColor: {
523
+ rest: "#DA2222",
524
+ hover: "#DA2222",
525
+ pressed: "#DA2222",
526
+ disabled: "#EFEEEA"
527
+ },
528
+ fgColor: {
529
+ rest: "#FFFFFF",
530
+ hover: "#FFFFFF",
531
+ pressed: "#FFFFFF",
532
+ disabled: "#D8D7D4"
533
+ }
534
+ }, C = {
535
+ bgColor: {
536
+ rest: "#EFEEEA",
537
+ hover: "#E2E1DD",
538
+ pressed: "#EFEEEA",
539
+ disabled: "#F4F4F2"
540
+ },
541
+ borderColor: {
542
+ rest: "#ffffff00",
543
+ hover: "#ffffff00",
544
+ pressed: "#ffffff00",
545
+ disabled: "#ffffff00"
546
+ },
547
+ fgColor: {
548
+ rest: "#6F6F6D",
549
+ hover: "#6F6F6D",
550
+ pressed: "#ABA9A5",
551
+ disabled: "#D8D7D4"
552
+ }
553
+ }, m = {
554
+ inline: {
555
+ rest: "#525252",
556
+ hover: "#ABA9A5"
557
+ },
558
+ standalone: {
559
+ rest: "#525252",
560
+ hover: "#ABA9A5"
561
+ }
562
+ }, D = {
563
+ none: {
564
+ bgColor: "#ffffff00",
565
+ fgColor: "#ABA9A5"
566
+ },
567
+ neutral: {
568
+ bgColor: "#F4F4F2",
569
+ fgColor: "#888783"
570
+ },
571
+ green: {
572
+ bgColor: "#F0F9EF",
573
+ fgColor: "#888783"
574
+ },
575
+ blue: {
576
+ bgColor: "#EEF4FF",
577
+ fgColor: "#888783"
578
+ },
579
+ yellow: {
580
+ bgColor: "#FFF0CD",
581
+ fgColor: "#888783"
582
+ },
583
+ orange: {
584
+ bgColor: "#FEE8D8",
585
+ fgColor: "#888783"
586
+ },
587
+ red: {
588
+ bgColor: "#FFD9D5",
589
+ fgColor: "#888783"
590
+ }
591
+ }, E = {
592
+ blue: {
593
+ bold: {
594
+ filled: {
595
+ bgColor: "#3a80f9 ",
596
+ borderColor: "#ffffff00",
597
+ fgColor: "#FFFFFF"
598
+ },
599
+ bordered: {
600
+ bgColor: "#3a80f9 ",
601
+ borderColor: "#1d5ece",
602
+ fgColor: "#FFFFFF"
603
+ }
604
+ },
605
+ extraBold: {
606
+ filled: {
607
+ bgColor: "#1d5ece",
608
+ borderColor: "#ffffff00",
609
+ fgColor: "#FFFFFF"
610
+ },
611
+ bordered: {
612
+ bgColor: "#236ae5 ",
613
+ borderColor: "#1d5ece",
614
+ fgColor: "#FFFFFF"
615
+ }
616
+ },
617
+ extralight: {
618
+ filled: {
619
+ bgColor: "#EEF4FF",
620
+ borderColor: "#ffffff00",
621
+ fgColor: "#1d5ece"
622
+ },
623
+ bordered: {
624
+ bgColor: "#EAF2FF",
625
+ borderColor: "#C4DAFF",
626
+ fgColor: "#1d5ece"
627
+ }
628
+ },
629
+ light: {
630
+ filled: {
631
+ bgColor: "#DFEAFD",
632
+ borderColor: "#ffffff00",
633
+ fgColor: "#1d5ece"
634
+ },
635
+ bordered: {
636
+ bgColor: "#DFEAFD",
637
+ borderColor: "#518ff8",
638
+ fgColor: "#1d5ece"
639
+ }
640
+ }
641
+ },
642
+ gray: {
643
+ bold: {
644
+ filled: {
645
+ bgColor: "#888783",
646
+ borderColor: "#ffffff00",
647
+ fgColor: "#FFFFFF"
648
+ },
649
+ bordered: {
650
+ bgColor: "#6F6F6D",
651
+ borderColor: "#474746",
652
+ fgColor: "#FFFFFF"
653
+ }
654
+ },
655
+ extraBold: {
656
+ filled: {
657
+ bgColor: "#474746",
658
+ borderColor: "#ffffff00",
659
+ fgColor: "#FFFFFF"
660
+ },
661
+ bordered: {
662
+ bgColor: "#474746",
663
+ borderColor: "#474746",
664
+ fgColor: "#FFFFFF"
665
+ }
666
+ },
667
+ extralight: {
668
+ filled: {
669
+ bgColor: "#FFFFFF",
670
+ borderColor: "#ffffff00",
671
+ fgColor: "#6F6F6D"
672
+ },
673
+ bordered: {
674
+ bgColor: "#FFFFFF",
675
+ borderColor: "#D8D7D4",
676
+ fgColor: "#6F6F6D"
677
+ }
678
+ },
679
+ light: {
680
+ filled: {
681
+ bgColor: "#F4F4F2",
682
+ borderColor: "#ffffff00",
683
+ fgColor: "#6F6F6D"
684
+ },
685
+ bordered: {
686
+ bgColor: "#F4F4F2",
687
+ borderColor: "#D8D7D4",
688
+ fgColor: "#6F6F6D"
689
+ }
690
+ }
691
+ },
692
+ green: {
693
+ bold: {
694
+ filled: {
695
+ bgColor: "#6EBF57",
696
+ borderColor: "#ffffff00",
697
+ fgColor: "#FFFFFF"
698
+ },
699
+ bordered: {
700
+ bgColor: "#6EBF57",
701
+ borderColor: "#3f8d2a",
702
+ fgColor: "#FFFFFF"
703
+ }
704
+ },
705
+ extraBold: {
706
+ filled: {
707
+ bgColor: "#3f8d2a",
708
+ borderColor: "#ffffff00",
709
+ fgColor: "#FFFFFF"
710
+ },
711
+ bordered: {
712
+ bgColor: "#5ca647",
713
+ borderColor: "#3f8d2a",
714
+ fgColor: "#FFFFFF"
715
+ }
716
+ },
717
+ extralight: {
718
+ filled: {
719
+ bgColor: "#E6F4E4",
720
+ borderColor: "#ffffff00",
721
+ fgColor: "#3f8d2a"
722
+ },
723
+ bordered: {
724
+ bgColor: "#E6F4E4",
725
+ borderColor: "#BAE3AF",
726
+ fgColor: "#3f8d2a"
727
+ }
728
+ },
729
+ light: {
730
+ filled: {
731
+ bgColor: "#E2F1DE",
732
+ borderColor: "#ffffff00",
733
+ fgColor: "#3f8d2a"
734
+ },
735
+ bordered: {
736
+ bgColor: "#DCF1D5",
737
+ borderColor: "#6EBF57",
738
+ fgColor: "#3f8d2a"
739
+ }
740
+ }
741
+ },
742
+ indigo: {
743
+ bold: {
744
+ filled: {
745
+ bgColor: "#8686FF",
746
+ borderColor: "#ffffff00",
747
+ fgColor: "#FFFFFF"
748
+ },
749
+ bordered: {
750
+ bgColor: "#8686FF",
751
+ borderColor: "#5454e1",
752
+ fgColor: "#FFFFFF"
753
+ }
754
+ },
755
+ extraBold: {
756
+ filled: {
757
+ bgColor: "#5454e1",
758
+ borderColor: "#ffffff00",
759
+ fgColor: "#FFFFFF"
760
+ },
761
+ bordered: {
762
+ bgColor: "#6565FA",
763
+ borderColor: "#5454e1",
764
+ fgColor: "#FFFFFF"
765
+ }
766
+ },
767
+ extralight: {
768
+ filled: {
769
+ bgColor: "#F7F7FC",
770
+ borderColor: "#ffffff00",
771
+ fgColor: "#5454e1"
772
+ },
773
+ bordered: {
774
+ bgColor: "#F4F4FF",
775
+ borderColor: "#C1C1FF",
776
+ fgColor: "#5454e1"
777
+ }
778
+ },
779
+ light: {
780
+ filled: {
781
+ bgColor: "#E8E8FF",
782
+ borderColor: "#ffffff00",
783
+ fgColor: "#5454e1"
784
+ },
785
+ bordered: {
786
+ bgColor: "#E8E8FF",
787
+ borderColor: "#9D9DFF",
788
+ fgColor: "#5454e1"
789
+ }
790
+ }
791
+ },
792
+ lime: {
793
+ bold: {
794
+ filled: {
795
+ bgColor: "#779204",
796
+ borderColor: "#ffffff00",
797
+ fgColor: "#FFFFFF"
798
+ },
799
+ bordered: {
800
+ bgColor: "#779204",
801
+ borderColor: "#4F6201",
802
+ fgColor: "#FFFFFF"
803
+ }
804
+ },
805
+ extraBold: {
806
+ filled: {
807
+ bgColor: "#4F6201",
808
+ borderColor: "#ffffff00",
809
+ fgColor: "#FFFFFF"
810
+ },
811
+ bordered: {
812
+ bgColor: "#536601",
813
+ borderColor: "#4F6201",
814
+ fgColor: "#FFFFFF"
815
+ }
816
+ },
817
+ extralight: {
818
+ filled: {
819
+ bgColor: "#F1F6F2",
820
+ borderColor: "#ffffff00",
821
+ fgColor: "#536601"
822
+ },
823
+ bordered: {
824
+ bgColor: "#F4F7E6",
825
+ borderColor: "#D5E68C",
826
+ fgColor: "#4F6201"
827
+ }
828
+ },
829
+ light: {
830
+ filled: {
831
+ bgColor: "#ECF6C2",
832
+ borderColor: "#ffffff00",
833
+ fgColor: "#4F6201"
834
+ },
835
+ bordered: {
836
+ bgColor: "#D5E68C",
837
+ borderColor: "#779204",
838
+ fgColor: "#4F6201"
839
+ }
840
+ }
841
+ },
842
+ mag: {
843
+ bold: {
844
+ filled: {
845
+ bgColor: "#E63BAD",
846
+ borderColor: "#ffffff00",
847
+ fgColor: "#FFFFFF"
848
+ },
849
+ bordered: {
850
+ bgColor: "#EB3CB2",
851
+ borderColor: "#c9178d",
852
+ fgColor: "#FFFFFF"
853
+ }
854
+ },
855
+ extraBold: {
856
+ filled: {
857
+ bgColor: "#c9178d",
858
+ borderColor: "#ffffff00",
859
+ fgColor: "#FFFFFF"
860
+ },
861
+ bordered: {
862
+ bgColor: "#d22799",
863
+ borderColor: "#c9178d",
864
+ fgColor: "#FFFFFF"
865
+ }
866
+ },
867
+ extralight: {
868
+ filled: {
869
+ bgColor: "#FDD8F1",
870
+ borderColor: "#ffffff00",
871
+ fgColor: "#c9178d"
872
+ },
873
+ bordered: {
874
+ bgColor: "#FDD8F1",
875
+ borderColor: "#FFB5E6",
876
+ fgColor: "#c9178d"
877
+ }
878
+ },
879
+ light: {
880
+ filled: {
881
+ bgColor: "#FFC2EA",
882
+ borderColor: "#ffffff00",
883
+ fgColor: "#c9178d"
884
+ },
885
+ bordered: {
886
+ bgColor: "#FDD8F1",
887
+ borderColor: "#FF9ADD",
888
+ fgColor: "#c9178d"
889
+ }
890
+ }
891
+ },
892
+ orange: {
893
+ bold: {
894
+ filled: {
895
+ bgColor: "#F2711B",
896
+ borderColor: "#ffffff00",
897
+ fgColor: "#FFFFFF"
898
+ },
899
+ bordered: {
900
+ bgColor: "#F2711B",
901
+ borderColor: "#BD4B04",
902
+ fgColor: "#FFFFFF"
903
+ }
904
+ },
905
+ extraBold: {
906
+ filled: {
907
+ bgColor: "#BD4B04",
908
+ borderColor: "#ffffff00",
909
+ fgColor: "#FFFFFF"
910
+ },
911
+ bordered: {
912
+ bgColor: "#C85700",
913
+ borderColor: "#BD4B04",
914
+ fgColor: "#FFFFFF"
915
+ }
916
+ },
917
+ extralight: {
918
+ filled: {
919
+ bgColor: "#FFEFE6",
920
+ borderColor: "#ffffff00",
921
+ fgColor: "#BD4B04"
922
+ },
923
+ bordered: {
924
+ bgColor: "#FEE8D8",
925
+ borderColor: "#FF9B61",
926
+ fgColor: "#BD4B04"
927
+ }
928
+ },
929
+ light: {
930
+ filled: {
931
+ bgColor: "#FFDDC5",
932
+ borderColor: "#ffffff00",
933
+ fgColor: "#BD4B04"
934
+ },
935
+ bordered: {
936
+ bgColor: "#FFDDC5",
937
+ borderColor: "#F2711B",
938
+ fgColor: "#BD4B04"
939
+ }
940
+ }
941
+ },
942
+ purple: {
943
+ bold: {
944
+ filled: {
945
+ bgColor: "#9035BD",
946
+ borderColor: "#ffffff00",
947
+ fgColor: "#FFFFFF"
948
+ },
949
+ bordered: {
950
+ bgColor: "#9035BD",
951
+ borderColor: "#5B2589",
952
+ fgColor: "#FFFFFF"
953
+ }
954
+ },
955
+ extraBold: {
956
+ filled: {
957
+ bgColor: "#5B2589",
958
+ borderColor: "#ffffff00",
959
+ fgColor: "#FFFFFF"
960
+ },
961
+ bordered: {
962
+ bgColor: "#6F2EA8",
963
+ borderColor: "#5B2589",
964
+ fgColor: "#FFFFFF"
965
+ }
966
+ },
967
+ extralight: {
968
+ filled: {
969
+ bgColor: "#faf5fd",
970
+ borderColor: "#ffffff00",
971
+ fgColor: "#5B2589"
972
+ },
973
+ bordered: {
974
+ bgColor: "#ECDAFA",
975
+ borderColor: "#D7A7F7",
976
+ fgColor: "#5B2589"
977
+ }
978
+ },
979
+ light: {
980
+ filled: {
981
+ bgColor: "#ECD2FA",
982
+ borderColor: "#ffffff00",
983
+ fgColor: "#5B2589"
984
+ },
985
+ bordered: {
986
+ bgColor: "#E3C1F6",
987
+ borderColor: "#A854D2",
988
+ fgColor: "#5B2589"
989
+ }
990
+ }
991
+ },
992
+ red: {
993
+ bold: {
994
+ filled: {
995
+ bgColor: "#EF6262",
996
+ borderColor: "#ffffff00",
997
+ fgColor: "#FFFFFF"
998
+ },
999
+ bordered: {
1000
+ bgColor: "#EF6262",
1001
+ borderColor: "#DA2222",
1002
+ fgColor: "#FFFFFF"
1003
+ }
1004
+ },
1005
+ extraBold: {
1006
+ filled: {
1007
+ bgColor: "#DA2222",
1008
+ borderColor: "#ffffff00",
1009
+ fgColor: "#FFFFFF"
1010
+ },
1011
+ bordered: {
1012
+ bgColor: "#E74646",
1013
+ borderColor: "#DA2222",
1014
+ fgColor: "#FFFFFF"
1015
+ }
1016
+ },
1017
+ extralight: {
1018
+ filled: {
1019
+ bgColor: "#FCEDEB",
1020
+ borderColor: "#ffffff00",
1021
+ fgColor: "#DA2222"
1022
+ },
1023
+ bordered: {
1024
+ bgColor: "#FFE6E2",
1025
+ borderColor: "#FFD9D5",
1026
+ fgColor: "#DA2222"
1027
+ }
1028
+ },
1029
+ light: {
1030
+ filled: {
1031
+ bgColor: "#FFE6E2",
1032
+ borderColor: "#ffffff00",
1033
+ fgColor: "#DA2222"
1034
+ },
1035
+ bordered: {
1036
+ bgColor: "#FFD9D5",
1037
+ borderColor: "#F99090",
1038
+ fgColor: "#DA2222"
1039
+ }
1040
+ }
1041
+ },
1042
+ teal: {
1043
+ bold: {
1044
+ filled: {
1045
+ bgColor: "#2E98AD",
1046
+ borderColor: "#ffffff00",
1047
+ fgColor: "#FFFFFF"
1048
+ },
1049
+ bordered: {
1050
+ bgColor: "#1B899E",
1051
+ borderColor: "#07596A",
1052
+ fgColor: "#FFFFFF"
1053
+ }
1054
+ },
1055
+ extraBold: {
1056
+ filled: {
1057
+ bgColor: "#177E93",
1058
+ borderColor: "#ffffff00",
1059
+ fgColor: "#FFFFFF"
1060
+ },
1061
+ bordered: {
1062
+ bgColor: "#177E93",
1063
+ borderColor: "#07596A",
1064
+ fgColor: "#FFFFFF"
1065
+ }
1066
+ },
1067
+ extralight: {
1068
+ filled: {
1069
+ bgColor: "#F0FBFF",
1070
+ borderColor: "#ffffff00",
1071
+ fgColor: "#1B899E"
1072
+ },
1073
+ bordered: {
1074
+ bgColor: "#E2F7FF",
1075
+ borderColor: "#82E2EF",
1076
+ fgColor: "#1B899E"
1077
+ }
1078
+ },
1079
+ light: {
1080
+ filled: {
1081
+ bgColor: "#B2E8F0",
1082
+ borderColor: "#ffffff00",
1083
+ fgColor: "#1B899E"
1084
+ },
1085
+ bordered: {
1086
+ bgColor: "#B2E8F0",
1087
+ borderColor: "#2E98AD",
1088
+ fgColor: "#1B899E"
1089
+ }
1090
+ }
1091
+ },
1092
+ yellow: {
1093
+ bold: {
1094
+ filled: {
1095
+ bgColor: "#D99904",
1096
+ borderColor: "#ffffff00",
1097
+ fgColor: "#FFFFFF"
1098
+ },
1099
+ bordered: {
1100
+ bgColor: "#CF9202",
1101
+ borderColor: "#B57C02",
1102
+ fgColor: "#FFFFFF"
1103
+ }
1104
+ },
1105
+ extraBold: {
1106
+ filled: {
1107
+ bgColor: "#B57C02",
1108
+ borderColor: "#ffffff00",
1109
+ fgColor: "#FFFFFF"
1110
+ },
1111
+ bordered: {
1112
+ bgColor: "#CF9202",
1113
+ borderColor: "#B57C02",
1114
+ fgColor: "#FFFFFF"
1115
+ }
1116
+ },
1117
+ extralight: {
1118
+ filled: {
1119
+ bgColor: "#FFFBF0",
1120
+ borderColor: "#ffffff00",
1121
+ fgColor: "#B57C02"
1122
+ },
1123
+ bordered: {
1124
+ bgColor: "#FBF2D8",
1125
+ borderColor: "#FCE6AE",
1126
+ fgColor: "#B57C02"
1127
+ }
1128
+ },
1129
+ light: {
1130
+ filled: {
1131
+ bgColor: "#FFF0CD",
1132
+ borderColor: "#ffffff00",
1133
+ fgColor: "#B57C02"
1134
+ },
1135
+ bordered: {
1136
+ bgColor: "#FCE6AE",
1137
+ borderColor: "#E3A703",
1138
+ fgColor: "#B57C02"
1139
+ }
1140
+ }
1141
+ }
1142
+ }, c = {
1143
+ background: "#222221",
1144
+ border: "#ffffff00",
1145
+ foreground: "#FFFFFF"
1146
+ }, h = {
1147
+ ghost: {
1148
+ unselected: {
1149
+ bgColor: {
1150
+ rest: "#ffffff00",
1151
+ hover: "#EFEEEA",
1152
+ pressed: "#EFEEEA",
1153
+ disabled: "#ffffff00"
1154
+ },
1155
+ borderColor: {
1156
+ rest: "#ffffff00",
1157
+ hover: "#ffffff00",
1158
+ pressed: "#ffffff00",
1159
+ disabled: "#ffffff00"
1160
+ },
1161
+ fgColor: {
1162
+ rest: "#6F6F6D",
1163
+ hover: "#6F6F6D",
1164
+ pressed: "#6F6F6D",
1165
+ disabled: "#D8D7D4"
1166
+ }
1167
+ },
1168
+ selected: {
1169
+ bgColor: {
1170
+ rest: "#DFEAFD",
1171
+ hover: "#CBDEFF",
1172
+ pressed: "#DFEAFD",
1173
+ disabled: "#F4F4F2"
1174
+ },
1175
+ borderColor: {
1176
+ rest: "#ffffff00",
1177
+ hover: "#ffffff00",
1178
+ pressed: "#ffffff00",
1179
+ disabled: "#ffffff00"
1180
+ },
1181
+ fgColor: {
1182
+ rest: "#1d5ece",
1183
+ hover: "#1d5ece",
1184
+ pressed: "#1d5ece",
1185
+ disabled: "#D8D7D4"
1186
+ }
1187
+ }
1188
+ },
1189
+ outlined: {
1190
+ unselected: {
1191
+ bgColor: {
1192
+ rest: "#FFFFFF",
1193
+ hover: "#F9F9F8",
1194
+ pressed: "#EFEEEA",
1195
+ disabled: "#EFEEEA"
1196
+ },
1197
+ borderColor: {
1198
+ rest: "#D8D7D4",
1199
+ hover: "#D8D7D4",
1200
+ pressed: "#D8D7D4",
1201
+ disabled: "#E2E1DD"
1202
+ },
1203
+ fgColor: {
1204
+ rest: "#6F6F6D",
1205
+ hover: "#6F6F6D",
1206
+ pressed: "#6F6F6D",
1207
+ disabled: "#D8D7D4"
1208
+ }
1209
+ },
1210
+ selected: {
1211
+ bgColor: {
1212
+ rest: "#EAF2FF",
1213
+ hover: "#C4DAFF",
1214
+ pressed: "#CBDEFF",
1215
+ disabled: "#F4F4F2"
1216
+ },
1217
+ borderColor: {
1218
+ rest: "#236ae5 ",
1219
+ hover: "#3a80f9 ",
1220
+ pressed: "#1d5ece",
1221
+ disabled: "#EFEEEA"
1222
+ },
1223
+ fgColor: {
1224
+ rest: "#1d5ece",
1225
+ hover: "#1d5ece",
1226
+ pressed: "#1d5ece",
1227
+ disabled: "#D8D7D4"
1228
+ }
1229
+ }
1230
+ }
1231
+ }, p = {
1232
+ link: {
1233
+ fgColor: {
1234
+ rest: "#888783",
1235
+ hover: "#888783",
1236
+ active: "#474746"
1237
+ },
1238
+ bgColor: {
1239
+ rest: "#ffffff00",
1240
+ hover: "#F4F4F2",
1241
+ active: "#ffffff00"
1242
+ }
1243
+ },
1244
+ separator: {
1245
+ fgColor: "#888783"
1246
+ }
1247
+ }, u = {
1248
+ background: "#FFFFFF",
1249
+ border: "#ffffff00",
1250
+ divider: "#ABA9A5"
1251
+ }, B = {
1252
+ modal: "rgba(58,58,57,0.2)",
1253
+ sheet: "rgba(53,53,51,0.03)",
1254
+ none: "#ffffff00"
1255
+ }, A = {
1256
+ background: "#FFFFFF"
1257
+ }, x = {
1258
+ background: "#FFFFFF",
1259
+ border: "#EFEEEA"
1260
+ }, v = {
1261
+ background: "#FFFFFF"
1262
+ }, k = {
1263
+ item: {
1264
+ bgColor: {
1265
+ rest: "#FFFFFF",
1266
+ hover: "#F9F9F8",
1267
+ pressed: "#F4F4F2",
1268
+ disabled: "#F4F4F2",
1269
+ selected: {
1270
+ rest: "#F4F4F2",
1271
+ pressed: "#EFEEEA"
1272
+ }
1273
+ },
1274
+ fgColor: {
1275
+ rest: "#888783",
1276
+ pressed: "#474746",
1277
+ disabled: "#ABA9A5",
1278
+ selected: "#474746",
1279
+ subtext: "#888783"
1280
+ }
1281
+ },
1282
+ section: {
1283
+ fgColor: "#474746"
1284
+ },
1285
+ divider: {
1286
+ fgColor: "#EFEEEA"
1287
+ }
1288
+ }, y = {
1289
+ popover: "0 0 0 1px rgba(42, 28, 0, 0.07), 0 20px 24px 0 rgba(25, 25, 25, 0.05), 0 5px 8px 0 rgba(25, 25, 25, 0.03)",
1290
+ popoverElevated: "0 0 0 1px rgba(42, 28, 0, 0.10), 0 24px 32px 0 rgba(25, 25, 25, 0.08), 0 8px 12px 0 rgba(25, 25, 25, 0.05)",
1291
+ sheet: "0 0 0 1px rgba(42, 28, 0, 0.07), 0 20px 24px 0 rgba(25, 25, 25, 0.05), 0 5px 8px 0 rgba(25, 25, 25, 0.03)",
1292
+ tooltip: "0 1px 2px rgba(68, 68, 69, 0.08)"
1293
+ }, S = {
1294
+ primary: "#2D2D2D",
1295
+ black: "#474746",
1296
+ white: "#FFFFFF",
1297
+ focus: "#3a80f9 ",
1298
+ success: {
1299
+ default: "#3f8d2a",
1300
+ muted: "#6EBF57"
1301
+ },
1302
+ warning: {
1303
+ default: "#FFB404",
1304
+ muted: "#D99904"
1305
+ },
1306
+ error: {
1307
+ default: "#DA2222",
1308
+ muted: "#EF6262"
1309
+ },
1310
+ info: {
1311
+ default: "#1d5ece",
1312
+ muted: "#3a80f9 "
1313
+ },
1314
+ fg: {
1315
+ neutral: {
1316
+ inverted: "#FFFFFF",
1317
+ disabled: "#D8D7D4",
1318
+ subtle: "#ABA9A5",
1319
+ muted: "#888783",
1320
+ default: "#6F6F6D",
1321
+ contrast: "#474746"
1322
+ },
1323
+ link: {
1324
+ extraDark: "#474746",
1325
+ default: "#525252",
1326
+ hover: "#ABA9A5"
1327
+ },
1328
+ green: {
1329
+ muted: "#6EBF57",
1330
+ contrast: "#3f8d2a"
1331
+ },
1332
+ teal: {
1333
+ muted: "#1B899E",
1334
+ contrast: "#1B899E"
1335
+ },
1336
+ yellow: {
1337
+ muted: "#D99904",
1338
+ contrast: "#B57C02"
1339
+ },
1340
+ orange: {
1341
+ muted: "#D95903",
1342
+ contrast: "#BD4B04"
1343
+ },
1344
+ red: {
1345
+ muted: "#EF6262",
1346
+ contrast: "#DA2222"
1347
+ },
1348
+ magenta: {
1349
+ muted: "#EB3CB2",
1350
+ contrast: "#c9178d"
1351
+ },
1352
+ indigo: {
1353
+ muted: "#8686FF",
1354
+ contrast: "#5454e1"
1355
+ },
1356
+ blue: {
1357
+ muted: "#3a80f9 ",
1358
+ contrast: "#1d5ece"
1359
+ },
1360
+ purple: {
1361
+ muted: "#9035BD",
1362
+ contrast: "#5B2589"
1363
+ },
1364
+ lime: {
1365
+ muted: "#536601",
1366
+ contrast: "#4F6201"
1367
+ }
1368
+ },
1369
+ text: {
1370
+ inverted: "#FFFFFF",
1371
+ disabled: "#D8D7D4",
1372
+ subtle: "#ABA9A5",
1373
+ muted: "#888783",
1374
+ default: "#6F6F6D",
1375
+ contrast: "#474746"
1376
+ },
1377
+ canvas: {
1378
+ default: "#FFFFFF",
1379
+ modal: "#FFFFFF",
1380
+ inset: "#F4F4F2",
1381
+ insetStrong: "#EFEEEA",
1382
+ subtle: "#F9F9F8",
1383
+ transparent: "#ffffff00",
1384
+ overlay: {
1385
+ modal: "rgba(58,58,57,0.2)",
1386
+ sheet: "rgba(53,53,51,0.03)"
1387
+ }
1388
+ },
1389
+ border: {
1390
+ gray: {
1391
+ 1: "#EFEEEA",
1392
+ 2: "#E2E1DD",
1393
+ 3: "#D8D7D4"
1394
+ },
1395
+ grayAlpha: {
1396
+ 0: "rgba(58,58,57,0)",
1397
+ 1: "rgba(58,58,57,0.08)",
1398
+ 2: "rgba(58,58,57,0.1)",
1399
+ 3: "rgba(58,58,57,0.15)",
1400
+ 4: "rgba(58,58,57,0.2)"
1401
+ }
1402
+ },
1403
+ bg: {
1404
+ gray: {
1405
+ light: {
1406
+ "01": "#FFFFFF",
1407
+ "02": "#F9F9F8",
1408
+ "03": "#F4F4F2",
1409
+ "04": "#EFEEEA",
1410
+ "05": "#E2E1DD",
1411
+ "06": "#D8D7D4"
1412
+ },
1413
+ dark: {
1414
+ "04": "#888783",
1415
+ "05": "#6F6F6D",
1416
+ "06": "#525252",
1417
+ "07": "#474746"
1418
+ }
1419
+ }
1420
+ },
1421
+ syntax: {
1422
+ comment: "#888783",
1423
+ key: "#6F6F6D",
1424
+ constant: "#3a80f9 ",
1425
+ constantOtherReferenceLink: "#0a3069",
1426
+ entity: "#d22799",
1427
+ entityTag: "#d22799",
1428
+ keyword: "#EF6262",
1429
+ string: "#EF6262",
1430
+ stringRegexp: "#A2D794",
1431
+ variable: "#FF8635",
1432
+ brackethighlighterAngle: "#ABA9A5",
1433
+ brackethighlighterUnmatched: "#F99090",
1434
+ carriageReturnBg: "#FBC4C4",
1435
+ carriageReturnText: "#FFFFFF",
1436
+ invalidIllegalText: "#FFFFFF",
1437
+ invalidIllegalBg: "#F99090",
1438
+ markupBold: "#525252",
1439
+ markupItalic: "#525252",
1440
+ markupHeading: "#09B2B5",
1441
+ markupList: "#A2D794",
1442
+ markupInsertedBg: "#F0F9EF",
1443
+ markupInsertedText: "#A2D794",
1444
+ markupDeletedBg: "#FFF6F5",
1445
+ markupDeletedText: "#F99090",
1446
+ markupChangedBg: "#FEE8D8",
1447
+ markupChangedText: "#FF8635",
1448
+ nullLiteral: "#E2E1DD",
1449
+ booleanLiteral: "#9035BD",
1450
+ numberLiteral: "#3a80f9 ",
1451
+ bracket: "#E01280",
1452
+ bracketNested: "#9035BD",
1453
+ stringUrl: "#6565FA",
1454
+ stringEmail: "#6565FA",
1455
+ stringUuid: "#D8D7D4",
1456
+ rowHoverBg: "#F9F9F8",
1457
+ collapsedRowBg: "#FFFFFF",
1458
+ watchMark: "#518ff8",
1459
+ watchMarkHover: "#518ff8",
1460
+ watchRowBg: "#F4F8FF"
1461
+ }
1462
+ }, o = {
1463
+ typography: t,
1464
+ colors: a,
1465
+ sizes: i,
1466
+ buttonPrimary: g,
1467
+ buttonSecondary: n,
1468
+ buttonGhost: s,
1469
+ buttonDanger: b,
1470
+ buttonRounded: C,
1471
+ linkColors: m,
1472
+ highlightColors: D,
1473
+ pillColors: E,
1474
+ tooltipColors: c,
1475
+ iconButton: h,
1476
+ breadcrumbColors: p,
1477
+ siteHeaderColors: u,
1478
+ overlayColors: B,
1479
+ sheetColors: A,
1480
+ sidebarColors: x,
1481
+ popoverColors: v,
1482
+ actionMenuColors: k,
1483
+ shadows: y,
1484
+ globalColors: S
1485
+ }, W = {
1486
+ 0: "#000000"
1487
+ }, z = {
1488
+ 0: "#ffffff"
1489
+ }, H = {
1490
+ 0: "#FFFFFF",
1491
+ 1: "#F9F9F8",
1492
+ 2: "#F4F4F2",
1493
+ 3: "#EFEEEA",
1494
+ 4: "#E2E1DD",
1495
+ 5: "#D8D7D4",
1496
+ 6: "#ABA9A5",
1497
+ 7: "#888783",
1498
+ 8: "#6F6F6D",
1499
+ 9: "#525252",
1500
+ 10: "#474746",
1501
+ 11: "#3A3A39",
1502
+ 12: "#2D2D2D",
1503
+ 13: "#222221"
1504
+ }, w = {
1505
+ 0: "rgba(58,58,57,0)",
1506
+ 1: "rgba(58,58,57,0.08)",
1507
+ 2: "rgba(58,58,57,0.1)",
1508
+ 3: "rgba(58,58,57,0.15)",
1509
+ 4: "rgba(58,58,57,0.2)"
1510
+ }, M = {
1511
+ sheet: "rgba(53,53,51,0.03)"
1512
+ }, R = {
1513
+ 0: "#F0F9EF",
1514
+ 1: "#E6F4E4",
1515
+ 2: "#E2F1DE",
1516
+ 3: "#DCF1D5",
1517
+ 4: "#CCEEC2",
1518
+ 5: "#BAE3AF",
1519
+ 6: "#A2D794",
1520
+ 7: "#87C875",
1521
+ 8: "#6EBF57",
1522
+ 9: "#5ca647",
1523
+ 10: "#3f8d2a"
1524
+ }, I = {
1525
+ 0: "#faf5fd",
1526
+ 1: "#ECDAFA",
1527
+ 2: "#ECD2FA",
1528
+ 3: "#E3C1F6",
1529
+ 4: "#D9B2FA",
1530
+ 5: "#D7A7F7",
1531
+ 6: "#D385EF",
1532
+ 7: "#A854D2",
1533
+ 8: "#9035BD",
1534
+ 9: "#6F2EA8",
1535
+ 10: "#5B2589"
1536
+ }, L = {
1537
+ 0: "#F7F7FC",
1538
+ 1: "#F4F4FF",
1539
+ 2: "#E8E8FF",
1540
+ 3: "#E2E2FF",
1541
+ 4: "#D4D4FF",
1542
+ 5: "#C1C1FF",
1543
+ 6: "#AFAFFF",
1544
+ 7: "#9D9DFF",
1545
+ 8: "#8686FF",
1546
+ 9: "#6565FA",
1547
+ 10: "#5454e1"
1548
+ }, $ = {
1549
+ 0: "#F4F8FF",
1550
+ 1: "#EEF4FF",
1551
+ 2: "#EAF2FF",
1552
+ 3: "#DFEAFD",
1553
+ 4: "#CBDEFF",
1554
+ 5: "#C4DAFF",
1555
+ 6: "#BCD4FF",
1556
+ 7: "#518ff8",
1557
+ 8: "#3a80f9 ",
1558
+ 9: "#236ae5 ",
1559
+ 10: "#1d5ece"
1560
+ }, G = {
1561
+ 0: "#fbf0f9",
1562
+ 1: "#FDD8F1",
1563
+ 2: "#FFC2EA",
1564
+ 3: "#FFB5E6",
1565
+ 4: "#FFA2E0",
1566
+ 5: "#FF9ADD",
1567
+ 6: "#FF83D6",
1568
+ 7: "#E63BAD",
1569
+ 8: "#EB3CB2",
1570
+ 9: "#d22799",
1571
+ 10: "#c9178d"
1572
+ }, T = {
1573
+ 0: "#FFFBF0",
1574
+ 1: "#FBF2D8",
1575
+ 2: "#FFF0CD",
1576
+ 3: "#FCE6AE",
1577
+ 4: "#FAD98E",
1578
+ 5: "#FFCD44",
1579
+ 6: "#FFB404",
1580
+ 7: "#E3A703",
1581
+ 8: "#D99904",
1582
+ 9: "#CF9202",
1583
+ 10: "#B57C02"
1584
+ }, P = {
1585
+ 0: "#FFF6F5",
1586
+ 1: "#FCEDEB",
1587
+ 2: "#FFE6E2",
1588
+ 3: "#FFD9D5",
1589
+ 4: "#FDCEC8",
1590
+ 5: "#FBC4C4",
1591
+ 6: "#FEB1B1",
1592
+ 7: "#F99090",
1593
+ 8: "#EF6262",
1594
+ 9: "#E74646",
1595
+ 10: "#DA2222"
1596
+ }, U = {
1597
+ 0: "#FFEFE6",
1598
+ 1: "#FEE8D8",
1599
+ 2: "#FFDDC5",
1600
+ 3: "#FFD4B3",
1601
+ 4: "#FFBA86",
1602
+ 5: "#FF9B61",
1603
+ 6: "#FF8635",
1604
+ 7: "#F2711B",
1605
+ 8: "#D95903",
1606
+ 9: "#C85700",
1607
+ 10: "#BD4B04"
1608
+ }, O = {
1609
+ 0: "#FAF9FF",
1610
+ 1: "#ECEBFF",
1611
+ 2: "#D7CFF7",
1612
+ 3: "#BDB7F7",
1613
+ 4: "#C09EFE",
1614
+ 5: "#B792FC",
1615
+ 6: "#9E70F5",
1616
+ 7: "#8950F3",
1617
+ 8: "#8C53F4",
1618
+ 9: "#8143F6",
1619
+ 10: "#7530F5"
1620
+ }, j = {
1621
+ 0: "#F0FBFF",
1622
+ 1: "#E2F7FF",
1623
+ 2: "#C9F0F7",
1624
+ 3: "#B2E8F0",
1625
+ 4: "#A1E9F1",
1626
+ 5: "#82E2EF",
1627
+ 6: "#46B0C8",
1628
+ 7: "#2E98AD",
1629
+ 8: "#1B899E",
1630
+ 9: "#177E93",
1631
+ 10: "#07596A"
1632
+ }, _ = {
1633
+ 0: "#F1F6F2",
1634
+ 1: "#F4F7E6",
1635
+ 2: "#ECF6C2",
1636
+ 3: "#D5E68C",
1637
+ 4: "#C5DE59",
1638
+ 5: "#B2CD36",
1639
+ 6: "#98B61A",
1640
+ 7: "#779204",
1641
+ 8: "#6B8402",
1642
+ 9: "#536601",
1643
+ 10: "#4F6201"
1644
+ }, N = {
1645
+ black: W,
1646
+ white: z,
1647
+ gray: H,
1648
+ grayAlpha: w,
1649
+ overlay: M,
1650
+ green: R,
1651
+ purple: I,
1652
+ indigo: L,
1653
+ blue: $,
1654
+ mag: G,
1655
+ yellow: T,
1656
+ red: P,
1657
+ orange: U,
1658
+ violet: O,
1659
+ teal: j,
1660
+ lime: _
1661
+ }, X = N, l = o.colors.functional, q = o.buttonPrimary, J = o.buttonSecondary, K = o.buttonGhost, Q = o.buttonDanger, V = o.buttonRounded, Y = o.iconButton, Z = o.linkColors, oo = o.highlightColors, ro = o.breadcrumbColors, eo = o.siteHeaderColors, Fo = o.overlayColors, lo = o.sheetColors, fo = o.sidebarColors, to = o.popoverColors, ao = o.actionMenuColors, io = o.pillColors, go = o.tooltipColors, no = o.globalColors, so = o.sizes, bo = o.shadows, Co = o.typography, Eo = {
1662
+ // ── Colors ─────────────────────────────────────────────────────────────────
1663
+ colors: {
1664
+ base: X,
1665
+ // Functional tokens — components reference these, never the base scale directly
1666
+ functional: {
1667
+ background: l.background,
1668
+ foreground: l.foreground,
1669
+ border: l.border,
1670
+ syntax: l.syntax,
1671
+ button: {
1672
+ primary: q,
1673
+ secondary: J,
1674
+ ghost: K,
1675
+ danger: Q,
1676
+ rounded: V
1677
+ },
1678
+ iconButton: Y,
1679
+ link: Z,
1680
+ highlight: oo,
1681
+ breadcrumb: ro,
1682
+ siteHeader: eo,
1683
+ overlay: Fo,
1684
+ sheet: lo,
1685
+ sidebar: fo,
1686
+ popover: to,
1687
+ actionMenu: ao,
1688
+ pill: io,
1689
+ tooltip: go
1690
+ },
1691
+ global: no
1692
+ },
1693
+ // ── Typography ──────────────────────────────────────────────────────────────
1694
+ typography: Co,
1695
+ // ── Sizes ───────────────────────────────────────────────────────────────────
1696
+ sizes: so,
1697
+ // ── Shadows ─────────────────────────────────────────────────────────────────
1698
+ shadows: bo
1699
+ };
1700
+ function mo(r) {
1701
+ return r !== null && typeof r == "object" && !Array.isArray(r);
1702
+ }
1703
+ function Do(r, d) {
1704
+ const F = r.split(".");
1705
+ let e = d;
1706
+ for (const f of F) {
1707
+ if (!mo(e)) return;
1708
+ e = e[f];
1709
+ }
1710
+ return typeof e == "string" ? e : void 0;
1711
+ }
1712
+ function co(r, d, F) {
1713
+ const e = (F == null ? void 0 : F[r]) ?? r;
1714
+ return Do(e, d) ?? e;
1715
+ }
1716
+ const ho = {
1717
+ canvas: ["canvas.default", "canvas.inset", "canvas.subtle", "canvas.insetStrong"],
1718
+ text: ["text.default", "text.muted", "text.subtle", "text.contrast"],
1719
+ bg: ["bg.gray.light.01", "bg.gray.light.02", "bg.gray.dark.07"],
1720
+ border: ["border.gray.1", "border.gray.2", "border.grayAlpha.2"],
1721
+ fg: ["fg.neutral.default", "fg.blue.contrast", "fg.green.contrast"],
1722
+ semantic: [
1723
+ "primary",
1724
+ "success.default",
1725
+ "warning.default",
1726
+ "error.default",
1727
+ "info.default"
1728
+ ]
1729
+ };
1730
+ export {
1731
+ ho as G,
1732
+ Do as a,
1733
+ Eo as d,
1734
+ co as r
1735
+ };
1736
+ //# sourceMappingURL=globalColor-BecSaRw9.mjs.map