@apify/ui-library 0.76.0 → 0.76.2-featcolortokens-178953.21

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 (76) hide show
  1. package/README.md +18 -5
  2. package/dist/src/design_system/colors/generated/colors_theme.dark.d.ts +110 -0
  3. package/dist/src/design_system/colors/generated/colors_theme.dark.d.ts.map +1 -0
  4. package/dist/src/design_system/colors/generated/colors_theme.dark.js +110 -0
  5. package/dist/src/design_system/colors/generated/colors_theme.dark.js.map +1 -0
  6. package/dist/src/design_system/colors/generated/colors_theme.light.d.ts +110 -0
  7. package/dist/src/design_system/colors/generated/colors_theme.light.d.ts.map +1 -0
  8. package/dist/src/design_system/colors/generated/colors_theme.light.js +110 -0
  9. package/dist/src/design_system/colors/generated/colors_theme.light.js.map +1 -0
  10. package/dist/src/design_system/colors/generated/css_variables.dark.d.ts +5 -0
  11. package/dist/src/design_system/colors/generated/css_variables.dark.d.ts.map +1 -0
  12. package/dist/src/design_system/colors/generated/css_variables.dark.js +147 -0
  13. package/dist/src/design_system/colors/generated/css_variables.dark.js.map +1 -0
  14. package/dist/src/design_system/colors/generated/css_variables.light.d.ts +5 -0
  15. package/dist/src/design_system/colors/generated/css_variables.light.d.ts.map +1 -0
  16. package/dist/src/design_system/colors/generated/css_variables.light.js +147 -0
  17. package/dist/src/design_system/colors/generated/css_variables.light.js.map +1 -0
  18. package/dist/src/design_system/colors/generated/css_variables_palette.dark.d.ts +5 -0
  19. package/dist/src/design_system/colors/generated/css_variables_palette.dark.d.ts.map +1 -0
  20. package/dist/src/design_system/colors/generated/css_variables_palette.dark.js +74 -0
  21. package/dist/src/design_system/colors/generated/css_variables_palette.dark.js.map +1 -0
  22. package/dist/src/design_system/colors/generated/css_variables_palette.light.d.ts +5 -0
  23. package/dist/src/design_system/colors/generated/css_variables_palette.light.d.ts.map +1 -0
  24. package/dist/src/design_system/colors/generated/css_variables_palette.light.js +74 -0
  25. package/dist/src/design_system/colors/generated/css_variables_palette.light.js.map +1 -0
  26. package/dist/src/design_system/{properties_theme.d.ts → colors/generated/properties_theme.d.ts} +18 -14
  27. package/dist/src/design_system/colors/generated/properties_theme.d.ts.map +1 -0
  28. package/dist/src/design_system/{properties_theme.js → colors/generated/properties_theme.js} +18 -154
  29. package/dist/src/design_system/colors/generated/properties_theme.js.map +1 -0
  30. package/dist/src/design_system/colors/index.d.ts +8 -0
  31. package/dist/src/design_system/colors/index.d.ts.map +1 -0
  32. package/dist/src/design_system/colors/index.js +8 -0
  33. package/dist/src/design_system/colors/index.js.map +1 -0
  34. package/dist/src/design_system/theme.d.ts +88 -87
  35. package/dist/src/design_system/theme.d.ts.map +1 -1
  36. package/dist/src/design_system/theme.js +1 -2
  37. package/dist/src/design_system/theme.js.map +1 -1
  38. package/dist/src/index.d.ts +1 -0
  39. package/dist/src/index.d.ts.map +1 -1
  40. package/dist/src/index.js +1 -0
  41. package/dist/src/index.js.map +1 -1
  42. package/dist/tsconfig.build.tsbuildinfo +1 -1
  43. package/package.json +11 -5
  44. package/src/design_system/colors/build_color_tokens.js +183 -0
  45. package/src/design_system/colors/figma_color_tokens.dark.json +886 -0
  46. package/src/design_system/colors/figma_color_tokens.light.json +886 -0
  47. package/src/design_system/colors/generated/colors_theme.dark.ts +110 -0
  48. package/src/design_system/{colors_theme.ts → colors/generated/colors_theme.light.ts} +40 -143
  49. package/src/design_system/colors/generated/css_variables.dark.ts +147 -0
  50. package/src/design_system/colors/generated/css_variables.light.ts +147 -0
  51. package/src/design_system/colors/generated/css_variables_palette.dark.ts +74 -0
  52. package/src/design_system/colors/generated/css_variables_palette.light.ts +74 -0
  53. package/src/design_system/{properties_theme.ts → colors/generated/properties_theme.ts} +19 -293
  54. package/src/design_system/colors/index.ts +7 -0
  55. package/src/design_system/theme.ts +1 -2
  56. package/src/index.ts +1 -0
  57. package/style/colors/dark.scss +148 -0
  58. package/style/colors/light.scss +148 -0
  59. package/style/colors/palette.dark.scss +75 -0
  60. package/style/colors/palette.light.scss +75 -0
  61. package/.stylelintrc +0 -12
  62. package/CHANGELOG.md +0 -3430
  63. package/CODEOWNERS +0 -7
  64. package/dist/src/design_system/colors_theme.d.ts +0 -213
  65. package/dist/src/design_system/colors_theme.d.ts.map +0 -1
  66. package/dist/src/design_system/colors_theme.js +0 -213
  67. package/dist/src/design_system/colors_theme.js.map +0 -1
  68. package/dist/src/design_system/properties_theme.d.ts.map +0 -1
  69. package/dist/src/design_system/properties_theme.js.map +0 -1
  70. package/eslint.config.mjs +0 -44
  71. package/src/codemods/generate_color_property_tokens.mjs +0 -98
  72. package/src/codemods/generate_color_theme_files.mjs +0 -47
  73. package/src/design_system/generate_color_definitions.js +0 -44
  74. package/src/design_system/supernova_color_tokens.json +0 -1766
  75. package/tsconfig.build.json +0 -17
  76. package/tsconfig.json +0 -10
@@ -1,1766 +0,0 @@
1
- {
2
- "light": {
3
- "Semantic": {
4
- "Neutral": {
5
- "Text": {
6
- "value": "{Palette.Neutral.850}",
7
- "type": "color"
8
- },
9
- "Text Muted": {
10
- "value": "{Palette.Neutral.700}",
11
- "type": "color"
12
- },
13
- "Text Subtle": {
14
- "value": "{Palette.Neutral.500}",
15
- "type": "color"
16
- },
17
- "Text Disabled": {
18
- "value": "{Palette.Neutral.200}",
19
- "type": "color"
20
- },
21
- "Text On Primary": {
22
- "value": "{Palette.Neutral.0}",
23
- "type": "color"
24
- },
25
- "Icon On Primary": {
26
- "value": "{Palette.Neutral.0}",
27
- "type": "color"
28
- },
29
- "Background": {
30
- "value": "{Palette.Neutral.0}",
31
- "type": "color"
32
- },
33
- "Background Muted": {
34
- "value": "{Palette.Neutral.25}",
35
- "type": "color"
36
- },
37
- "Background Subtle": {
38
- "value": "{Palette.Neutral.50}",
39
- "type": "color"
40
- },
41
- "Background White": {
42
- "value": "{Palette.Neutral.0}",
43
- "type": "color"
44
- },
45
- "Card Background": {
46
- "value": "{Palette.Neutral.0}",
47
- "type": "color"
48
- },
49
- "Card Background Hover": {
50
- "value": "{Palette.Neutral.0}",
51
- "type": "color"
52
- },
53
- "Border": {
54
- "value": "{Palette.Neutral.150}",
55
- "type": "color"
56
- },
57
- "Separator Subtle": {
58
- "value": "{Palette.Neutral.100}",
59
- "type": "color"
60
- },
61
- "Hover": {
62
- "value": "{Palette.Neutral.75}",
63
- "type": "color"
64
- },
65
- "Disabled": {
66
- "value": "{Palette.Neutral.50}",
67
- "type": "color"
68
- },
69
- "Overflow": {
70
- "value": "{Palette.Neutral.100}",
71
- "type": "color"
72
- },
73
- "Icon": {
74
- "value": "{Palette.Neutral.600}",
75
- "type": "color"
76
- },
77
- "Icon Subtle": {
78
- "value": "{Palette.Neutral.400}",
79
- "type": "color"
80
- },
81
- "Icon Disabled": {
82
- "value": "{Palette.Neutral.250}",
83
- "type": "color"
84
- },
85
- "Field Border": {
86
- "value": "{Palette.Neutral.200}",
87
- "type": "color"
88
- },
89
- "Action Secondary": {
90
- "value": "{Palette.Neutral.150}",
91
- "type": "color"
92
- },
93
- "Action Secondary Hover": {
94
- "value": "{Palette.Neutral.100}",
95
- "type": "color"
96
- },
97
- "Action Secondary Active": {
98
- "value": "{Palette.Neutral.200}",
99
- "type": "color"
100
- },
101
- "Chip Background": {
102
- "value": "{Palette.Neutral.100}",
103
- "type": "color"
104
- },
105
- "Chip Background Hover": {
106
- "value": "{Palette.Neutral.150}",
107
- "type": "color"
108
- },
109
- "Chip Background Active": {
110
- "value": "{Palette.Neutral.200}",
111
- "type": "color"
112
- },
113
- "Chip Background Disabled": {
114
- "value": "{Palette.Neutral.150}",
115
- "type": "color"
116
- },
117
- "Large Tooltip Background": {
118
- "value": "{Palette.Neutral.0}",
119
- "type": "color"
120
- },
121
- "Large Tooltip Border": {
122
- "value": "{Palette.Neutral.100}",
123
- "type": "color"
124
- },
125
- "Small Tooltip Text": {
126
- "value": "{Palette.Neutral.0}",
127
- "type": "color"
128
- },
129
- "Small Tooltip Background": {
130
- "value": "{Palette.Neutral.900}",
131
- "type": "color"
132
- },
133
- "Small Tooltip Border": {
134
- "value": "{Palette.Neutral.850}",
135
- "type": "color"
136
- },
137
- "Overlay": {
138
- "value": "#191b22cc",
139
- "type": "color"
140
- },
141
- "Field Background": {
142
- "value": "{Palette.Neutral.25}",
143
- "type": "color"
144
- },
145
- "Text Placeholder": {
146
- "value": "{Palette.Neutral.350}",
147
- "type": "color"
148
- }
149
- },
150
- "Primary": {
151
- "Text": {
152
- "value": "{Palette.Blue.500}",
153
- "type": "color"
154
- },
155
- "Text Interactive": {
156
- "value": "{Palette.Blue.500}",
157
- "type": "color"
158
- },
159
- "Icon": {
160
- "value": "{Palette.Blue.500}",
161
- "type": "color"
162
- },
163
- "Action": {
164
- "value": "{Palette.Blue.500}",
165
- "type": "color"
166
- },
167
- "Action Hover": {
168
- "value": "{Palette.Blue.400}",
169
- "type": "color"
170
- },
171
- "Action Active": {
172
- "value": "{Palette.Blue.600}",
173
- "type": "color"
174
- },
175
- "Field Border Active": {
176
- "value": "{Palette.Blue.500}",
177
- "type": "color"
178
- },
179
- "Background": {
180
- "value": "{Palette.Blue.50}",
181
- "type": "color"
182
- },
183
- "Background Hover": {
184
- "value": "{Palette.Blue.100}",
185
- "type": "color"
186
- },
187
- "Background Subtle": {
188
- "value": "{Palette.Blue.25}",
189
- "type": "color"
190
- },
191
- "Chip Background": {
192
- "value": "{Palette.Blue.50}",
193
- "type": "color"
194
- },
195
- "Chip Background Subtle": {
196
- "value": "{Palette.Blue.25}",
197
- "type": "color"
198
- },
199
- "Chip Background Hover": {
200
- "value": "{Palette.Blue.100}",
201
- "type": "color"
202
- },
203
- "Chip Text": {
204
- "value": "{Palette.Blue.600}",
205
- "type": "color"
206
- },
207
- "Shadow Active": {
208
- "value": "{Palette.Blue.200}",
209
- "type": "color"
210
- },
211
- "Border Subtle": {
212
- "value": "{Palette.Blue.200}",
213
- "type": "color"
214
- }
215
- },
216
- "Primary Black": {
217
- "Action": {
218
- "value": "{Palette.Neutral.800}",
219
- "type": "color"
220
- },
221
- "Action Hover": {
222
- "value": "{Palette.Neutral.775}",
223
- "type": "color"
224
- },
225
- "Action Active": {
226
- "value": "{Palette.Neutral.950}",
227
- "type": "color"
228
- },
229
- "Background": {
230
- "value": "{Palette.Neutral.875}",
231
- "type": "color"
232
- },
233
- "Background Hover": {
234
- "value": "{Palette.Neutral.700}",
235
- "type": "color"
236
- },
237
- "Chip Text": {
238
- "value": "{Palette.Neutral.0}",
239
- "type": "color"
240
- }
241
- },
242
- "Success": {
243
- "Text": {
244
- "value": "{Palette.Green.500}",
245
- "type": "color"
246
- },
247
- "Icon": {
248
- "value": "{Palette.Green.500}",
249
- "type": "color"
250
- },
251
- "Background": {
252
- "value": "{Palette.Green.50}",
253
- "type": "color"
254
- },
255
- "Background Hover": {
256
- "value": "{Palette.Green.100}",
257
- "type": "color"
258
- },
259
- "Background Subtle": {
260
- "value": "{Palette.Green.25}",
261
- "type": "color"
262
- },
263
- "Background Subtle Hover": {
264
- "value": "{Palette.Green.100}",
265
- "type": "color"
266
- },
267
- "Background Subtle Active": {
268
- "value": "{Palette.Green.200}",
269
- "type": "color"
270
- },
271
- "Border": {
272
- "value": "{Palette.Green.400}",
273
- "type": "color"
274
- },
275
- "Action": {
276
- "value": "{Palette.Green.500}",
277
- "type": "color"
278
- },
279
- "Action Hover": {
280
- "value": "{Palette.Green.400}",
281
- "type": "color"
282
- },
283
- "Action Active": {
284
- "value": "{Palette.Green.600}",
285
- "type": "color"
286
- },
287
- "Chip Background": {
288
- "value": "{Palette.Green.75}",
289
- "type": "color"
290
- },
291
- "Chip Background Hover": {
292
- "value": "{Palette.Green.100}",
293
- "type": "color"
294
- },
295
- "Chip Text": {
296
- "value": "{Palette.Green.600}",
297
- "type": "color"
298
- },
299
- "Border Subtle": {
300
- "value": "{Palette.Green.200}",
301
- "type": "color"
302
- }
303
- },
304
- "Warning": {
305
- "Text": {
306
- "value": "{Palette.Yellow.500}",
307
- "type": "color"
308
- },
309
- "Icon": {
310
- "value": "{Palette.Yellow.200}",
311
- "type": "color"
312
- },
313
- "Background": {
314
- "value": "{Palette.Yellow.50}",
315
- "type": "color"
316
- },
317
- "Background Hover": {
318
- "value": "{Palette.Yellow.100}",
319
- "type": "color"
320
- },
321
- "Background Subtle": {
322
- "value": "{Palette.Yellow.25}",
323
- "type": "color"
324
- },
325
- "Field border": {
326
- "value": "{Palette.Yellow.200}",
327
- "type": "color"
328
- },
329
- "Chip Background": {
330
- "value": "{Palette.Yellow.75}",
331
- "type": "color"
332
- },
333
- "Chip Background Hover": {
334
- "value": "{Palette.Yellow.100}",
335
- "type": "color"
336
- },
337
- "Chip Text": {
338
- "value": "{Palette.Yellow.600}",
339
- "type": "color"
340
- },
341
- "Border Subtle": {
342
- "value": "{Palette.Yellow.200}",
343
- "type": "color"
344
- }
345
- },
346
- "Danger": {
347
- "Text": {
348
- "value": "{Palette.Red.500}",
349
- "type": "color"
350
- },
351
- "Icon": {
352
- "value": "{Palette.Red.500}",
353
- "type": "color"
354
- },
355
- "Background": {
356
- "value": "{Palette.Red.50}",
357
- "type": "color"
358
- },
359
- "Background Hover": {
360
- "value": "{Palette.Red.100}",
361
- "type": "color"
362
- },
363
- "Background Subtle": {
364
- "value": "{Palette.Red.25}",
365
- "type": "color"
366
- },
367
- "Background Subtle Hover": {
368
- "value": "{Palette.Red.100}",
369
- "type": "color"
370
- },
371
- "Background Subtle Active": {
372
- "value": "{Palette.Red.200}",
373
- "type": "color"
374
- },
375
- "Border": {
376
- "value": "{Palette.Red.400}",
377
- "type": "color"
378
- },
379
- "Field Border": {
380
- "value": "{Palette.Red.400}",
381
- "type": "color"
382
- },
383
- "Action": {
384
- "value": "{Palette.Red.500}",
385
- "type": "color"
386
- },
387
- "Action Hover": {
388
- "value": "{Palette.Red.400}",
389
- "type": "color"
390
- },
391
- "Action Active": {
392
- "value": "{Palette.Red.600}",
393
- "type": "color"
394
- },
395
- "Chip Background": {
396
- "value": "{Palette.Red.75}",
397
- "type": "color"
398
- },
399
- "Chip Background Hover": {
400
- "value": "{Palette.Red.100}",
401
- "type": "color"
402
- },
403
- "Chip Text": {
404
- "value": "{Palette.Red.600}",
405
- "type": "color"
406
- },
407
- "Border Subtle": {
408
- "value": "{Palette.Red.200}",
409
- "type": "color"
410
- }
411
- },
412
- "Special": {
413
- "Starter Plan Background": {
414
- "value": "{Decorative.Buttercup.Light}",
415
- "type": "color"
416
- },
417
- "Enterprise Plan Background": {
418
- "value": "{Decorative.Lavender.Light}",
419
- "type": "color"
420
- },
421
- "Business Plan Background": {
422
- "value": "{Decorative.Teal.Light}",
423
- "type": "color"
424
- },
425
- "Scale Plan Background": {
426
- "value": "{Decorative.Indigo.Light}",
427
- "type": "color"
428
- },
429
- "Free Plan Background": {
430
- "value": "{Decorative.Coral.Light}",
431
- "type": "color"
432
- }
433
- }
434
- },
435
- "Decorative": {
436
- "Rose": {
437
- "Light": {
438
- "value": "#f483b5",
439
- "type": "color"
440
- },
441
- "Base": {
442
- "value": "#c6387d",
443
- "type": "color"
444
- },
445
- "Dark": {
446
- "value": "#781552",
447
- "type": "color"
448
- },
449
- "Text": {
450
- "value": "#b6006b",
451
- "type": "color"
452
- }
453
- },
454
- "Buttercup": {
455
- "Light": {
456
- "value": "#ffdd96",
457
- "type": "color"
458
- },
459
- "Base": {
460
- "value": "#f0b21b",
461
- "type": "color"
462
- },
463
- "Dark": {
464
- "value": "#c37319",
465
- "type": "color"
466
- },
467
- "Text": {
468
- "value": "#a65d00",
469
- "type": "color"
470
- }
471
- },
472
- "Paprika": {
473
- "Light": {
474
- "value": "#e44467",
475
- "type": "color"
476
- },
477
- "Base": {
478
- "value": "#9b0238",
479
- "type": "color"
480
- },
481
- "Dark": {
482
- "value": "#4a0018",
483
- "type": "color"
484
- },
485
- "Text": {
486
- "value": "#ba0044",
487
- "type": "color"
488
- }
489
- },
490
- "Teal": {
491
- "Light": {
492
- "value": "#a7f2ed",
493
- "type": "color"
494
- },
495
- "Base": {
496
- "value": "#30c0bb",
497
- "type": "color"
498
- },
499
- "Dark": {
500
- "value": "#297774",
501
- "type": "color"
502
- },
503
- "Text": {
504
- "value": "#018181",
505
- "type": "color"
506
- }
507
- },
508
- "Indigo": {
509
- "Light": {
510
- "value": "#a1b7ff",
511
- "type": "color"
512
- },
513
- "Base": {
514
- "value": "#5d85e1",
515
- "type": "color"
516
- },
517
- "Dark": {
518
- "value": "#365494",
519
- "type": "color"
520
- },
521
- "Text": {
522
- "value": "#2563c1",
523
- "type": "color"
524
- }
525
- },
526
- "Slate": {
527
- "Light": {
528
- "value": "#c1c5e1",
529
- "type": "color"
530
- },
531
- "Base": {
532
- "value": "#8490c4",
533
- "type": "color"
534
- },
535
- "Dark": {
536
- "value": "#525c85",
537
- "type": "color"
538
- },
539
- "Text": {
540
- "value": "#566087",
541
- "type": "color"
542
- }
543
- },
544
- "Coral": {
545
- "Light": {
546
- "value": "#ffc89f",
547
- "type": "color"
548
- },
549
- "Base": {
550
- "value": "#fa8136",
551
- "type": "color"
552
- },
553
- "Dark": {
554
- "value": "#bb4511",
555
- "type": "color"
556
- },
557
- "Text": {
558
- "value": "#c74000",
559
- "type": "color"
560
- }
561
- },
562
- "Lavender": {
563
- "Light": {
564
- "value": "#bf97ed",
565
- "type": "color"
566
- },
567
- "Base": {
568
- "value": "#6a14de",
569
- "type": "color"
570
- },
571
- "Dark": {
572
- "value": "#330276",
573
- "type": "color"
574
- },
575
- "Text": {
576
- "value": "#6e00f4",
577
- "type": "color"
578
- }
579
- },
580
- "Bamboo": {
581
- "Light": {
582
- "value": "#64cda5",
583
- "type": "color"
584
- },
585
- "Base": {
586
- "value": "#12966f",
587
- "type": "color"
588
- },
589
- "Dark": {
590
- "value": "#195d46",
591
- "type": "color"
592
- },
593
- "Text": {
594
- "value": "#007455",
595
- "type": "color"
596
- }
597
- }
598
- },
599
- "Palette": {
600
- "Neutral": {
601
- "0": {
602
- "value": "#ffffff",
603
- "type": "color"
604
- },
605
- "25": {
606
- "value": "#f8f9fc",
607
- "type": "color"
608
- },
609
- "50": {
610
- "value": "#f3f4fa",
611
- "type": "color"
612
- },
613
- "75": {
614
- "value": "#eef0f8",
615
- "type": "color"
616
- },
617
- "100": {
618
- "value": "#e0e3f2",
619
- "type": "color"
620
- },
621
- "150": {
622
- "value": "#d0d5e9",
623
- "type": "color"
624
- },
625
- "200": {
626
- "value": "#c0c6de",
627
- "type": "color"
628
- },
629
- "250": {
630
- "value": "#b0b8d1",
631
- "type": "color"
632
- },
633
- "300": {
634
- "value": "#a3abc5",
635
- "type": "color"
636
- },
637
- "350": {
638
- "value": "#969eb8",
639
- "type": "color"
640
- },
641
- "400": {
642
- "value": "#8a93ae",
643
- "type": "color"
644
- },
645
- "450": {
646
- "value": "#7b84a0",
647
- "type": "color"
648
- },
649
- "500": {
650
- "value": "#6c7590",
651
- "type": "color"
652
- },
653
- "550": {
654
- "value": "#626a85",
655
- "type": "color"
656
- },
657
- "600": {
658
- "value": "#555d76",
659
- "type": "color"
660
- },
661
- "650": {
662
- "value": "#4b526b",
663
- "type": "color"
664
- },
665
- "700": {
666
- "value": "#3f475d",
667
- "type": "color"
668
- },
669
- "750": {
670
- "value": "#31384d",
671
- "type": "color"
672
- },
673
- "775": {
674
- "value": "#2b3143",
675
- "type": "color"
676
- },
677
- "800": {
678
- "value": "#272d3e",
679
- "type": "color"
680
- },
681
- "850": {
682
- "value": "#242836",
683
- "type": "color"
684
- },
685
- "875": {
686
- "value": "#1d202a",
687
- "type": "color"
688
- },
689
- "900": {
690
- "value": "#191b22",
691
- "type": "color"
692
- },
693
- "950": {
694
- "value": "#0a0b0f",
695
- "type": "color"
696
- }
697
- },
698
- "Yellow": {
699
- "25": {
700
- "value": "#f9f6ea",
701
- "type": "color"
702
- },
703
- "50": {
704
- "value": "#f9f0db",
705
- "type": "color"
706
- },
707
- "75": {
708
- "value": "#f7e8c4",
709
- "type": "color"
710
- },
711
- "100": {
712
- "value": "#f7dfb1",
713
- "type": "color"
714
- },
715
- "200": {
716
- "value": "#f5b315",
717
- "type": "color"
718
- },
719
- "300": {
720
- "value": "#e39c04",
721
- "type": "color"
722
- },
723
- "350": {
724
- "value": "#d58e00",
725
- "type": "color"
726
- },
727
- "400": {
728
- "value": "#ca8200",
729
- "type": "color"
730
- },
731
- "500": {
732
- "value": "#a96600",
733
- "type": "color"
734
- },
735
- "600": {
736
- "value": "#8c4e02",
737
- "type": "color"
738
- },
739
- "700": {
740
- "value": "#864906",
741
- "type": "color"
742
- }
743
- },
744
- "Red": {
745
- "25": {
746
- "value": "#fcf2ef",
747
- "type": "color"
748
- },
749
- "50": {
750
- "value": "#fff0ec",
751
- "type": "color"
752
- },
753
- "75": {
754
- "value": "#ffe3dc",
755
- "type": "color"
756
- },
757
- "100": {
758
- "value": "#fedad1",
759
- "type": "color"
760
- },
761
- "200": {
762
- "value": "#ffb39f",
763
- "type": "color"
764
- },
765
- "300": {
766
- "value": "#ff886e",
767
- "type": "color"
768
- },
769
- "350": {
770
- "value": "#fc7156",
771
- "type": "color"
772
- },
773
- "400": {
774
- "value": "#fa4d37",
775
- "type": "color"
776
- },
777
- "500": {
778
- "value": "#e3231d",
779
- "type": "color"
780
- },
781
- "600": {
782
- "value": "#bb0401",
783
- "type": "color"
784
- },
785
- "700": {
786
- "value": "#af0600",
787
- "type": "color"
788
- }
789
- },
790
- "Green": {
791
- "25": {
792
- "value": "#e8f9ef",
793
- "type": "color"
794
- },
795
- "50": {
796
- "value": "#e4f5e5",
797
- "type": "color"
798
- },
799
- "75": {
800
- "value": "#daefdc",
801
- "type": "color"
802
- },
803
- "100": {
804
- "value": "#cfe9d1",
805
- "type": "color"
806
- },
807
- "200": {
808
- "value": "#80da8d",
809
- "type": "color"
810
- },
811
- "300": {
812
- "value": "#46c263",
813
- "type": "color"
814
- },
815
- "350": {
816
- "value": "#22b551",
817
- "type": "color"
818
- },
819
- "400": {
820
- "value": "#00ab46",
821
- "type": "color"
822
- },
823
- "500": {
824
- "value": "#008a27",
825
- "type": "color"
826
- },
827
- "600": {
828
- "value": "#086e08",
829
- "type": "color"
830
- },
831
- "700": {
832
- "value": "#176b08",
833
- "type": "color"
834
- }
835
- },
836
- "Blue": {
837
- "25": {
838
- "value": "#f0f8ff",
839
- "type": "color"
840
- },
841
- "50": {
842
- "value": "#ecf1ff",
843
- "type": "color"
844
- },
845
- "75": {
846
- "value": "#e1eaff",
847
- "type": "color"
848
- },
849
- "100": {
850
- "value": "#d8e2ff",
851
- "type": "color"
852
- },
853
- "200": {
854
- "value": "#b2c6ff",
855
- "type": "color"
856
- },
857
- "300": {
858
- "value": "#88abfe",
859
- "type": "color"
860
- },
861
- "350": {
862
- "value": "#709efd",
863
- "type": "color"
864
- },
865
- "400": {
866
- "value": "#5290f9",
867
- "type": "color"
868
- },
869
- "500": {
870
- "value": "#1672eb",
871
- "type": "color"
872
- },
873
- "600": {
874
- "value": "#1a57da",
875
- "type": "color"
876
- },
877
- "700": {
878
- "value": "#224ed5",
879
- "type": "color"
880
- }
881
- }
882
- }
883
- },
884
- "dark": {
885
- "Semantic": {
886
- "Neutral": {
887
- "Text": {
888
- "value": "{Palette.Neutral.50}",
889
- "type": "color"
890
- },
891
- "Text Muted": {
892
- "value": "{Palette.Neutral.250}",
893
- "type": "color"
894
- },
895
- "Text Subtle": {
896
- "value": "{Palette.Neutral.400}",
897
- "type": "color"
898
- },
899
- "Text Disabled": {
900
- "value": "{Palette.Neutral.600}",
901
- "type": "color"
902
- },
903
- "Text On Primary": {
904
- "value": "{Palette.Neutral.900}",
905
- "type": "color"
906
- },
907
- "Icon On Primary": {
908
- "value": "{Palette.Neutral.900}",
909
- "type": "color"
910
- },
911
- "Background": {
912
- "value": "{Palette.Neutral.900}",
913
- "type": "color"
914
- },
915
- "Background Muted": {
916
- "value": "{Palette.Neutral.850}",
917
- "type": "color"
918
- },
919
- "Background Subtle": {
920
- "value": "{Palette.Neutral.800}",
921
- "type": "color"
922
- },
923
- "Background White": {
924
- "value": "{Palette.Neutral.50}",
925
- "type": "color"
926
- },
927
- "Card Background": {
928
- "value": "{Palette.Neutral.875}",
929
- "type": "color"
930
- },
931
- "Card Background Hover": {
932
- "value": "{Palette.Neutral.850}",
933
- "type": "color"
934
- },
935
- "Border": {
936
- "value": "{Palette.Neutral.700}",
937
- "type": "color"
938
- },
939
- "Separator Subtle": {
940
- "value": "{Palette.Neutral.750}",
941
- "type": "color"
942
- },
943
- "Hover": {
944
- "value": "{Palette.Neutral.775}",
945
- "type": "color"
946
- },
947
- "Disabled": {
948
- "value": "{Palette.Neutral.750}",
949
- "type": "color"
950
- },
951
- "Overflow": {
952
- "value": "{Palette.Neutral.800}",
953
- "type": "color"
954
- },
955
- "Icon": {
956
- "value": "{Palette.Neutral.250}",
957
- "type": "color"
958
- },
959
- "Icon Subtle": {
960
- "value": "{Palette.Neutral.500}",
961
- "type": "color"
962
- },
963
- "Icon Disabled": {
964
- "value": "{Palette.Neutral.600}",
965
- "type": "color"
966
- },
967
- "Field Border": {
968
- "value": "{Palette.Neutral.750}",
969
- "type": "color"
970
- },
971
- "Action Secondary": {
972
- "value": "{Palette.Neutral.600}",
973
- "type": "color"
974
- },
975
- "Action Secondary Hover": {
976
- "value": "{Palette.Neutral.500}",
977
- "type": "color"
978
- },
979
- "Action Secondary Active": {
980
- "value": "{Palette.Neutral.750}",
981
- "type": "color"
982
- },
983
- "Chip Background": {
984
- "value": "{Palette.Neutral.600}",
985
- "type": "color"
986
- },
987
- "Chip Background Hover": {
988
- "value": "{Palette.Neutral.500}",
989
- "type": "color"
990
- },
991
- "Chip Background Active": {
992
- "value": "{Palette.Neutral.400}",
993
- "type": "color"
994
- },
995
- "Chip Background Disabled": {
996
- "value": "{Palette.Neutral.400}",
997
- "type": "color"
998
- },
999
- "Large Tooltip Background": {
1000
- "value": "{Palette.Neutral.800}",
1001
- "type": "color"
1002
- },
1003
- "Large Tooltip Border": {
1004
- "value": "{Palette.Neutral.750}",
1005
- "type": "color"
1006
- },
1007
- "Small Tooltip Text": {
1008
- "value": "{Palette.Neutral.0}",
1009
- "type": "color"
1010
- },
1011
- "Small Tooltip Background": {
1012
- "value": "{Palette.Neutral.800}",
1013
- "type": "color"
1014
- },
1015
- "Small Tooltip Border": {
1016
- "value": "{Palette.Neutral.750}",
1017
- "type": "color"
1018
- },
1019
- "Overlay": {
1020
- "value": "#101114cc",
1021
- "type": "color"
1022
- },
1023
- "Field Background": {
1024
- "value": "{Palette.Neutral.950}",
1025
- "type": "color"
1026
- },
1027
- "Text Placeholder": {
1028
- "value": "{Palette.Neutral.500}",
1029
- "type": "color"
1030
- }
1031
- },
1032
- "Primary": {
1033
- "Text": {
1034
- "value": "{Palette.Blue.100}",
1035
- "type": "color"
1036
- },
1037
- "Text Interactive": {
1038
- "value": "{Palette.Blue.100}",
1039
- "type": "color"
1040
- },
1041
- "Icon": {
1042
- "value": "{Palette.Blue.300}",
1043
- "type": "color"
1044
- },
1045
- "Action": {
1046
- "value": "{Palette.Blue.200}",
1047
- "type": "color"
1048
- },
1049
- "Action Hover": {
1050
- "value": "{Palette.Blue.75}",
1051
- "type": "color"
1052
- },
1053
- "Action Active": {
1054
- "value": "{Palette.Blue.300}",
1055
- "type": "color"
1056
- },
1057
- "Field Border Active": {
1058
- "value": "{Palette.Blue.300}",
1059
- "type": "color"
1060
- },
1061
- "Background": {
1062
- "value": "{Palette.Blue.600}",
1063
- "type": "color"
1064
- },
1065
- "Background Hover": {
1066
- "value": "{Palette.Blue.400}",
1067
- "type": "color"
1068
- },
1069
- "Background Subtle": {
1070
- "value": "{Palette.Blue.700}",
1071
- "type": "color"
1072
- },
1073
- "Chip Background": {
1074
- "value": "{Palette.Blue.500}",
1075
- "type": "color"
1076
- },
1077
- "Chip Background Subtle": {
1078
- "value": "{Palette.Blue.600}",
1079
- "type": "color"
1080
- },
1081
- "Chip Background Hover": {
1082
- "value": "{Palette.Blue.400}",
1083
- "type": "color"
1084
- },
1085
- "Chip Text": {
1086
- "value": "{Palette.Blue.50}",
1087
- "type": "color"
1088
- },
1089
- "Shadow Active": {
1090
- "value": "{Palette.Blue.350}",
1091
- "type": "color"
1092
- },
1093
- "Border Subtle": {
1094
- "value": "{Palette.Blue.350}",
1095
- "type": "color"
1096
- }
1097
- },
1098
- "Primary Black": {
1099
- "Action": {
1100
- "value": "{Palette.Neutral.0}",
1101
- "type": "color"
1102
- },
1103
- "Action Hover": {
1104
- "value": "{Palette.Neutral.150}",
1105
- "type": "color"
1106
- },
1107
- "Action Active": {
1108
- "value": "{Palette.Neutral.50}",
1109
- "type": "color"
1110
- },
1111
- "Background": {
1112
- "value": "{Palette.Neutral.50}",
1113
- "type": "color"
1114
- },
1115
- "Background Hover": {
1116
- "value": "{Palette.Neutral.75}",
1117
- "type": "color"
1118
- },
1119
- "Chip Text": {
1120
- "value": "{Palette.Neutral.900}",
1121
- "type": "color"
1122
- }
1123
- },
1124
- "Success": {
1125
- "Text": {
1126
- "value": "{Palette.Green.100}",
1127
- "type": "color"
1128
- },
1129
- "Icon": {
1130
- "value": "{Palette.Green.200}",
1131
- "type": "color"
1132
- },
1133
- "Background": {
1134
- "value": "{Palette.Green.500}",
1135
- "type": "color"
1136
- },
1137
- "Background Hover": {
1138
- "value": "{Palette.Green.400}",
1139
- "type": "color"
1140
- },
1141
- "Background Subtle": {
1142
- "value": "{Palette.Green.700}",
1143
- "type": "color"
1144
- },
1145
- "Background Subtle Hover": {
1146
- "value": "{Palette.Green.500}",
1147
- "type": "color"
1148
- },
1149
- "Background Subtle Active": {
1150
- "value": "{Palette.Green.350}",
1151
- "type": "color"
1152
- },
1153
- "Border": {
1154
- "value": "{Palette.Green.300}",
1155
- "type": "color"
1156
- },
1157
- "Border Subtle": {
1158
- "value": "{Palette.Green.350}",
1159
- "type": "color"
1160
- },
1161
- "Action": {
1162
- "value": "{Palette.Green.200}",
1163
- "type": "color"
1164
- },
1165
- "Action Hover": {
1166
- "value": "{Palette.Green.100}",
1167
- "type": "color"
1168
- },
1169
- "Action Active": {
1170
- "value": "{Palette.Green.300}",
1171
- "type": "color"
1172
- },
1173
- "Chip Background": {
1174
- "value": "{Palette.Green.500}",
1175
- "type": "color"
1176
- },
1177
- "Chip Background Hover": {
1178
- "value": "{Palette.Green.400}",
1179
- "type": "color"
1180
- },
1181
- "Chip Text": {
1182
- "value": "{Palette.Green.50}",
1183
- "type": "color"
1184
- }
1185
- },
1186
- "Warning": {
1187
- "Text": {
1188
- "value": "{Palette.Yellow.75}",
1189
- "type": "color"
1190
- },
1191
- "Icon": {
1192
- "value": "{Palette.Yellow.100}",
1193
- "type": "color"
1194
- },
1195
- "Background": {
1196
- "value": "{Palette.Yellow.500}",
1197
- "type": "color"
1198
- },
1199
- "Background Hover": {
1200
- "value": "{Palette.Yellow.400}",
1201
- "type": "color"
1202
- },
1203
- "Background Subtle": {
1204
- "value": "{Palette.Yellow.700}",
1205
- "type": "color"
1206
- },
1207
- "Field border": {
1208
- "value": "{Palette.Yellow.200}",
1209
- "type": "color"
1210
- },
1211
- "Chip Background": {
1212
- "value": "{Palette.Yellow.500}",
1213
- "type": "color"
1214
- },
1215
- "Chip Background Hover": {
1216
- "value": "{Palette.Yellow.400}",
1217
- "type": "color"
1218
- },
1219
- "Chip Text": {
1220
- "value": "{Palette.Yellow.75}",
1221
- "type": "color"
1222
- },
1223
- "Border Subtle": {
1224
- "value": "{Palette.Yellow.350}",
1225
- "type": "color"
1226
- }
1227
- },
1228
- "Danger": {
1229
- "Text": {
1230
- "value": "{Palette.Red.100}",
1231
- "type": "color"
1232
- },
1233
- "Icon": {
1234
- "value": "{Palette.Red.200}",
1235
- "type": "color"
1236
- },
1237
- "Background": {
1238
- "value": "{Palette.Red.500}",
1239
- "type": "color"
1240
- },
1241
- "Background Hover": {
1242
- "value": "{Palette.Red.400}",
1243
- "type": "color"
1244
- },
1245
- "Background Subtle": {
1246
- "value": "{Palette.Red.700}",
1247
- "type": "color"
1248
- },
1249
- "Background Subtle Hover": {
1250
- "value": "{Palette.Red.500}",
1251
- "type": "color"
1252
- },
1253
- "Background Subtle Active": {
1254
- "value": "{Palette.Red.350}",
1255
- "type": "color"
1256
- },
1257
- "Border": {
1258
- "value": "{Palette.Red.300}",
1259
- "type": "color"
1260
- },
1261
- "Field Border": {
1262
- "value": "{Palette.Red.200}",
1263
- "type": "color"
1264
- },
1265
- "Action": {
1266
- "value": "{Palette.Red.200}",
1267
- "type": "color"
1268
- },
1269
- "Action Hover": {
1270
- "value": "{Palette.Red.100}",
1271
- "type": "color"
1272
- },
1273
- "Action Active": {
1274
- "value": "{Palette.Red.300}",
1275
- "type": "color"
1276
- },
1277
- "Chip Background": {
1278
- "value": "{Palette.Red.500}",
1279
- "type": "color"
1280
- },
1281
- "Chip Background Hover": {
1282
- "value": "{Palette.Red.400}",
1283
- "type": "color"
1284
- },
1285
- "Chip Text": {
1286
- "value": "{Palette.Red.50}",
1287
- "type": "color"
1288
- },
1289
- "Border Subtle": {
1290
- "value": "{Palette.Red.350}",
1291
- "type": "color"
1292
- }
1293
- },
1294
- "Special": {
1295
- "Starter Plan Background": {
1296
- "value": "{Decorative.Buttercup.Dark}",
1297
- "type": "color"
1298
- },
1299
- "Enterprise Plan Background": {
1300
- "value": "{Decorative.Lavender.Dark}",
1301
- "type": "color"
1302
- },
1303
- "Business Plan Background": {
1304
- "value": "{Decorative.Teal.Dark}",
1305
- "type": "color"
1306
- },
1307
- "Scale Plan Background": {
1308
- "value": "{Decorative.Indigo.Dark}",
1309
- "type": "color"
1310
- },
1311
- "Free Plan Background": {
1312
- "value": "{Decorative.Coral.Dark}",
1313
- "type": "color"
1314
- }
1315
- }
1316
- },
1317
- "Decorative": {
1318
- "Rose": {
1319
- "Light": {
1320
- "value": "#e88bb3",
1321
- "type": "color"
1322
- },
1323
- "Base": {
1324
- "value": "#b8487b",
1325
- "type": "color"
1326
- },
1327
- "Dark": {
1328
- "value": "#6f234f",
1329
- "type": "color"
1330
- },
1331
- "Text": {
1332
- "value": "#ed8bb5",
1333
- "type": "color"
1334
- }
1335
- },
1336
- "Buttercup": {
1337
- "Light": {
1338
- "value": "#f9deaa",
1339
- "type": "color"
1340
- },
1341
- "Base": {
1342
- "value": "#e5b557",
1343
- "type": "color"
1344
- },
1345
- "Dark": {
1346
- "value": "#b87939",
1347
- "type": "color"
1348
- },
1349
- "Text": {
1350
- "value": "#ebbf6c",
1351
- "type": "color"
1352
- }
1353
- },
1354
- "Paprika": {
1355
- "Light": {
1356
- "value": "#e26c7d",
1357
- "type": "color"
1358
- },
1359
- "Base": {
1360
- "value": "#9e384b",
1361
- "type": "color"
1362
- },
1363
- "Dark": {
1364
- "value": "#511d27",
1365
- "type": "color"
1366
- },
1367
- "Text": {
1368
- "value": "#f67c8d",
1369
- "type": "color"
1370
- }
1371
- },
1372
- "Teal": {
1373
- "Light": {
1374
- "value": "#aef0f5",
1375
- "type": "color"
1376
- },
1377
- "Base": {
1378
- "value": "#58bcc4",
1379
- "type": "color"
1380
- },
1381
- "Dark": {
1382
- "value": "#408288",
1383
- "type": "color"
1384
- },
1385
- "Text": {
1386
- "value": "#62c1c8",
1387
- "type": "color"
1388
- }
1389
- },
1390
- "Indigo": {
1391
- "Light": {
1392
- "value": "#a8b7ed",
1393
- "type": "color"
1394
- },
1395
- "Base": {
1396
- "value": "#6d85ca",
1397
- "type": "color"
1398
- },
1399
- "Dark": {
1400
- "value": "#425484",
1401
- "type": "color"
1402
- },
1403
- "Text": {
1404
- "value": "#a2b2eb",
1405
- "type": "color"
1406
- }
1407
- },
1408
- "Slate": {
1409
- "Light": {
1410
- "value": "#c2c5dc",
1411
- "type": "color"
1412
- },
1413
- "Base": {
1414
- "value": "#8690bf",
1415
- "type": "color"
1416
- },
1417
- "Dark": {
1418
- "value": "#535c81",
1419
- "type": "color"
1420
- },
1421
- "Text": {
1422
- "value": "#afb2c9",
1423
- "type": "color"
1424
- }
1425
- },
1426
- "Coral": {
1427
- "Light": {
1428
- "value": "#f3ccb0",
1429
- "type": "color"
1430
- },
1431
- "Base": {
1432
- "value": "#f08848",
1433
- "type": "color"
1434
- },
1435
- "Dark": {
1436
- "value": "#9a4e2d",
1437
- "type": "color"
1438
- },
1439
- "Text": {
1440
- "value": "#f9b27b",
1441
- "type": "color"
1442
- }
1443
- },
1444
- "Lavender": {
1445
- "Light": {
1446
- "value": "#b482ed",
1447
- "type": "color"
1448
- },
1449
- "Base": {
1450
- "value": "#8148c9",
1451
- "type": "color"
1452
- },
1453
- "Dark": {
1454
- "value": "#48296f",
1455
- "type": "color"
1456
- },
1457
- "Text": {
1458
- "value": "#be8af9",
1459
- "type": "color"
1460
- }
1461
- },
1462
- "Bamboo": {
1463
- "Light": {
1464
- "value": "#7acaa9",
1465
- "type": "color"
1466
- },
1467
- "Base": {
1468
- "value": "#439274",
1469
- "type": "color"
1470
- },
1471
- "Dark": {
1472
- "value": "#305b4a",
1473
- "type": "color"
1474
- },
1475
- "Text": {
1476
- "value": "#65bc99",
1477
- "type": "color"
1478
- }
1479
- }
1480
- },
1481
- "Palette": {
1482
- "Neutral": {
1483
- "0": {
1484
- "value": "#ffffff",
1485
- "type": "color"
1486
- },
1487
- "25": {
1488
- "value": "#f8f9fc",
1489
- "type": "color"
1490
- },
1491
- "50": {
1492
- "value": "#f3f4fa",
1493
- "type": "color"
1494
- },
1495
- "75": {
1496
- "value": "#eef0f8",
1497
- "type": "color"
1498
- },
1499
- "100": {
1500
- "value": "#e1e3ed",
1501
- "type": "color"
1502
- },
1503
- "150": {
1504
- "value": "#d1d5e4",
1505
- "type": "color"
1506
- },
1507
- "200": {
1508
- "value": "#c1c6d9",
1509
- "type": "color"
1510
- },
1511
- "250": {
1512
- "value": "#b2b8cc",
1513
- "type": "color"
1514
- },
1515
- "300": {
1516
- "value": "#a5abc0",
1517
- "type": "color"
1518
- },
1519
- "350": {
1520
- "value": "#989eb3",
1521
- "type": "color"
1522
- },
1523
- "400": {
1524
- "value": "#8c93a8",
1525
- "type": "color"
1526
- },
1527
- "450": {
1528
- "value": "#7d8499",
1529
- "type": "color"
1530
- },
1531
- "500": {
1532
- "value": "#6e758a",
1533
- "type": "color"
1534
- },
1535
- "550": {
1536
- "value": "#646a7f",
1537
- "type": "color"
1538
- },
1539
- "600": {
1540
- "value": "#575d71",
1541
- "type": "color"
1542
- },
1543
- "650": {
1544
- "value": "#4d5265",
1545
- "type": "color"
1546
- },
1547
- "700": {
1548
- "value": "#414758",
1549
- "type": "color"
1550
- },
1551
- "750": {
1552
- "value": "#343847",
1553
- "type": "color"
1554
- },
1555
- "775": {
1556
- "value": "#2d313e",
1557
- "type": "color"
1558
- },
1559
- "800": {
1560
- "value": "#2a2d39",
1561
- "type": "color"
1562
- },
1563
- "850": {
1564
- "value": "#252832",
1565
- "type": "color"
1566
- },
1567
- "875": {
1568
- "value": "#1e2027",
1569
- "type": "color"
1570
- },
1571
- "900": {
1572
- "value": "#1a1b21",
1573
- "type": "color"
1574
- },
1575
- "950": {
1576
- "value": "#101114",
1577
- "type": "color"
1578
- }
1579
- },
1580
- "Yellow": {
1581
- "25": {
1582
- "value": "#fcdc73",
1583
- "type": "color"
1584
- },
1585
- "50": {
1586
- "value": "#ffd761",
1587
- "type": "color"
1588
- },
1589
- "75": {
1590
- "value": "#f9ce4b",
1591
- "type": "color"
1592
- },
1593
- "100": {
1594
- "value": "#f5bc38",
1595
- "type": "color"
1596
- },
1597
- "200": {
1598
- "value": "#cf9117",
1599
- "type": "color"
1600
- },
1601
- "300": {
1602
- "value": "#a56909",
1603
- "type": "color"
1604
- },
1605
- "350": {
1606
- "value": "#8a4f05",
1607
- "type": "color"
1608
- },
1609
- "400": {
1610
- "value": "#6d3806",
1611
- "type": "color"
1612
- },
1613
- "500": {
1614
- "value": "#5d2e0e",
1615
- "type": "color"
1616
- },
1617
- "600": {
1618
- "value": "#3f1b07",
1619
- "type": "color"
1620
- },
1621
- "700": {
1622
- "value": "#301806",
1623
- "type": "color"
1624
- }
1625
- },
1626
- "Red": {
1627
- "25": {
1628
- "value": "#f5a790",
1629
- "type": "color"
1630
- },
1631
- "50": {
1632
- "value": "#fe9e8a",
1633
- "type": "color"
1634
- },
1635
- "75": {
1636
- "value": "#ff8770",
1637
- "type": "color"
1638
- },
1639
- "100": {
1640
- "value": "#ff7157",
1641
- "type": "color"
1642
- },
1643
- "200": {
1644
- "value": "#ef6045",
1645
- "type": "color"
1646
- },
1647
- "300": {
1648
- "value": "#cf4436",
1649
- "type": "color"
1650
- },
1651
- "350": {
1652
- "value": "#aa3229",
1653
- "type": "color"
1654
- },
1655
- "400": {
1656
- "value": "#812420",
1657
- "type": "color"
1658
- },
1659
- "500": {
1660
- "value": "#672523",
1661
- "type": "color"
1662
- },
1663
- "600": {
1664
- "value": "#40191b",
1665
- "type": "color"
1666
- },
1667
- "700": {
1668
- "value": "#381719",
1669
- "type": "color"
1670
- }
1671
- },
1672
- "Green": {
1673
- "25": {
1674
- "value": "#74d584",
1675
- "type": "color"
1676
- },
1677
- "50": {
1678
- "value": "#6ccd7c",
1679
- "type": "color"
1680
- },
1681
- "75": {
1682
- "value": "#55c06a",
1683
- "type": "color"
1684
- },
1685
- "100": {
1686
- "value": "#3bb358",
1687
- "type": "color"
1688
- },
1689
- "200": {
1690
- "value": "#23a64a",
1691
- "type": "color"
1692
- },
1693
- "300": {
1694
- "value": "#068a35",
1695
- "type": "color"
1696
- },
1697
- "350": {
1698
- "value": "#006e29",
1699
- "type": "color"
1700
- },
1701
- "400": {
1702
- "value": "#00531e",
1703
- "type": "color"
1704
- },
1705
- "500": {
1706
- "value": "#14441f",
1707
- "type": "color"
1708
- },
1709
- "600": {
1710
- "value": "#0f2b14",
1711
- "type": "color"
1712
- },
1713
- "700": {
1714
- "value": "#09260f",
1715
- "type": "color"
1716
- }
1717
- },
1718
- "Blue": {
1719
- "25": {
1720
- "value": "#92C0ff",
1721
- "type": "color"
1722
- },
1723
- "50": {
1724
- "value": "#8ebcff",
1725
- "type": "color"
1726
- },
1727
- "75": {
1728
- "value": "#80a9ff",
1729
- "type": "color"
1730
- },
1731
- "100": {
1732
- "value": "#6f9dff",
1733
- "type": "color"
1734
- },
1735
- "200": {
1736
- "value": "#5990ff",
1737
- "type": "color"
1738
- },
1739
- "300": {
1740
- "value": "#3970d7",
1741
- "type": "color"
1742
- },
1743
- "350": {
1744
- "value": "#295cbb",
1745
- "type": "color"
1746
- },
1747
- "400": {
1748
- "value": "#194594",
1749
- "type": "color"
1750
- },
1751
- "500": {
1752
- "value": "#1a3a78",
1753
- "type": "color"
1754
- },
1755
- "600": {
1756
- "value": "#0d2550",
1757
- "type": "color"
1758
- },
1759
- "700": {
1760
- "value": "#151d34",
1761
- "type": "color"
1762
- }
1763
- }
1764
- }
1765
- }
1766
- }