@lark-apaas/miaoda-inspector 0.1.0-alpha.1

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 (74) hide show
  1. package/LICENSE +13 -0
  2. package/README.md +1 -0
  3. package/dist/es/Inspector/Inspector.js +179 -0
  4. package/dist/es/Inspector/Overlay.js +400 -0
  5. package/dist/es/Inspector/hooks/index.js +3 -0
  6. package/dist/es/Inspector/hooks/use-effect-event.js +15 -0
  7. package/dist/es/Inspector/hooks/use-layout-effect.js +3 -0
  8. package/dist/es/Inspector/hooks/use-mouse.js +22 -0
  9. package/dist/es/Inspector/index.js +1 -0
  10. package/dist/es/Inspector/utils/fiber.js +61 -0
  11. package/dist/es/Inspector/utils/highlight.js +74 -0
  12. package/dist/es/Inspector/utils/index.js +3 -0
  13. package/dist/es/Inspector/utils/inspect.js +119 -0
  14. package/dist/es/Inspector/utils/overlay.js +20 -0
  15. package/dist/es/MiaodaInspector/MiaodaInspector.css +46 -0
  16. package/dist/es/MiaodaInspector/MiaodaInspector.js +397 -0
  17. package/dist/es/MiaodaInspector/index.js +1 -0
  18. package/dist/es/config/ui-config.js +787 -0
  19. package/dist/es/index.js +2 -0
  20. package/dist/es/types/iframe-events.js +1 -0
  21. package/dist/es/types/index.js +1 -0
  22. package/dist/es/utils/config-mapper.js +163 -0
  23. package/dist/es/utils/css.js +5 -0
  24. package/dist/es/utils/index.js +3 -0
  25. package/dist/es/utils/origin.js +19 -0
  26. package/dist/es/utils/style-calculator.js +158 -0
  27. package/dist/lib/Inspector/Inspector.js +203 -0
  28. package/dist/lib/Inspector/Overlay.js +419 -0
  29. package/dist/lib/Inspector/hooks/index.js +20 -0
  30. package/dist/lib/Inspector/hooks/use-effect-event.js +25 -0
  31. package/dist/lib/Inspector/hooks/use-layout-effect.js +13 -0
  32. package/dist/lib/Inspector/hooks/use-mouse.js +32 -0
  33. package/dist/lib/Inspector/index.js +11 -0
  34. package/dist/lib/Inspector/utils/fiber.js +95 -0
  35. package/dist/lib/Inspector/utils/highlight.js +84 -0
  36. package/dist/lib/Inspector/utils/index.js +20 -0
  37. package/dist/lib/Inspector/utils/inspect.js +153 -0
  38. package/dist/lib/Inspector/utils/overlay.js +39 -0
  39. package/dist/lib/MiaodaInspector/MiaodaInspector.css +46 -0
  40. package/dist/lib/MiaodaInspector/MiaodaInspector.js +447 -0
  41. package/dist/lib/MiaodaInspector/index.js +11 -0
  42. package/dist/lib/config/ui-config.js +797 -0
  43. package/dist/lib/index.js +21 -0
  44. package/dist/lib/types/iframe-events.js +4 -0
  45. package/dist/lib/types/index.js +47 -0
  46. package/dist/lib/utils/config-mapper.js +182 -0
  47. package/dist/lib/utils/css.js +20 -0
  48. package/dist/lib/utils/index.js +61 -0
  49. package/dist/lib/utils/origin.js +44 -0
  50. package/dist/lib/utils/style-calculator.js +207 -0
  51. package/dist/types/Inspector/Inspector.d.ts +102 -0
  52. package/dist/types/Inspector/Overlay.d.ts +71 -0
  53. package/dist/types/Inspector/hooks/index.d.ts +3 -0
  54. package/dist/types/Inspector/hooks/use-effect-event.d.ts +9 -0
  55. package/dist/types/Inspector/hooks/use-layout-effect.d.ts +2 -0
  56. package/dist/types/Inspector/hooks/use-mouse.d.ts +9 -0
  57. package/dist/types/Inspector/index.d.ts +1 -0
  58. package/dist/types/Inspector/utils/fiber.d.ts +34 -0
  59. package/dist/types/Inspector/utils/highlight.d.ts +8 -0
  60. package/dist/types/Inspector/utils/index.d.ts +3 -0
  61. package/dist/types/Inspector/utils/inspect.d.ts +110 -0
  62. package/dist/types/Inspector/utils/overlay.d.ts +30 -0
  63. package/dist/types/MiaodaInspector/MiaodaInspector.d.ts +47 -0
  64. package/dist/types/MiaodaInspector/index.d.ts +1 -0
  65. package/dist/types/config/ui-config.d.ts +49 -0
  66. package/dist/types/index.d.ts +4 -0
  67. package/dist/types/types/iframe-events.d.ts +155 -0
  68. package/dist/types/types/index.d.ts +1 -0
  69. package/dist/types/utils/config-mapper.d.ts +12 -0
  70. package/dist/types/utils/css.d.ts +2 -0
  71. package/dist/types/utils/index.d.ts +3 -0
  72. package/dist/types/utils/origin.d.ts +9 -0
  73. package/dist/types/utils/style-calculator.d.ts +19 -0
  74. package/package.json +48 -0
@@ -0,0 +1,797 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "defaultUIConfig", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return defaultUIConfig;
9
+ }
10
+ });
11
+ const defaultUIConfig = {
12
+ version: "1.0.0",
13
+ common: {
14
+ fontSize: {
15
+ type: "select",
16
+ options: [
17
+ {
18
+ value: "text-xs",
19
+ label: "xs(12px)",
20
+ rawValue: "12"
21
+ },
22
+ {
23
+ value: "text-sm",
24
+ label: "sm(14px)",
25
+ rawValue: "14"
26
+ },
27
+ {
28
+ value: "text-base",
29
+ label: "base(16px)",
30
+ rawValue: "16"
31
+ },
32
+ {
33
+ value: "text-lg",
34
+ label: "lg(18px)",
35
+ rawValue: "18"
36
+ },
37
+ {
38
+ value: "text-xl",
39
+ label: "xl(20px)",
40
+ rawValue: "20"
41
+ },
42
+ {
43
+ value: "text-2xl",
44
+ label: "2xl(24px)",
45
+ rawValue: "24"
46
+ },
47
+ {
48
+ value: "text-3xl",
49
+ label: "3xl(30px)",
50
+ rawValue: "30"
51
+ },
52
+ {
53
+ value: "text-4xl",
54
+ label: "4xl(36px)",
55
+ rawValue: "36"
56
+ },
57
+ {
58
+ value: "text-5xl",
59
+ label: "5xl(48px)",
60
+ rawValue: "48"
61
+ },
62
+ {
63
+ value: "text-6xl",
64
+ label: "6xl(60px)",
65
+ rawValue: "60"
66
+ },
67
+ {
68
+ value: "text-7xl",
69
+ label: "7xl(72px)",
70
+ rawValue: "72"
71
+ },
72
+ {
73
+ value: "text-8xl",
74
+ label: "8xl(96px)",
75
+ rawValue: "96"
76
+ },
77
+ {
78
+ value: "text-9xl",
79
+ label: "9xl(128px)",
80
+ rawValue: "128"
81
+ }
82
+ ]
83
+ },
84
+ fontWeight: {
85
+ type: "select",
86
+ options: [
87
+ {
88
+ value: "font-thin",
89
+ label: "极细(Thin)",
90
+ rawValue: "100"
91
+ },
92
+ {
93
+ value: "font-extralight",
94
+ label: "极轻(Extra Light)",
95
+ rawValue: "200"
96
+ },
97
+ {
98
+ value: "font-light",
99
+ label: "轻(Light)",
100
+ rawValue: "300"
101
+ },
102
+ {
103
+ value: "font-normal",
104
+ label: "常规(Normal)",
105
+ rawValue: "400"
106
+ },
107
+ {
108
+ value: "font-medium",
109
+ label: "中粗(Medium)",
110
+ rawValue: "500"
111
+ },
112
+ {
113
+ value: "font-semibold",
114
+ label: "半粗(Semi Bold)",
115
+ rawValue: "600"
116
+ },
117
+ {
118
+ value: "font-bold",
119
+ label: "粗(Bold)",
120
+ rawValue: "700"
121
+ },
122
+ {
123
+ value: "font-extrabold",
124
+ label: "极粗(Extra Bold)",
125
+ rawValue: "800"
126
+ },
127
+ {
128
+ value: "font-black",
129
+ label: "黑体(Black)",
130
+ rawValue: "900"
131
+ }
132
+ ]
133
+ },
134
+ borderRadius: {
135
+ type: "select",
136
+ options: [
137
+ {
138
+ value: "rounded-none",
139
+ label: "none(0px)",
140
+ rawValue: "0"
141
+ },
142
+ {
143
+ value: "rounded-sm",
144
+ label: "sm (2px)",
145
+ rawValue: "2"
146
+ },
147
+ {
148
+ value: "rounded",
149
+ label: "s (4px)",
150
+ rawValue: "4"
151
+ },
152
+ {
153
+ value: "rounded-md",
154
+ label: "m (6px)",
155
+ rawValue: "6"
156
+ },
157
+ {
158
+ value: "rounded-lg",
159
+ label: "l (8px)",
160
+ rawValue: "8"
161
+ },
162
+ {
163
+ value: "rounded-xl",
164
+ label: "xl (12px)",
165
+ rawValue: "12"
166
+ },
167
+ // TODO:为啥都没了?
168
+ // { value: 'rounded-2xl', label: translate('2xl (16px)') },
169
+ // { value: 'rounded-3xl', label: translate('3xl (24px)') },
170
+ {
171
+ value: "rounded-full",
172
+ label: "Full",
173
+ rawValue: "9999"
174
+ }
175
+ ]
176
+ },
177
+ borderWidth: {
178
+ type: "select",
179
+ options: [
180
+ {
181
+ value: "border-0",
182
+ label: "0px",
183
+ rawValue: "0"
184
+ },
185
+ {
186
+ value: "border",
187
+ label: "1px",
188
+ rawValue: "1"
189
+ },
190
+ {
191
+ value: "border-2",
192
+ label: "2px",
193
+ rawValue: "2"
194
+ },
195
+ {
196
+ value: "border-4",
197
+ label: "4px",
198
+ rawValue: "4"
199
+ },
200
+ {
201
+ value: "border-8",
202
+ label: "8px",
203
+ rawValue: "8"
204
+ }
205
+ ]
206
+ },
207
+ textAlign: {
208
+ type: "select",
209
+ options: [
210
+ {
211
+ value: "text-left",
212
+ label: "Left",
213
+ rawValue: "left"
214
+ },
215
+ {
216
+ value: "text-center",
217
+ label: "Center",
218
+ rawValue: "center"
219
+ },
220
+ {
221
+ value: "text-right",
222
+ label: "Right",
223
+ rawValue: "right"
224
+ },
225
+ {
226
+ value: "text-justify",
227
+ label: "Justify",
228
+ rawValue: "justify"
229
+ }
230
+ ]
231
+ },
232
+ padding: {
233
+ type: "spacing",
234
+ options: [
235
+ {
236
+ label: "0",
237
+ value: "0",
238
+ rawValue: "0"
239
+ },
240
+ {
241
+ label: "4",
242
+ value: "4",
243
+ rawValue: "4"
244
+ },
245
+ {
246
+ label: "8",
247
+ value: "8",
248
+ rawValue: "8"
249
+ },
250
+ {
251
+ label: "12",
252
+ value: "12",
253
+ rawValue: "12"
254
+ },
255
+ {
256
+ label: "16",
257
+ value: "16",
258
+ rawValue: "16"
259
+ },
260
+ {
261
+ label: "20",
262
+ value: "20",
263
+ rawValue: "20"
264
+ },
265
+ {
266
+ label: "24",
267
+ value: "24",
268
+ rawValue: "24"
269
+ },
270
+ {
271
+ label: "32",
272
+ value: "32",
273
+ rawValue: "32"
274
+ },
275
+ {
276
+ label: "36",
277
+ value: "36",
278
+ rawValue: "36"
279
+ },
280
+ {
281
+ label: "40",
282
+ value: "40",
283
+ rawValue: "40"
284
+ }
285
+ ]
286
+ },
287
+ margin: {
288
+ type: "spacing",
289
+ options: [
290
+ {
291
+ label: "0",
292
+ value: "0",
293
+ rawValue: "0"
294
+ },
295
+ {
296
+ label: "4",
297
+ value: "4",
298
+ rawValue: "4"
299
+ },
300
+ {
301
+ label: "8",
302
+ value: "8",
303
+ rawValue: "8"
304
+ },
305
+ {
306
+ label: "12",
307
+ value: "12",
308
+ rawValue: "12"
309
+ },
310
+ {
311
+ label: "16",
312
+ value: "16",
313
+ rawValue: "16"
314
+ },
315
+ {
316
+ label: "20",
317
+ value: "20",
318
+ rawValue: "20"
319
+ },
320
+ {
321
+ label: "24",
322
+ value: "24",
323
+ rawValue: "24"
324
+ },
325
+ {
326
+ label: "32",
327
+ value: "32",
328
+ rawValue: "32"
329
+ },
330
+ {
331
+ label: "36",
332
+ value: "36",
333
+ rawValue: "36"
334
+ },
335
+ {
336
+ label: "40",
337
+ value: "40",
338
+ rawValue: "40"
339
+ }
340
+ ]
341
+ },
342
+ color: {
343
+ type: "color-picker",
344
+ recommendColors: [
345
+ {
346
+ title: "中性色",
347
+ options: [
348
+ {
349
+ value: "text-neutral-00",
350
+ label: "neutral-00",
351
+ type: "tailwind",
352
+ rawValue: "#ffffff"
353
+ },
354
+ {
355
+ value: "text-neutral-50",
356
+ label: "neutral-50",
357
+ type: "tailwind",
358
+ rawValue: "#f5f6f7"
359
+ },
360
+ {
361
+ value: "text-neutral-100",
362
+ label: "neutral-100",
363
+ type: "tailwind",
364
+ rawValue: "#f2f3f5"
365
+ },
366
+ {
367
+ value: "text-neutral-200",
368
+ label: "neutral-200",
369
+ type: "tailwind",
370
+ rawValue: "#eff0f1"
371
+ },
372
+ {
373
+ value: "text-neutral-300",
374
+ label: "neutral-300",
375
+ type: "tailwind",
376
+ rawValue: "#dee0e3"
377
+ },
378
+ {
379
+ value: "text-neutral-400",
380
+ label: "neutral-400",
381
+ type: "tailwind",
382
+ rawValue: "#d0d3d6"
383
+ },
384
+ {
385
+ value: "text-neutral-500",
386
+ label: "neutral-500",
387
+ type: "tailwind",
388
+ rawValue: "#bbbfc4"
389
+ },
390
+ {
391
+ value: "text-neutral-600",
392
+ label: "neutral-600",
393
+ type: "tailwind",
394
+ rawValue: "#8f959e"
395
+ },
396
+ {
397
+ value: "text-neutral-650",
398
+ label: "neutral-650",
399
+ type: "tailwind",
400
+ rawValue: "#51565d"
401
+ },
402
+ {
403
+ value: "text-neutral-700",
404
+ label: "neutral-700",
405
+ type: "tailwind",
406
+ rawValue: "#646a73"
407
+ },
408
+ {
409
+ value: "text-neutral-800",
410
+ label: "neutral-800",
411
+ type: "tailwind",
412
+ rawValue: "#373c43"
413
+ },
414
+ {
415
+ value: "text-neutral-900",
416
+ label: "neutral-900",
417
+ type: "tailwind",
418
+ rawValue: "#2b2f36"
419
+ },
420
+ {
421
+ value: "text-neutral-950",
422
+ label: "neutral-950",
423
+ type: "tailwind",
424
+ rawValue: "#1f2329"
425
+ },
426
+ {
427
+ value: "text-neutral-1000",
428
+ label: "neutral-1000",
429
+ type: "tailwind",
430
+ rawValue: "#000000"
431
+ }
432
+ ]
433
+ }
434
+ ]
435
+ },
436
+ backgroundColor: {
437
+ type: "color-picker",
438
+ recommendColors: [
439
+ {
440
+ title: "中性色",
441
+ options: [
442
+ {
443
+ value: "bg-neutral-00",
444
+ label: "neutral-00",
445
+ type: "tailwind",
446
+ rawValue: "#ffffff"
447
+ },
448
+ {
449
+ value: "bg-neutral-50",
450
+ label: "neutral-50",
451
+ type: "tailwind",
452
+ rawValue: "#f5f6f7"
453
+ },
454
+ {
455
+ value: "bg-neutral-100",
456
+ label: "neutral-100",
457
+ type: "tailwind",
458
+ rawValue: "#f2f3f5"
459
+ },
460
+ {
461
+ value: "bg-neutral-200",
462
+ label: "neutral-200",
463
+ type: "tailwind",
464
+ rawValue: "#eff0f1"
465
+ },
466
+ {
467
+ value: "bg-neutral-300",
468
+ label: "neutral-300",
469
+ type: "tailwind",
470
+ rawValue: "#dee0e3"
471
+ },
472
+ {
473
+ value: "bg-neutral-400",
474
+ label: "neutral-400",
475
+ type: "tailwind",
476
+ rawValue: "#d0d3d6"
477
+ },
478
+ {
479
+ value: "bg-neutral-500",
480
+ label: "neutral-500",
481
+ type: "tailwind",
482
+ rawValue: "#bbbfc4"
483
+ },
484
+ {
485
+ value: "bg-neutral-600",
486
+ label: "neutral-600",
487
+ type: "tailwind",
488
+ rawValue: "#8f959e"
489
+ },
490
+ {
491
+ value: "bg-neutral-650",
492
+ label: "neutral-650",
493
+ type: "tailwind",
494
+ rawValue: "#51565d"
495
+ },
496
+ {
497
+ value: "bg-neutral-700",
498
+ label: "neutral-700",
499
+ type: "tailwind",
500
+ rawValue: "#646a73"
501
+ },
502
+ {
503
+ value: "bg-neutral-800",
504
+ label: "neutral-800",
505
+ type: "tailwind",
506
+ rawValue: "#373c43"
507
+ },
508
+ {
509
+ value: "bg-neutral-900",
510
+ label: "neutral-900",
511
+ type: "tailwind",
512
+ rawValue: "#2b2f36"
513
+ },
514
+ {
515
+ value: "bg-neutral-950",
516
+ label: "neutral-950",
517
+ type: "tailwind",
518
+ rawValue: "#1f2329"
519
+ },
520
+ {
521
+ value: "bg-neutral-1000",
522
+ label: "neutral-1000",
523
+ type: "tailwind",
524
+ rawValue: "#000000"
525
+ }
526
+ ]
527
+ }
528
+ ]
529
+ },
530
+ borderColor: {
531
+ type: "color-picker",
532
+ recommendColors: [
533
+ {
534
+ title: "中性色",
535
+ options: [
536
+ {
537
+ value: "border-neutral-00",
538
+ label: "neutral-00",
539
+ type: "tailwind",
540
+ rawValue: "#ffffff"
541
+ },
542
+ {
543
+ value: "border-neutral-50",
544
+ label: "neutral-50",
545
+ type: "tailwind",
546
+ rawValue: "#f5f6f7"
547
+ },
548
+ {
549
+ value: "border-neutral-100",
550
+ label: "neutral-100",
551
+ type: "tailwind",
552
+ rawValue: "#f2f3f5"
553
+ },
554
+ {
555
+ value: "border-neutral-200",
556
+ label: "neutral-200",
557
+ type: "tailwind",
558
+ rawValue: "#eff0f1"
559
+ },
560
+ {
561
+ value: "border-neutral-300",
562
+ label: "neutral-300",
563
+ type: "tailwind",
564
+ rawValue: "#dee0e3"
565
+ },
566
+ {
567
+ value: "border-neutral-400",
568
+ label: "neutral-400",
569
+ type: "tailwind",
570
+ rawValue: "#d0d3d6"
571
+ },
572
+ {
573
+ value: "border-neutral-500",
574
+ label: "neutral-500",
575
+ type: "tailwind",
576
+ rawValue: "#bbbfc4"
577
+ },
578
+ {
579
+ value: "border-neutral-600",
580
+ label: "neutral-600",
581
+ type: "tailwind",
582
+ rawValue: "#8f959e"
583
+ },
584
+ {
585
+ value: "border-neutral-650",
586
+ label: "neutral-650",
587
+ type: "tailwind",
588
+ rawValue: "#51565d"
589
+ },
590
+ {
591
+ value: "border-neutral-700",
592
+ label: "neutral-700",
593
+ type: "tailwind",
594
+ rawValue: "#646a73"
595
+ },
596
+ {
597
+ value: "border-neutral-800",
598
+ label: "neutral-800",
599
+ type: "tailwind",
600
+ rawValue: "#373c43"
601
+ },
602
+ {
603
+ value: "border-neutral-900",
604
+ label: "neutral-900",
605
+ type: "tailwind",
606
+ rawValue: "#2b2f36"
607
+ },
608
+ {
609
+ value: "border-neutral-950",
610
+ label: "neutral-950",
611
+ type: "tailwind",
612
+ rawValue: "#1f2329"
613
+ },
614
+ {
615
+ value: "border-neutral-1000",
616
+ label: "neutral-1000",
617
+ type: "tailwind",
618
+ rawValue: "#000000"
619
+ }
620
+ ]
621
+ }
622
+ ]
623
+ }
624
+ },
625
+ tokens: {
626
+ // blue
627
+ "blue-50": "#f0f4ff",
628
+ "blue-100": "#e0e9ff",
629
+ "blue-200": "#c2d4ff",
630
+ "blue-300": "#94b4ff",
631
+ "blue-400": "#7aa2ff",
632
+ "blue-500": "#5083fb",
633
+ "blue-600": "#336df4",
634
+ "blue-700": "#1456f0",
635
+ "blue-800": "#0442d2",
636
+ "blue-900": "#002f9e",
637
+ "blue-950": "#002270",
638
+ // indigo
639
+ "indigo-50": "#f2f3fd",
640
+ "indigo-100": "#e9eafb",
641
+ "indigo-200": "#cccff9",
642
+ "indigo-300": "#abb0f2",
643
+ "indigo-400": "#959bee",
644
+ "indigo-500": "#757df0",
645
+ "indigo-600": "#5b65f5",
646
+ "indigo-700": "#4752e6",
647
+ "indigo-800": "#333dcc",
648
+ "indigo-900": "#1e27a4",
649
+ "indigo-950": "#151b70",
650
+ // purple
651
+ "purple-50": "#f5f0fe",
652
+ "purple-100": "#efe6fe",
653
+ "purple-200": "#dcc9fd",
654
+ "purple-300": "#c8a9fc",
655
+ "purple-400": "#b791fa",
656
+ "purple-500": "#9f6ff1",
657
+ "purple-600": "#8d55ed",
658
+ "purple-700": "#7a35f0",
659
+ "purple-800": "#611fd6",
660
+ "purple-900": "#4811a6",
661
+ "purple-950": "#2f0080",
662
+ // violet
663
+ "violet-50": "#fceefc",
664
+ "violet-100": "#f9e2f9",
665
+ "violet-200": "#f3c4f3",
666
+ "violet-300": "#e59ce5",
667
+ "violet-400": "#de81de",
668
+ "violet-500": "#cf5ecf",
669
+ "violet-600": "#bf3dbf",
670
+ "violet-700": "#a630a6",
671
+ "violet-800": "#872787",
672
+ "violet-900": "#6a116a",
673
+ "violet-950": "#520052",
674
+ // pink
675
+ "pink-50": "#fef0f8",
676
+ "pink-100": "#fee2f2",
677
+ "pink-200": "#f8c4e1",
678
+ "pink-300": "#f598cc",
679
+ "pink-400": "#eb78b8",
680
+ "pink-500": "#df58a5",
681
+ "pink-600": "#cc398c",
682
+ "pink-700": "#b82879",
683
+ "pink-800": "#9d1562",
684
+ "pink-900": "#730744",
685
+ "pink-950": "#550c35",
686
+ // red
687
+ "red-50": "#fef0f0",
688
+ "red-100": "#fee3e2",
689
+ "red-200": "#fdc6c4",
690
+ "red-300": "#f89e9b",
691
+ "red-400": "#ff7570",
692
+ "red-500": "#f54a45",
693
+ "red-600": "#e22e28",
694
+ "red-700": "#c02a26",
695
+ "red-800": "#a11c17",
696
+ "red-900": "#741915",
697
+ "red-950": "#590603",
698
+ // 'neutral-00': '#ffffff',
699
+ // 'neutral-50': '#f5f6f7',
700
+ // 'neutral-100': '#f2f3f5',
701
+ // 'neutral-200': '#eff0f1',
702
+ // 'neutral-300': '#dee0e3',
703
+ // 'neutral-400': '#d0d3d6',
704
+ // 'neutral-500': '#bbbfc4',
705
+ // 'neutral-600': '#8f959e',
706
+ // 'neutral-650': '#51565d',
707
+ // 'neutral-700': '#646a73',
708
+ // 'neutral-800': '#373c43',
709
+ // 'neutral-900': '#2b2f36',
710
+ // 'neutral-950': '#1f2329',
711
+ // 'neutral-1000': '#000',
712
+ // orange
713
+ "orange-50": "#fff3e5",
714
+ "orange-100": "#fee7cd",
715
+ "orange-200": "#fec48b",
716
+ "orange-300": "#ff9d4c",
717
+ "orange-400": "#ff811a",
718
+ "orange-500": "#ed6d0c",
719
+ "orange-600": "#c25705",
720
+ "orange-700": "#a44904",
721
+ "orange-800": "#853a05",
722
+ "orange-900": "#642b02",
723
+ "orange-950": "#3b1a02",
724
+ // yellow
725
+ "yellow-50": "#fbf4df",
726
+ "yellow-100": "#faedc2",
727
+ "yellow-200": "#fcdf7e",
728
+ "yellow-300": "#fad355",
729
+ "yellow-400": "#ffc60a",
730
+ "yellow-500": "#d99904",
731
+ "yellow-600": "#ad7a03",
732
+ "yellow-700": "#865b03",
733
+ "yellow-800": "#6f4a01",
734
+ "yellow-900": "#573601",
735
+ "yellow-950": "#382201",
736
+ // amber
737
+ "amber-50": "#ffffdb",
738
+ "amber-100": "#fffca3",
739
+ "amber-200": "#fff67a",
740
+ "amber-300": "#fff258",
741
+ "amber-400": "#ffe928",
742
+ "amber-500": "#e5ce00",
743
+ "amber-600": "#c2a800",
744
+ "amber-700": "#8f7c00",
745
+ "amber-800": "#5c4f00",
746
+ "amber-900": "#423700",
747
+ "amber-950": "#2c2502",
748
+ // lime
749
+ "lime-50": "#f2f8d3",
750
+ "lime-100": "#e3f0a3",
751
+ "lime-200": "#c8dd5f",
752
+ "lime-300": "#a2c10b",
753
+ "lime-400": "#91ad00",
754
+ "lime-500": "#7b9207",
755
+ "lime-600": "#6b7f06",
756
+ "lime-700": "#5c6d08",
757
+ "lime-800": "#4a5804",
758
+ "lime-900": "#333d00",
759
+ "lime-950": "#262e00",
760
+ // green
761
+ "green-50": "#e4fae1",
762
+ "green-100": "#d0f5ce",
763
+ "green-200": "#95e599",
764
+ "green-300": "#5cd168",
765
+ "green-400": "#35bd4b",
766
+ "green-500": "#32a645",
767
+ "green-600": "#258832",
768
+ "green-700": "#1a7526",
769
+ "green-800": "#0b6017",
770
+ "green-900": "#04430c",
771
+ "green-950": "#022c07",
772
+ // teal
773
+ "teal-50": "#e2f8f5",
774
+ "teal-100": "#c4f2ec",
775
+ "teal-200": "#6fe8d8",
776
+ "teal-300": "#33d6c0",
777
+ "teal-400": "#2dbeab",
778
+ "teal-500": "#10a893",
779
+ "teal-600": "#0f8575",
780
+ "teal-700": "#067062",
781
+ "teal-800": "#045d51",
782
+ "teal-900": "#03443b",
783
+ "teal-950": "#02312a",
784
+ // cyan
785
+ "cyan-50": "#e7f8fe",
786
+ "cyan-100": "#caeffc",
787
+ "cyan-200": "#97dcfc",
788
+ "cyan-300": "#3ec3f7",
789
+ "cyan-400": "#25b0e7",
790
+ "cyan-500": "#1295ca",
791
+ "cyan-600": "#047fb0",
792
+ "cyan-700": "#076a94",
793
+ "cyan-800": "#0f587a",
794
+ "cyan-900": "#06415c",
795
+ "cyan-950": "#072b3d"
796
+ }
797
+ };