@apify/ui-library 0.76.3 → 0.76.4-featcolortokens-178953.36

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 +10 -4
  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 -3454
  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 -45
  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
@@ -0,0 +1,886 @@
1
+ {
2
+ "Semantic": {
3
+ "Neutral": {
4
+ "Text": {
5
+ "$type": "color",
6
+ "$value": "{Palette.Neutral.50}"
7
+ },
8
+ "Text_Muted": {
9
+ "$type": "color",
10
+ "$value": "{Palette.Neutral.250}"
11
+ },
12
+ "Text_Subtle": {
13
+ "$type": "color",
14
+ "$value": "{Palette.Neutral.400}"
15
+ },
16
+ "Text_Disabled": {
17
+ "$type": "color",
18
+ "$value": "{Palette.Neutral.600}"
19
+ },
20
+ "Text_On_Primary": {
21
+ "$type": "color",
22
+ "$value": "{Palette.Neutral.900}"
23
+ },
24
+ "Icon_On_Primary": {
25
+ "$type": "color",
26
+ "$value": "{Palette.Neutral.900}"
27
+ },
28
+ "Background": {
29
+ "$type": "color",
30
+ "$value": "{Palette.Neutral.900}"
31
+ },
32
+ "Background_Muted": {
33
+ "$type": "color",
34
+ "$value": "{Palette.Neutral.850}"
35
+ },
36
+ "Background_Subtle": {
37
+ "$type": "color",
38
+ "$value": "{Palette.Neutral.800}"
39
+ },
40
+ "Background_White": {
41
+ "$type": "color",
42
+ "$value": "{Palette.Neutral.50}"
43
+ },
44
+ "Card_Background": {
45
+ "$type": "color",
46
+ "$value": "{Palette.Neutral.875}"
47
+ },
48
+ "Card_Background_Hover": {
49
+ "$type": "color",
50
+ "$value": "{Palette.Neutral.850}"
51
+ },
52
+ "Border": {
53
+ "$type": "color",
54
+ "$value": "{Palette.Neutral.700}"
55
+ },
56
+ "Separator_Subtle": {
57
+ "$type": "color",
58
+ "$value": "{Palette.Neutral.750}"
59
+ },
60
+ "Hover": {
61
+ "$type": "color",
62
+ "$value": "{Palette.Neutral.775}"
63
+ },
64
+ "Disabled": {
65
+ "$type": "color",
66
+ "$value": "{Palette.Neutral.750}"
67
+ },
68
+ "Overflow": {
69
+ "$type": "color",
70
+ "$value": "{Palette.Neutral.800}"
71
+ },
72
+ "Icon": {
73
+ "$type": "color",
74
+ "$value": "{Palette.Neutral.250}"
75
+ },
76
+ "Icon_Subtle": {
77
+ "$type": "color",
78
+ "$value": "{Palette.Neutral.500}"
79
+ },
80
+ "Icon_Disabled": {
81
+ "$type": "color",
82
+ "$value": "{Palette.Neutral.600}"
83
+ },
84
+ "Field_Border": {
85
+ "$type": "color",
86
+ "$value": "{Palette.Neutral.750}"
87
+ },
88
+ "Action_Secondary": {
89
+ "$type": "color",
90
+ "$value": "{Palette.Neutral.600}"
91
+ },
92
+ "Action_Secondary_Hover": {
93
+ "$type": "color",
94
+ "$value": "{Palette.Neutral.500}"
95
+ },
96
+ "Action_Secondary_Active": {
97
+ "$type": "color",
98
+ "$value": "{Palette.Neutral.750}"
99
+ },
100
+ "Chip_Background": {
101
+ "$type": "color",
102
+ "$value": "{Palette.Neutral.600}"
103
+ },
104
+ "Chip_Background_Hover": {
105
+ "$type": "color",
106
+ "$value": "{Palette.Neutral.500}"
107
+ },
108
+ "Chip_Background_Active": {
109
+ "$type": "color",
110
+ "$value": "{Palette.Neutral.400}"
111
+ },
112
+ "Chip_Background_Disabled": {
113
+ "$type": "color",
114
+ "$value": "{Palette.Neutral.400}"
115
+ },
116
+ "Large_Tooltip_Background": {
117
+ "$type": "color",
118
+ "$value": "{Palette.Neutral.800}"
119
+ },
120
+ "Large_Tooltip_Border": {
121
+ "$type": "color",
122
+ "$value": "{Palette.Neutral.750}"
123
+ },
124
+ "Small_Tooltip_Text": {
125
+ "$type": "color",
126
+ "$value": "{Palette.Neutral.0}"
127
+ },
128
+ "Small_Tooltip_Background": {
129
+ "$type": "color",
130
+ "$value": "{Palette.Neutral.800}"
131
+ },
132
+ "Small_Tooltip_Border": {
133
+ "$type": "color",
134
+ "$value": "{Palette.Neutral.750}"
135
+ },
136
+ "Overlay": {
137
+ "$type": "color",
138
+ "$value": "#101114"
139
+ },
140
+ "Field_Background": {
141
+ "$type": "color",
142
+ "$value": "{Palette.Neutral.950}"
143
+ },
144
+ "Text_Placeholder": {
145
+ "$type": "color",
146
+ "$value": "{Palette.Neutral.500}"
147
+ }
148
+ },
149
+ "Primary": {
150
+ "Text": {
151
+ "$type": "color",
152
+ "$value": "{Palette.Blue.100}"
153
+ },
154
+ "Text_Interactive": {
155
+ "$type": "color",
156
+ "$value": "{Palette.Blue.100}"
157
+ },
158
+ "Icon": {
159
+ "$type": "color",
160
+ "$value": "{Palette.Blue.300}"
161
+ },
162
+ "Action": {
163
+ "$type": "color",
164
+ "$value": "{Palette.Blue.200}"
165
+ },
166
+ "Action_Hover": {
167
+ "$type": "color",
168
+ "$value": "{Palette.Blue.75}"
169
+ },
170
+ "Action_Active": {
171
+ "$type": "color",
172
+ "$value": "{Palette.Blue.300}"
173
+ },
174
+ "Field_Border_Active": {
175
+ "$type": "color",
176
+ "$value": "{Palette.Blue.300}"
177
+ },
178
+ "Border_Subtle": {
179
+ "$type": "color",
180
+ "$value": "{Palette.Blue.350}"
181
+ },
182
+ "Background": {
183
+ "$type": "color",
184
+ "$value": "{Palette.Blue.600}"
185
+ },
186
+ "Background_Subtle": {
187
+ "$type": "color",
188
+ "$value": "{Palette.Blue.700}"
189
+ },
190
+ "Background_Hover": {
191
+ "$type": "color",
192
+ "$value": "{Palette.Blue.400}"
193
+ },
194
+ "Chip_Background": {
195
+ "$type": "color",
196
+ "$value": "{Palette.Blue.600}"
197
+ },
198
+ "Chip_Background_Subtle": {
199
+ "$type": "color",
200
+ "$value": "{Palette.Blue.700}"
201
+ },
202
+ "Chip_Background_Hover": {
203
+ "$type": "color",
204
+ "$value": "{Palette.Blue.400}"
205
+ },
206
+ "Chip_Text": {
207
+ "$type": "color",
208
+ "$value": "{Palette.Blue.50}"
209
+ },
210
+ "Shadow_Active": {
211
+ "$type": "color",
212
+ "$value": "{Palette.Blue.350}"
213
+ }
214
+ },
215
+ "Primary_Black": {
216
+ "Action": {
217
+ "$type": "color",
218
+ "$value": "{Palette.Neutral.0}"
219
+ },
220
+ "Action_Hover": {
221
+ "$type": "color",
222
+ "$value": "{Palette.Neutral.150}"
223
+ },
224
+ "Action_Active": {
225
+ "$type": "color",
226
+ "$value": "{Palette.Neutral.50}"
227
+ },
228
+ "Background": {
229
+ "$type": "color",
230
+ "$value": "{Palette.Neutral.50}"
231
+ },
232
+ "Background_Hover": {
233
+ "$type": "color",
234
+ "$value": "{Palette.Neutral.75}"
235
+ },
236
+ "Chip_Text": {
237
+ "$type": "color",
238
+ "$value": "{Palette.Neutral.950}"
239
+ }
240
+ },
241
+ "Success": {
242
+ "Text": {
243
+ "$type": "color",
244
+ "$value": "{Palette.Green.100}"
245
+ },
246
+ "Icon": {
247
+ "$type": "color",
248
+ "$value": "{Palette.Green.200}"
249
+ },
250
+ "Background": {
251
+ "$type": "color",
252
+ "$value": "{Palette.Green.500}"
253
+ },
254
+ "Background_Hover": {
255
+ "$type": "color",
256
+ "$value": "{Palette.Green.400}"
257
+ },
258
+ "Background_Subtle": {
259
+ "$type": "color",
260
+ "$value": "{Palette.Green.700}"
261
+ },
262
+ "Background_Subtle_Hover": {
263
+ "$type": "color",
264
+ "$value": "{Palette.Green.500}"
265
+ },
266
+ "Background_Subtle_Active": {
267
+ "$type": "color",
268
+ "$value": "{Palette.Green.350}"
269
+ },
270
+ "Chip_Background": {
271
+ "$type": "color",
272
+ "$value": "{Palette.Green.500}"
273
+ },
274
+ "Chip_Background_Hover": {
275
+ "$type": "color",
276
+ "$value": "{Palette.Green.400}"
277
+ },
278
+ "Chip_Text": {
279
+ "$type": "color",
280
+ "$value": "{Palette.Green.50}"
281
+ },
282
+ "Border": {
283
+ "$type": "color",
284
+ "$value": "{Palette.Green.300}"
285
+ },
286
+ "Border_Subtle": {
287
+ "$type": "color",
288
+ "$value": "{Palette.Green.350}"
289
+ },
290
+ "Action": {
291
+ "$type": "color",
292
+ "$value": "{Palette.Green.200}"
293
+ },
294
+ "Action_Hover": {
295
+ "$type": "color",
296
+ "$value": "{Palette.Green.100}"
297
+ },
298
+ "Action_Active": {
299
+ "$type": "color",
300
+ "$value": "{Palette.Green.300}"
301
+ }
302
+ },
303
+ "Warning": {
304
+ "Text": {
305
+ "$type": "color",
306
+ "$value": "{Palette.Yellow.75}"
307
+ },
308
+ "Icon": {
309
+ "$type": "color",
310
+ "$value": "{Palette.Yellow.75}"
311
+ },
312
+ "Background": {
313
+ "$type": "color",
314
+ "$value": "{Palette.Yellow.500}"
315
+ },
316
+ "Background_Hover": {
317
+ "$type": "color",
318
+ "$value": "{Palette.Yellow.400}"
319
+ },
320
+ "Background_Subtle": {
321
+ "$type": "color",
322
+ "$value": "{Palette.Yellow.700}"
323
+ },
324
+ "Chip_Background": {
325
+ "$type": "color",
326
+ "$value": "{Palette.Yellow.500}"
327
+ },
328
+ "Chip_Background_Hover": {
329
+ "$type": "color",
330
+ "$value": "{Palette.Yellow.400}"
331
+ },
332
+ "Chip_Text": {
333
+ "$type": "color",
334
+ "$value": "{Palette.Yellow.50}"
335
+ },
336
+ "Border": {
337
+ "$type": "color",
338
+ "$value": "{Palette.Yellow.300}"
339
+ },
340
+ "Border_Subtle": {
341
+ "$type": "color",
342
+ "$value": "{Palette.Yellow.350}"
343
+ },
344
+ "Field_border": {
345
+ "$type": "color",
346
+ "$value": "{Palette.Yellow.200}"
347
+ }
348
+ },
349
+ "Danger": {
350
+ "Text": {
351
+ "$type": "color",
352
+ "$value": "{Palette.Red.100}"
353
+ },
354
+ "Icon": {
355
+ "$type": "color",
356
+ "$value": "{Palette.Red.200}"
357
+ },
358
+ "Background": {
359
+ "$type": "color",
360
+ "$value": "{Palette.Red.500}"
361
+ },
362
+ "Background_Hover": {
363
+ "$type": "color",
364
+ "$value": "{Palette.Red.400}"
365
+ },
366
+ "Background_Subtle": {
367
+ "$type": "color",
368
+ "$value": "{Palette.Red.700}"
369
+ },
370
+ "Background_Subtle_Hover": {
371
+ "$type": "color",
372
+ "$value": "{Palette.Red.500}"
373
+ },
374
+ "Background_Subtle_Active": {
375
+ "$type": "color",
376
+ "$value": "{Palette.Red.350}"
377
+ },
378
+ "Chip_Background": {
379
+ "$type": "color",
380
+ "$value": "{Palette.Red.500}"
381
+ },
382
+ "Chip_Background_Hover": {
383
+ "$type": "color",
384
+ "$value": "{Palette.Red.400}"
385
+ },
386
+ "Chip_Text": {
387
+ "$type": "color",
388
+ "$value": "{Palette.Red.50}"
389
+ },
390
+ "Border": {
391
+ "$type": "color",
392
+ "$value": "{Palette.Red.300}"
393
+ },
394
+ "Border_Subtle": {
395
+ "$type": "color",
396
+ "$value": "{Palette.Red.350}"
397
+ },
398
+ "Field_Border": {
399
+ "$type": "color",
400
+ "$value": "{Palette.Red.200}"
401
+ },
402
+ "Action": {
403
+ "$type": "color",
404
+ "$value": "{Palette.Red.200}"
405
+ },
406
+ "Action_Hover": {
407
+ "$type": "color",
408
+ "$value": "{Palette.Red.100}"
409
+ },
410
+ "Action_Active": {
411
+ "$type": "color",
412
+ "$value": "{Palette.Red.300}"
413
+ }
414
+ },
415
+ "Special": {
416
+ "Free_Plan_Background": {
417
+ "$type": "color",
418
+ "$value": "#9a4e2d"
419
+ },
420
+ "Starter_Plan_Background": {
421
+ "$type": "color",
422
+ "$value": "#b87939"
423
+ },
424
+ "Scale_Plan_Background": {
425
+ "$type": "color",
426
+ "$value": "#425484"
427
+ },
428
+ "Business_Plan_Background": {
429
+ "$type": "color",
430
+ "$value": "#408288"
431
+ },
432
+ "Enterprise_Plan_Background": {
433
+ "$type": "color",
434
+ "$value": "#48296f"
435
+ }
436
+ }
437
+ },
438
+ "Decorative": {
439
+ "Rose": {
440
+ "Light": {
441
+ "$type": "color",
442
+ "$value": "#e88bb3"
443
+ },
444
+ "Base": {
445
+ "$type": "color",
446
+ "$value": "#b8487b"
447
+ },
448
+ "Dark": {
449
+ "$type": "color",
450
+ "$value": "#6f234f"
451
+ },
452
+ "Text": {
453
+ "$type": "color",
454
+ "$value": "#ed8bb5"
455
+ }
456
+ },
457
+ "Buttercup": {
458
+ "Light": {
459
+ "$type": "color",
460
+ "$value": "#f9deaa"
461
+ },
462
+ "Base": {
463
+ "$type": "color",
464
+ "$value": "#e5b557"
465
+ },
466
+ "Dark": {
467
+ "$type": "color",
468
+ "$value": "#b87939"
469
+ },
470
+ "Text": {
471
+ "$type": "color",
472
+ "$value": "#ebbf6c"
473
+ }
474
+ },
475
+ "Paprika": {
476
+ "Light": {
477
+ "$type": "color",
478
+ "$value": "#e26c7d"
479
+ },
480
+ "Base": {
481
+ "$type": "color",
482
+ "$value": "#9e384b"
483
+ },
484
+ "Dark": {
485
+ "$type": "color",
486
+ "$value": "#511d27"
487
+ },
488
+ "Text": {
489
+ "$type": "color",
490
+ "$value": "#f67c8d"
491
+ }
492
+ },
493
+ "Teal": {
494
+ "Light": {
495
+ "$type": "color",
496
+ "$value": "#aef0f5"
497
+ },
498
+ "Base": {
499
+ "$type": "color",
500
+ "$value": "#58bcc4"
501
+ },
502
+ "Dark": {
503
+ "$type": "color",
504
+ "$value": "#408288"
505
+ },
506
+ "Text": {
507
+ "$type": "color",
508
+ "$value": "#62c1c8"
509
+ }
510
+ },
511
+ "Indigo": {
512
+ "Light": {
513
+ "$type": "color",
514
+ "$value": "#a8b7ed"
515
+ },
516
+ "Base": {
517
+ "$type": "color",
518
+ "$value": "#6d85ca"
519
+ },
520
+ "Dark": {
521
+ "$type": "color",
522
+ "$value": "#425484"
523
+ },
524
+ "Text": {
525
+ "$type": "color",
526
+ "$value": "#a2b2eb"
527
+ }
528
+ },
529
+ "Slate": {
530
+ "Light": {
531
+ "$type": "color",
532
+ "$value": "#c2c5dc"
533
+ },
534
+ "Base": {
535
+ "$type": "color",
536
+ "$value": "#8690bf"
537
+ },
538
+ "Dark": {
539
+ "$type": "color",
540
+ "$value": "#535c81"
541
+ },
542
+ "Text": {
543
+ "$type": "color",
544
+ "$value": "#afb2c9"
545
+ }
546
+ },
547
+ "Coral": {
548
+ "Light": {
549
+ "$type": "color",
550
+ "$value": "#f3ccb0"
551
+ },
552
+ "Base": {
553
+ "$type": "color",
554
+ "$value": "#f08848"
555
+ },
556
+ "Dark": {
557
+ "$type": "color",
558
+ "$value": "#9a4e2d"
559
+ },
560
+ "Text": {
561
+ "$type": "color",
562
+ "$value": "#f9b27b"
563
+ }
564
+ },
565
+ "Lavender": {
566
+ "Light": {
567
+ "$type": "color",
568
+ "$value": "#b482ed"
569
+ },
570
+ "Base": {
571
+ "$type": "color",
572
+ "$value": "#8148c9"
573
+ },
574
+ "Dark": {
575
+ "$type": "color",
576
+ "$value": "#48296f"
577
+ },
578
+ "Text": {
579
+ "$type": "color",
580
+ "$value": "#be8af9"
581
+ }
582
+ },
583
+ "Bamboo": {
584
+ "Light": {
585
+ "$type": "color",
586
+ "$value": "#7acaa9"
587
+ },
588
+ "Base": {
589
+ "$type": "color",
590
+ "$value": "#439274"
591
+ },
592
+ "Dark": {
593
+ "$type": "color",
594
+ "$value": "#305b4a"
595
+ },
596
+ "Text": {
597
+ "$type": "color",
598
+ "$value": "#65bc99"
599
+ }
600
+ }
601
+ },
602
+ "Palette": {
603
+ "Neutral": {
604
+ "0": {
605
+ "$type": "color",
606
+ "$value": "#ffffff"
607
+ },
608
+ "25": {
609
+ "$type": "color",
610
+ "$value": "#f8f9fc"
611
+ },
612
+ "50": {
613
+ "$type": "color",
614
+ "$value": "#f3f4fa"
615
+ },
616
+ "75": {
617
+ "$type": "color",
618
+ "$value": "#eef0f8"
619
+ },
620
+ "100": {
621
+ "$type": "color",
622
+ "$value": "#e1e3ed"
623
+ },
624
+ "150": {
625
+ "$type": "color",
626
+ "$value": "#d1d5e4"
627
+ },
628
+ "200": {
629
+ "$type": "color",
630
+ "$value": "#c1c6d9"
631
+ },
632
+ "250": {
633
+ "$type": "color",
634
+ "$value": "#b2b8cc"
635
+ },
636
+ "300": {
637
+ "$type": "color",
638
+ "$value": "#a5abc0"
639
+ },
640
+ "350": {
641
+ "$type": "color",
642
+ "$value": "#989eb3"
643
+ },
644
+ "400": {
645
+ "$type": "color",
646
+ "$value": "#8c93a8"
647
+ },
648
+ "450": {
649
+ "$type": "color",
650
+ "$value": "#7d8499"
651
+ },
652
+ "500": {
653
+ "$type": "color",
654
+ "$value": "#6e758a"
655
+ },
656
+ "550": {
657
+ "$type": "color",
658
+ "$value": "#646a7f"
659
+ },
660
+ "600": {
661
+ "$type": "color",
662
+ "$value": "#575d71"
663
+ },
664
+ "650": {
665
+ "$type": "color",
666
+ "$value": "#4d5265"
667
+ },
668
+ "700": {
669
+ "$type": "color",
670
+ "$value": "#414758"
671
+ },
672
+ "750": {
673
+ "$type": "color",
674
+ "$value": "#343847"
675
+ },
676
+ "775": {
677
+ "$type": "color",
678
+ "$value": "#2d313e"
679
+ },
680
+ "800": {
681
+ "$type": "color",
682
+ "$value": "#2a2d39"
683
+ },
684
+ "850": {
685
+ "$type": "color",
686
+ "$value": "#252832"
687
+ },
688
+ "875": {
689
+ "$type": "color",
690
+ "$value": "#1e2027"
691
+ },
692
+ "900": {
693
+ "$type": "color",
694
+ "$value": "#1a1b21"
695
+ },
696
+ "950": {
697
+ "$type": "color",
698
+ "$value": "#101114"
699
+ }
700
+ },
701
+ "Yellow": {
702
+ "25": {
703
+ "$type": "color",
704
+ "$value": "#fcdc73"
705
+ },
706
+ "50": {
707
+ "$type": "color",
708
+ "$value": "#ffd761"
709
+ },
710
+ "75": {
711
+ "$type": "color",
712
+ "$value": "#f9ce4b"
713
+ },
714
+ "100": {
715
+ "$type": "color",
716
+ "$value": "#f5bc38"
717
+ },
718
+ "200": {
719
+ "$type": "color",
720
+ "$value": "#cf9117"
721
+ },
722
+ "300": {
723
+ "$type": "color",
724
+ "$value": "#a56909"
725
+ },
726
+ "350": {
727
+ "$type": "color",
728
+ "$value": "#8a4f05"
729
+ },
730
+ "400": {
731
+ "$type": "color",
732
+ "$value": "#6d3806"
733
+ },
734
+ "500": {
735
+ "$type": "color",
736
+ "$value": "#5d2e0e"
737
+ },
738
+ "600": {
739
+ "$type": "color",
740
+ "$value": "#3f1b07"
741
+ },
742
+ "700": {
743
+ "$type": "color",
744
+ "$value": "#301806"
745
+ }
746
+ },
747
+ "Red": {
748
+ "25": {
749
+ "$type": "color",
750
+ "$value": "#f5a790"
751
+ },
752
+ "50": {
753
+ "$type": "color",
754
+ "$value": "#fe9e8a"
755
+ },
756
+ "75": {
757
+ "$type": "color",
758
+ "$value": "#ff8770"
759
+ },
760
+ "100": {
761
+ "$type": "color",
762
+ "$value": "#ff7157"
763
+ },
764
+ "200": {
765
+ "$type": "color",
766
+ "$value": "#ef6045"
767
+ },
768
+ "300": {
769
+ "$type": "color",
770
+ "$value": "#cf4436"
771
+ },
772
+ "350": {
773
+ "$type": "color",
774
+ "$value": "#aa3229"
775
+ },
776
+ "400": {
777
+ "$type": "color",
778
+ "$value": "#812420"
779
+ },
780
+ "500": {
781
+ "$type": "color",
782
+ "$value": "#672523"
783
+ },
784
+ "600": {
785
+ "$type": "color",
786
+ "$value": "#40191b"
787
+ },
788
+ "700": {
789
+ "$type": "color",
790
+ "$value": "#381719"
791
+ }
792
+ },
793
+ "Green": {
794
+ "25": {
795
+ "$type": "color",
796
+ "$value": "#74d584"
797
+ },
798
+ "50": {
799
+ "$type": "color",
800
+ "$value": "#6ccd7c"
801
+ },
802
+ "75": {
803
+ "$type": "color",
804
+ "$value": "#55c06a"
805
+ },
806
+ "100": {
807
+ "$type": "color",
808
+ "$value": "#3bb358"
809
+ },
810
+ "200": {
811
+ "$type": "color",
812
+ "$value": "#23a64a"
813
+ },
814
+ "300": {
815
+ "$type": "color",
816
+ "$value": "#068a35"
817
+ },
818
+ "350": {
819
+ "$type": "color",
820
+ "$value": "#006e29"
821
+ },
822
+ "400": {
823
+ "$type": "color",
824
+ "$value": "#00531e"
825
+ },
826
+ "500": {
827
+ "$type": "color",
828
+ "$value": "#14441f"
829
+ },
830
+ "600": {
831
+ "$type": "color",
832
+ "$value": "#0f2b14"
833
+ },
834
+ "700": {
835
+ "$type": "color",
836
+ "$value": "#09260f"
837
+ }
838
+ },
839
+ "Blue": {
840
+ "25": {
841
+ "$type": "color",
842
+ "$value": "#92c0ff"
843
+ },
844
+ "50": {
845
+ "$type": "color",
846
+ "$value": "#8ebcff"
847
+ },
848
+ "75": {
849
+ "$type": "color",
850
+ "$value": "#80a9ff"
851
+ },
852
+ "100": {
853
+ "$type": "color",
854
+ "$value": "#6f9dff"
855
+ },
856
+ "200": {
857
+ "$type": "color",
858
+ "$value": "#5990ff"
859
+ },
860
+ "300": {
861
+ "$type": "color",
862
+ "$value": "#3970d7"
863
+ },
864
+ "350": {
865
+ "$type": "color",
866
+ "$value": "#295cbb"
867
+ },
868
+ "400": {
869
+ "$type": "color",
870
+ "$value": "#194594"
871
+ },
872
+ "500": {
873
+ "$type": "color",
874
+ "$value": "#1a3a78"
875
+ },
876
+ "600": {
877
+ "$type": "color",
878
+ "$value": "#0d2550"
879
+ },
880
+ "700": {
881
+ "$type": "color",
882
+ "$value": "#151d34"
883
+ }
884
+ }
885
+ }
886
+ }