@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.850}"
7
+ },
8
+ "Text_Muted": {
9
+ "$type": "color",
10
+ "$value": "{Palette.Neutral.700}"
11
+ },
12
+ "Text_Subtle": {
13
+ "$type": "color",
14
+ "$value": "{Palette.Neutral.500}"
15
+ },
16
+ "Text_Disabled": {
17
+ "$type": "color",
18
+ "$value": "{Palette.Neutral.200}"
19
+ },
20
+ "Text_On_Primary": {
21
+ "$type": "color",
22
+ "$value": "{Palette.Neutral.0}"
23
+ },
24
+ "Icon_On_Primary": {
25
+ "$type": "color",
26
+ "$value": "{Palette.Neutral.0}"
27
+ },
28
+ "Background": {
29
+ "$type": "color",
30
+ "$value": "{Palette.Neutral.0}"
31
+ },
32
+ "Background_Muted": {
33
+ "$type": "color",
34
+ "$value": "{Palette.Neutral.25}"
35
+ },
36
+ "Background_Subtle": {
37
+ "$type": "color",
38
+ "$value": "{Palette.Neutral.50}"
39
+ },
40
+ "Background_White": {
41
+ "$type": "color",
42
+ "$value": "{Palette.Neutral.0}"
43
+ },
44
+ "Card_Background": {
45
+ "$type": "color",
46
+ "$value": "{Palette.Neutral.0}"
47
+ },
48
+ "Card_Background_Hover": {
49
+ "$type": "color",
50
+ "$value": "{Palette.Neutral.0}"
51
+ },
52
+ "Border": {
53
+ "$type": "color",
54
+ "$value": "{Palette.Neutral.150}"
55
+ },
56
+ "Separator_Subtle": {
57
+ "$type": "color",
58
+ "$value": "{Palette.Neutral.100}"
59
+ },
60
+ "Hover": {
61
+ "$type": "color",
62
+ "$value": "{Palette.Neutral.75}"
63
+ },
64
+ "Disabled": {
65
+ "$type": "color",
66
+ "$value": "{Palette.Neutral.50}"
67
+ },
68
+ "Overflow": {
69
+ "$type": "color",
70
+ "$value": "{Palette.Neutral.100}"
71
+ },
72
+ "Icon": {
73
+ "$type": "color",
74
+ "$value": "{Palette.Neutral.600}"
75
+ },
76
+ "Icon_Subtle": {
77
+ "$type": "color",
78
+ "$value": "{Palette.Neutral.400}"
79
+ },
80
+ "Icon_Disabled": {
81
+ "$type": "color",
82
+ "$value": "{Palette.Neutral.250}"
83
+ },
84
+ "Field_Border": {
85
+ "$type": "color",
86
+ "$value": "{Palette.Neutral.200}"
87
+ },
88
+ "Action_Secondary": {
89
+ "$type": "color",
90
+ "$value": "{Palette.Neutral.150}"
91
+ },
92
+ "Action_Secondary_Hover": {
93
+ "$type": "color",
94
+ "$value": "{Palette.Neutral.100}"
95
+ },
96
+ "Action_Secondary_Active": {
97
+ "$type": "color",
98
+ "$value": "{Palette.Neutral.150}"
99
+ },
100
+ "Chip_Background": {
101
+ "$type": "color",
102
+ "$value": "{Palette.Neutral.100}"
103
+ },
104
+ "Chip_Background_Hover": {
105
+ "$type": "color",
106
+ "$value": "{Palette.Neutral.150}"
107
+ },
108
+ "Chip_Background_Active": {
109
+ "$type": "color",
110
+ "$value": "{Palette.Neutral.200}"
111
+ },
112
+ "Chip_Background_Disabled": {
113
+ "$type": "color",
114
+ "$value": "{Palette.Neutral.150}"
115
+ },
116
+ "Large_Tooltip_Background": {
117
+ "$type": "color",
118
+ "$value": "{Palette.Neutral.0}"
119
+ },
120
+ "Large_Tooltip_Border": {
121
+ "$type": "color",
122
+ "$value": "{Palette.Neutral.100}"
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.900}"
131
+ },
132
+ "Small_Tooltip_Border": {
133
+ "$type": "color",
134
+ "$value": "{Palette.Neutral.850}"
135
+ },
136
+ "Overlay": {
137
+ "$type": "color",
138
+ "$value": "#191b22"
139
+ },
140
+ "Field_Background": {
141
+ "$type": "color",
142
+ "$value": "{Palette.Neutral.25}"
143
+ },
144
+ "Text_Placeholder": {
145
+ "$type": "color",
146
+ "$value": "{Palette.Neutral.350}"
147
+ }
148
+ },
149
+ "Primary": {
150
+ "Text": {
151
+ "$type": "color",
152
+ "$value": "{Palette.Blue.500}"
153
+ },
154
+ "Text_Interactive": {
155
+ "$type": "color",
156
+ "$value": "{Palette.Blue.500}"
157
+ },
158
+ "Icon": {
159
+ "$type": "color",
160
+ "$value": "{Palette.Blue.500}"
161
+ },
162
+ "Action": {
163
+ "$type": "color",
164
+ "$value": "{Palette.Blue.500}"
165
+ },
166
+ "Action_Hover": {
167
+ "$type": "color",
168
+ "$value": "{Palette.Blue.400}"
169
+ },
170
+ "Action_Active": {
171
+ "$type": "color",
172
+ "$value": "{Palette.Blue.600}"
173
+ },
174
+ "Field_Border_Active": {
175
+ "$type": "color",
176
+ "$value": "{Palette.Blue.500}"
177
+ },
178
+ "Border_Subtle": {
179
+ "$type": "color",
180
+ "$value": "{Palette.Blue.200}"
181
+ },
182
+ "Background": {
183
+ "$type": "color",
184
+ "$value": "{Palette.Blue.50}"
185
+ },
186
+ "Background_Subtle": {
187
+ "$type": "color",
188
+ "$value": "{Palette.Blue.25}"
189
+ },
190
+ "Background_Hover": {
191
+ "$type": "color",
192
+ "$value": "{Palette.Blue.100}"
193
+ },
194
+ "Chip_Background": {
195
+ "$type": "color",
196
+ "$value": "{Palette.Blue.50}"
197
+ },
198
+ "Chip_Background_Subtle": {
199
+ "$type": "color",
200
+ "$value": "{Palette.Blue.25}"
201
+ },
202
+ "Chip_Background_Hover": {
203
+ "$type": "color",
204
+ "$value": "{Palette.Blue.100}"
205
+ },
206
+ "Chip_Text": {
207
+ "$type": "color",
208
+ "$value": "{Palette.Blue.600}"
209
+ },
210
+ "Shadow_Active": {
211
+ "$type": "color",
212
+ "$value": "{Palette.Blue.200}"
213
+ }
214
+ },
215
+ "Primary_Black": {
216
+ "Action": {
217
+ "$type": "color",
218
+ "$value": "{Palette.Neutral.800}"
219
+ },
220
+ "Action_Hover": {
221
+ "$type": "color",
222
+ "$value": "{Palette.Neutral.775}"
223
+ },
224
+ "Action_Active": {
225
+ "$type": "color",
226
+ "$value": "{Palette.Neutral.950}"
227
+ },
228
+ "Background": {
229
+ "$type": "color",
230
+ "$value": "{Palette.Neutral.875}"
231
+ },
232
+ "Background_Hover": {
233
+ "$type": "color",
234
+ "$value": "{Palette.Neutral.700}"
235
+ },
236
+ "Chip_Text": {
237
+ "$type": "color",
238
+ "$value": "{Palette.Neutral.25}"
239
+ }
240
+ },
241
+ "Success": {
242
+ "Text": {
243
+ "$type": "color",
244
+ "$value": "{Palette.Green.500}"
245
+ },
246
+ "Icon": {
247
+ "$type": "color",
248
+ "$value": "{Palette.Green.500}"
249
+ },
250
+ "Background": {
251
+ "$type": "color",
252
+ "$value": "{Palette.Green.50}"
253
+ },
254
+ "Background_Hover": {
255
+ "$type": "color",
256
+ "$value": "{Palette.Green.100}"
257
+ },
258
+ "Background_Subtle": {
259
+ "$type": "color",
260
+ "$value": "{Palette.Green.25}"
261
+ },
262
+ "Background_Subtle_Hover": {
263
+ "$type": "color",
264
+ "$value": "{Palette.Green.100}"
265
+ },
266
+ "Background_Subtle_Active": {
267
+ "$type": "color",
268
+ "$value": "{Palette.Green.200}"
269
+ },
270
+ "Chip_Background": {
271
+ "$type": "color",
272
+ "$value": "{Palette.Green.50}"
273
+ },
274
+ "Chip_Background_Hover": {
275
+ "$type": "color",
276
+ "$value": "{Palette.Green.100}"
277
+ },
278
+ "Chip_Text": {
279
+ "$type": "color",
280
+ "$value": "{Palette.Green.600}"
281
+ },
282
+ "Border": {
283
+ "$type": "color",
284
+ "$value": "{Palette.Green.400}"
285
+ },
286
+ "Border_Subtle": {
287
+ "$type": "color",
288
+ "$value": "{Palette.Green.200}"
289
+ },
290
+ "Action": {
291
+ "$type": "color",
292
+ "$value": "{Palette.Green.500}"
293
+ },
294
+ "Action_Hover": {
295
+ "$type": "color",
296
+ "$value": "{Palette.Green.400}"
297
+ },
298
+ "Action_Active": {
299
+ "$type": "color",
300
+ "$value": "{Palette.Green.600}"
301
+ }
302
+ },
303
+ "Warning": {
304
+ "Text": {
305
+ "$type": "color",
306
+ "$value": "{Palette.Yellow.500}"
307
+ },
308
+ "Icon": {
309
+ "$type": "color",
310
+ "$value": "{Palette.Yellow.200}"
311
+ },
312
+ "Background": {
313
+ "$type": "color",
314
+ "$value": "{Palette.Yellow.50}"
315
+ },
316
+ "Background_Hover": {
317
+ "$type": "color",
318
+ "$value": "{Palette.Yellow.100}"
319
+ },
320
+ "Background_Subtle": {
321
+ "$type": "color",
322
+ "$value": "{Palette.Yellow.25}"
323
+ },
324
+ "Chip_Background": {
325
+ "$type": "color",
326
+ "$value": "{Palette.Yellow.50}"
327
+ },
328
+ "Chip_Background_Hover": {
329
+ "$type": "color",
330
+ "$value": "{Palette.Yellow.100}"
331
+ },
332
+ "Chip_Text": {
333
+ "$type": "color",
334
+ "$value": "{Palette.Yellow.600}"
335
+ },
336
+ "Border": {
337
+ "$type": "color",
338
+ "$value": "{Palette.Yellow.400}"
339
+ },
340
+ "Border_Subtle": {
341
+ "$type": "color",
342
+ "$value": "{Palette.Yellow.200}"
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.500}"
353
+ },
354
+ "Icon": {
355
+ "$type": "color",
356
+ "$value": "{Palette.Red.500}"
357
+ },
358
+ "Background": {
359
+ "$type": "color",
360
+ "$value": "{Palette.Red.50}"
361
+ },
362
+ "Background_Hover": {
363
+ "$type": "color",
364
+ "$value": "{Palette.Red.100}"
365
+ },
366
+ "Background_Subtle": {
367
+ "$type": "color",
368
+ "$value": "{Palette.Red.25}"
369
+ },
370
+ "Background_Subtle_Hover": {
371
+ "$type": "color",
372
+ "$value": "{Palette.Red.100}"
373
+ },
374
+ "Background_Subtle_Active": {
375
+ "$type": "color",
376
+ "$value": "{Palette.Red.200}"
377
+ },
378
+ "Chip_Background": {
379
+ "$type": "color",
380
+ "$value": "{Palette.Red.50}"
381
+ },
382
+ "Chip_Background_Hover": {
383
+ "$type": "color",
384
+ "$value": "{Palette.Red.100}"
385
+ },
386
+ "Chip_Text": {
387
+ "$type": "color",
388
+ "$value": "{Palette.Red.600}"
389
+ },
390
+ "Border": {
391
+ "$type": "color",
392
+ "$value": "{Palette.Red.400}"
393
+ },
394
+ "Border_Subtle": {
395
+ "$type": "color",
396
+ "$value": "{Palette.Red.200}"
397
+ },
398
+ "Field_Border": {
399
+ "$type": "color",
400
+ "$value": "{Palette.Red.400}"
401
+ },
402
+ "Action": {
403
+ "$type": "color",
404
+ "$value": "{Palette.Red.500}"
405
+ },
406
+ "Action_Hover": {
407
+ "$type": "color",
408
+ "$value": "{Palette.Red.400}"
409
+ },
410
+ "Action_Active": {
411
+ "$type": "color",
412
+ "$value": "{Palette.Red.600}"
413
+ }
414
+ },
415
+ "Special": {
416
+ "Free_Plan_Background": {
417
+ "$type": "color",
418
+ "$value": "#ffc89f"
419
+ },
420
+ "Starter_Plan_Background": {
421
+ "$type": "color",
422
+ "$value": "#ffdd96"
423
+ },
424
+ "Scale_Plan_Background": {
425
+ "$type": "color",
426
+ "$value": "#a1b7ff"
427
+ },
428
+ "Business_Plan_Background": {
429
+ "$type": "color",
430
+ "$value": "#a7f2ed"
431
+ },
432
+ "Enterprise_Plan_Background": {
433
+ "$type": "color",
434
+ "$value": "#bf97ed"
435
+ }
436
+ }
437
+ },
438
+ "Decorative": {
439
+ "Rose": {
440
+ "Light": {
441
+ "$type": "color",
442
+ "$value": "#f483b5"
443
+ },
444
+ "Base": {
445
+ "$type": "color",
446
+ "$value": "#c6387d"
447
+ },
448
+ "Dark": {
449
+ "$type": "color",
450
+ "$value": "#781552"
451
+ },
452
+ "Text": {
453
+ "$type": "color",
454
+ "$value": "#b6006b"
455
+ }
456
+ },
457
+ "Buttercup": {
458
+ "Light": {
459
+ "$type": "color",
460
+ "$value": "#ffdd96"
461
+ },
462
+ "Base": {
463
+ "$type": "color",
464
+ "$value": "#f0b21b"
465
+ },
466
+ "Dark": {
467
+ "$type": "color",
468
+ "$value": "#c37319"
469
+ },
470
+ "Text": {
471
+ "$type": "color",
472
+ "$value": "#a65d00"
473
+ }
474
+ },
475
+ "Paprika": {
476
+ "Light": {
477
+ "$type": "color",
478
+ "$value": "#e44467"
479
+ },
480
+ "Base": {
481
+ "$type": "color",
482
+ "$value": "#9b0238"
483
+ },
484
+ "Dark": {
485
+ "$type": "color",
486
+ "$value": "#4a0018"
487
+ },
488
+ "Text": {
489
+ "$type": "color",
490
+ "$value": "#ba0044"
491
+ }
492
+ },
493
+ "Teal": {
494
+ "Light": {
495
+ "$type": "color",
496
+ "$value": "#a7f2ed"
497
+ },
498
+ "Base": {
499
+ "$type": "color",
500
+ "$value": "#30c0bb"
501
+ },
502
+ "Dark": {
503
+ "$type": "color",
504
+ "$value": "#297774"
505
+ },
506
+ "Text": {
507
+ "$type": "color",
508
+ "$value": "#018181"
509
+ }
510
+ },
511
+ "Indigo": {
512
+ "Light": {
513
+ "$type": "color",
514
+ "$value": "#a1b7ff"
515
+ },
516
+ "Base": {
517
+ "$type": "color",
518
+ "$value": "#5d85e1"
519
+ },
520
+ "Dark": {
521
+ "$type": "color",
522
+ "$value": "#365494"
523
+ },
524
+ "Text": {
525
+ "$type": "color",
526
+ "$value": "#2563c1"
527
+ }
528
+ },
529
+ "Slate": {
530
+ "Light": {
531
+ "$type": "color",
532
+ "$value": "#c1c5e1"
533
+ },
534
+ "Base": {
535
+ "$type": "color",
536
+ "$value": "#8490c4"
537
+ },
538
+ "Dark": {
539
+ "$type": "color",
540
+ "$value": "#525c85"
541
+ },
542
+ "Text": {
543
+ "$type": "color",
544
+ "$value": "#566087"
545
+ }
546
+ },
547
+ "Coral": {
548
+ "Light": {
549
+ "$type": "color",
550
+ "$value": "#ffc89f"
551
+ },
552
+ "Base": {
553
+ "$type": "color",
554
+ "$value": "#fa8136"
555
+ },
556
+ "Dark": {
557
+ "$type": "color",
558
+ "$value": "#bb4511"
559
+ },
560
+ "Text": {
561
+ "$type": "color",
562
+ "$value": "#c74000"
563
+ }
564
+ },
565
+ "Lavender": {
566
+ "Light": {
567
+ "$type": "color",
568
+ "$value": "#bf97ed"
569
+ },
570
+ "Base": {
571
+ "$type": "color",
572
+ "$value": "#6a14de"
573
+ },
574
+ "Dark": {
575
+ "$type": "color",
576
+ "$value": "#330276"
577
+ },
578
+ "Text": {
579
+ "$type": "color",
580
+ "$value": "#6e00f4"
581
+ }
582
+ },
583
+ "Bamboo": {
584
+ "Light": {
585
+ "$type": "color",
586
+ "$value": "#64cda5"
587
+ },
588
+ "Base": {
589
+ "$type": "color",
590
+ "$value": "#12966f"
591
+ },
592
+ "Dark": {
593
+ "$type": "color",
594
+ "$value": "#195d46"
595
+ },
596
+ "Text": {
597
+ "$type": "color",
598
+ "$value": "#007455"
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": "#e0e3f2"
623
+ },
624
+ "150": {
625
+ "$type": "color",
626
+ "$value": "#d0d5e9"
627
+ },
628
+ "200": {
629
+ "$type": "color",
630
+ "$value": "#c0c6de"
631
+ },
632
+ "250": {
633
+ "$type": "color",
634
+ "$value": "#b0b8d1"
635
+ },
636
+ "300": {
637
+ "$type": "color",
638
+ "$value": "#a3abc5"
639
+ },
640
+ "350": {
641
+ "$type": "color",
642
+ "$value": "#969eb8"
643
+ },
644
+ "400": {
645
+ "$type": "color",
646
+ "$value": "#8a93ae"
647
+ },
648
+ "450": {
649
+ "$type": "color",
650
+ "$value": "#7b84a0"
651
+ },
652
+ "500": {
653
+ "$type": "color",
654
+ "$value": "#6c7590"
655
+ },
656
+ "550": {
657
+ "$type": "color",
658
+ "$value": "#626a85"
659
+ },
660
+ "600": {
661
+ "$type": "color",
662
+ "$value": "#555d76"
663
+ },
664
+ "650": {
665
+ "$type": "color",
666
+ "$value": "#4b526b"
667
+ },
668
+ "700": {
669
+ "$type": "color",
670
+ "$value": "#3f475d"
671
+ },
672
+ "750": {
673
+ "$type": "color",
674
+ "$value": "#31384d"
675
+ },
676
+ "775": {
677
+ "$type": "color",
678
+ "$value": "#2b3143"
679
+ },
680
+ "800": {
681
+ "$type": "color",
682
+ "$value": "#272d3e"
683
+ },
684
+ "850": {
685
+ "$type": "color",
686
+ "$value": "#242836"
687
+ },
688
+ "875": {
689
+ "$type": "color",
690
+ "$value": "#1d202a"
691
+ },
692
+ "900": {
693
+ "$type": "color",
694
+ "$value": "#191b22"
695
+ },
696
+ "950": {
697
+ "$type": "color",
698
+ "$value": "#0a0b0f"
699
+ }
700
+ },
701
+ "Yellow": {
702
+ "25": {
703
+ "$type": "color",
704
+ "$value": "#f9f6ea"
705
+ },
706
+ "50": {
707
+ "$type": "color",
708
+ "$value": "#f9f0db"
709
+ },
710
+ "75": {
711
+ "$type": "color",
712
+ "$value": "#f7e8c4"
713
+ },
714
+ "100": {
715
+ "$type": "color",
716
+ "$value": "#f7dfb1"
717
+ },
718
+ "200": {
719
+ "$type": "color",
720
+ "$value": "#f5b315"
721
+ },
722
+ "300": {
723
+ "$type": "color",
724
+ "$value": "#e39c04"
725
+ },
726
+ "350": {
727
+ "$type": "color",
728
+ "$value": "#d58e00"
729
+ },
730
+ "400": {
731
+ "$type": "color",
732
+ "$value": "#ca8200"
733
+ },
734
+ "500": {
735
+ "$type": "color",
736
+ "$value": "#a96600"
737
+ },
738
+ "600": {
739
+ "$type": "color",
740
+ "$value": "#8c4e02"
741
+ },
742
+ "700": {
743
+ "$type": "color",
744
+ "$value": "#864906"
745
+ }
746
+ },
747
+ "Red": {
748
+ "25": {
749
+ "$type": "color",
750
+ "$value": "#fcf2ef"
751
+ },
752
+ "50": {
753
+ "$type": "color",
754
+ "$value": "#fff0ec"
755
+ },
756
+ "75": {
757
+ "$type": "color",
758
+ "$value": "#ffe3dc"
759
+ },
760
+ "100": {
761
+ "$type": "color",
762
+ "$value": "#fedad1"
763
+ },
764
+ "200": {
765
+ "$type": "color",
766
+ "$value": "#ffb39f"
767
+ },
768
+ "300": {
769
+ "$type": "color",
770
+ "$value": "#ff886e"
771
+ },
772
+ "350": {
773
+ "$type": "color",
774
+ "$value": "#fc7156"
775
+ },
776
+ "400": {
777
+ "$type": "color",
778
+ "$value": "#fa4d37"
779
+ },
780
+ "500": {
781
+ "$type": "color",
782
+ "$value": "#e3231d"
783
+ },
784
+ "600": {
785
+ "$type": "color",
786
+ "$value": "#bb0401"
787
+ },
788
+ "700": {
789
+ "$type": "color",
790
+ "$value": "#af0600"
791
+ }
792
+ },
793
+ "Green": {
794
+ "25": {
795
+ "$type": "color",
796
+ "$value": "#e8f9ef"
797
+ },
798
+ "50": {
799
+ "$type": "color",
800
+ "$value": "#e4f5e5"
801
+ },
802
+ "75": {
803
+ "$type": "color",
804
+ "$value": "#daefdc"
805
+ },
806
+ "100": {
807
+ "$type": "color",
808
+ "$value": "#cfe9d1"
809
+ },
810
+ "200": {
811
+ "$type": "color",
812
+ "$value": "#80da8d"
813
+ },
814
+ "300": {
815
+ "$type": "color",
816
+ "$value": "#46c263"
817
+ },
818
+ "350": {
819
+ "$type": "color",
820
+ "$value": "#22b551"
821
+ },
822
+ "400": {
823
+ "$type": "color",
824
+ "$value": "#00ab46"
825
+ },
826
+ "500": {
827
+ "$type": "color",
828
+ "$value": "#008a27"
829
+ },
830
+ "600": {
831
+ "$type": "color",
832
+ "$value": "#086e08"
833
+ },
834
+ "700": {
835
+ "$type": "color",
836
+ "$value": "#176b08"
837
+ }
838
+ },
839
+ "Blue": {
840
+ "25": {
841
+ "$type": "color",
842
+ "$value": "#f0f8ff"
843
+ },
844
+ "50": {
845
+ "$type": "color",
846
+ "$value": "#ecf1ff"
847
+ },
848
+ "75": {
849
+ "$type": "color",
850
+ "$value": "#e1eaff"
851
+ },
852
+ "100": {
853
+ "$type": "color",
854
+ "$value": "#d8e2ff"
855
+ },
856
+ "200": {
857
+ "$type": "color",
858
+ "$value": "#b2c6ff"
859
+ },
860
+ "300": {
861
+ "$type": "color",
862
+ "$value": "#88abfe"
863
+ },
864
+ "350": {
865
+ "$type": "color",
866
+ "$value": "#709efd"
867
+ },
868
+ "400": {
869
+ "$type": "color",
870
+ "$value": "#5290f9"
871
+ },
872
+ "500": {
873
+ "$type": "color",
874
+ "$value": "#1672eb"
875
+ },
876
+ "600": {
877
+ "$type": "color",
878
+ "$value": "#1a57da"
879
+ },
880
+ "700": {
881
+ "$type": "color",
882
+ "$value": "#224ed5"
883
+ }
884
+ }
885
+ }
886
+ }