-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.json
1443 lines (1443 loc) · 31.7 KB
/
theme.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"__generated__": "⚠️ This file is generated. Do not edit.",
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"settings": {
"color": {
"custom": false,
"customDuotone": false,
"customGradient": false,
"defaultDuotone": false,
"defaultGradients": false,
"defaultPalette": false,
"duotone": [],
"palette": [
{
"color": "inherit",
"name": "Inherit",
"slug": "inherit"
},
{
"color": "currentcolor",
"name": "Current",
"slug": "current"
},
{
"color": "transparent",
"name": "Transparent",
"slug": "transparent"
},
{
"color": "#000",
"name": "Black",
"slug": "black"
},
{
"color": "#fff",
"name": "White",
"slug": "white"
},
{
"color": "#f8fafc",
"name": "Slate 50",
"slug": "slate-50"
},
{
"color": "#f1f5f9",
"name": "Slate 100",
"slug": "slate-100"
},
{
"color": "#e2e8f0",
"name": "Slate 200",
"slug": "slate-200"
},
{
"color": "#cbd5e1",
"name": "Slate 300",
"slug": "slate-300"
},
{
"color": "#94a3b8",
"name": "Slate 400",
"slug": "slate-400"
},
{
"color": "#64748b",
"name": "Slate 500",
"slug": "slate-500"
},
{
"color": "#475569",
"name": "Slate 600",
"slug": "slate-600"
},
{
"color": "#334155",
"name": "Slate 700",
"slug": "slate-700"
},
{
"color": "#1e293b",
"name": "Slate 800",
"slug": "slate-800"
},
{
"color": "#0f172a",
"name": "Slate 900",
"slug": "slate-900"
},
{
"color": "#020617",
"name": "Slate 950",
"slug": "slate-950"
},
{
"color": "#f9fafb",
"name": "Gray 50",
"slug": "gray-50"
},
{
"color": "#f3f4f6",
"name": "Gray 100",
"slug": "gray-100"
},
{
"color": "#e5e7eb",
"name": "Gray 200",
"slug": "gray-200"
},
{
"color": "#d1d5db",
"name": "Gray 300",
"slug": "gray-300"
},
{
"color": "#9ca3af",
"name": "Gray 400",
"slug": "gray-400"
},
{
"color": "#6b7280",
"name": "Gray 500",
"slug": "gray-500"
},
{
"color": "#4b5563",
"name": "Gray 600",
"slug": "gray-600"
},
{
"color": "#374151",
"name": "Gray 700",
"slug": "gray-700"
},
{
"color": "#1f2937",
"name": "Gray 800",
"slug": "gray-800"
},
{
"color": "#111827",
"name": "Gray 900",
"slug": "gray-900"
},
{
"color": "#030712",
"name": "Gray 950",
"slug": "gray-950"
},
{
"color": "#fafafa",
"name": "Zinc 50",
"slug": "zinc-50"
},
{
"color": "#f4f4f5",
"name": "Zinc 100",
"slug": "zinc-100"
},
{
"color": "#e4e4e7",
"name": "Zinc 200",
"slug": "zinc-200"
},
{
"color": "#d4d4d8",
"name": "Zinc 300",
"slug": "zinc-300"
},
{
"color": "#a1a1aa",
"name": "Zinc 400",
"slug": "zinc-400"
},
{
"color": "#71717a",
"name": "Zinc 500",
"slug": "zinc-500"
},
{
"color": "#52525b",
"name": "Zinc 600",
"slug": "zinc-600"
},
{
"color": "#3f3f46",
"name": "Zinc 700",
"slug": "zinc-700"
},
{
"color": "#27272a",
"name": "Zinc 800",
"slug": "zinc-800"
},
{
"color": "#18181b",
"name": "Zinc 900",
"slug": "zinc-900"
},
{
"color": "#09090b",
"name": "Zinc 950",
"slug": "zinc-950"
},
{
"color": "#fafafa",
"name": "Neutral 50",
"slug": "neutral-50"
},
{
"color": "#f5f5f5",
"name": "Neutral 100",
"slug": "neutral-100"
},
{
"color": "#e5e5e5",
"name": "Neutral 200",
"slug": "neutral-200"
},
{
"color": "#d4d4d4",
"name": "Neutral 300",
"slug": "neutral-300"
},
{
"color": "#a3a3a3",
"name": "Neutral 400",
"slug": "neutral-400"
},
{
"color": "#737373",
"name": "Neutral 500",
"slug": "neutral-500"
},
{
"color": "#525252",
"name": "Neutral 600",
"slug": "neutral-600"
},
{
"color": "#404040",
"name": "Neutral 700",
"slug": "neutral-700"
},
{
"color": "#262626",
"name": "Neutral 800",
"slug": "neutral-800"
},
{
"color": "#171717",
"name": "Neutral 900",
"slug": "neutral-900"
},
{
"color": "#0a0a0a",
"name": "Neutral 950",
"slug": "neutral-950"
},
{
"color": "#fafaf9",
"name": "Stone 50",
"slug": "stone-50"
},
{
"color": "#f5f5f4",
"name": "Stone 100",
"slug": "stone-100"
},
{
"color": "#e7e5e4",
"name": "Stone 200",
"slug": "stone-200"
},
{
"color": "#d6d3d1",
"name": "Stone 300",
"slug": "stone-300"
},
{
"color": "#a8a29e",
"name": "Stone 400",
"slug": "stone-400"
},
{
"color": "#78716c",
"name": "Stone 500",
"slug": "stone-500"
},
{
"color": "#57534e",
"name": "Stone 600",
"slug": "stone-600"
},
{
"color": "#44403c",
"name": "Stone 700",
"slug": "stone-700"
},
{
"color": "#292524",
"name": "Stone 800",
"slug": "stone-800"
},
{
"color": "#1c1917",
"name": "Stone 900",
"slug": "stone-900"
},
{
"color": "#0c0a09",
"name": "Stone 950",
"slug": "stone-950"
},
{
"color": "#fef2f2",
"name": "Red 50",
"slug": "red-50"
},
{
"color": "#fee2e2",
"name": "Red 100",
"slug": "red-100"
},
{
"color": "#fecaca",
"name": "Red 200",
"slug": "red-200"
},
{
"color": "#fca5a5",
"name": "Red 300",
"slug": "red-300"
},
{
"color": "#f87171",
"name": "Red 400",
"slug": "red-400"
},
{
"color": "#ef4444",
"name": "Red 500",
"slug": "red-500"
},
{
"color": "#dc2626",
"name": "Red 600",
"slug": "red-600"
},
{
"color": "#b91c1c",
"name": "Red 700",
"slug": "red-700"
},
{
"color": "#991b1b",
"name": "Red 800",
"slug": "red-800"
},
{
"color": "#7f1d1d",
"name": "Red 900",
"slug": "red-900"
},
{
"color": "#450a0a",
"name": "Red 950",
"slug": "red-950"
},
{
"color": "#fff7ed",
"name": "Orange 50",
"slug": "orange-50"
},
{
"color": "#ffedd5",
"name": "Orange 100",
"slug": "orange-100"
},
{
"color": "#fed7aa",
"name": "Orange 200",
"slug": "orange-200"
},
{
"color": "#fdba74",
"name": "Orange 300",
"slug": "orange-300"
},
{
"color": "#fb923c",
"name": "Orange 400",
"slug": "orange-400"
},
{
"color": "#f97316",
"name": "Orange 500",
"slug": "orange-500"
},
{
"color": "#ea580c",
"name": "Orange 600",
"slug": "orange-600"
},
{
"color": "#c2410c",
"name": "Orange 700",
"slug": "orange-700"
},
{
"color": "#9a3412",
"name": "Orange 800",
"slug": "orange-800"
},
{
"color": "#7c2d12",
"name": "Orange 900",
"slug": "orange-900"
},
{
"color": "#431407",
"name": "Orange 950",
"slug": "orange-950"
},
{
"color": "#fffbeb",
"name": "Amber 50",
"slug": "amber-50"
},
{
"color": "#fef3c7",
"name": "Amber 100",
"slug": "amber-100"
},
{
"color": "#fde68a",
"name": "Amber 200",
"slug": "amber-200"
},
{
"color": "#fcd34d",
"name": "Amber 300",
"slug": "amber-300"
},
{
"color": "#fbbf24",
"name": "Amber 400",
"slug": "amber-400"
},
{
"color": "#f59e0b",
"name": "Amber 500",
"slug": "amber-500"
},
{
"color": "#d97706",
"name": "Amber 600",
"slug": "amber-600"
},
{
"color": "#b45309",
"name": "Amber 700",
"slug": "amber-700"
},
{
"color": "#92400e",
"name": "Amber 800",
"slug": "amber-800"
},
{
"color": "#78350f",
"name": "Amber 900",
"slug": "amber-900"
},
{
"color": "#451a03",
"name": "Amber 950",
"slug": "amber-950"
},
{
"color": "#fefce8",
"name": "Yellow 50",
"slug": "yellow-50"
},
{
"color": "#fef9c3",
"name": "Yellow 100",
"slug": "yellow-100"
},
{
"color": "#fef08a",
"name": "Yellow 200",
"slug": "yellow-200"
},
{
"color": "#fde047",
"name": "Yellow 300",
"slug": "yellow-300"
},
{
"color": "#facc15",
"name": "Yellow 400",
"slug": "yellow-400"
},
{
"color": "#eab308",
"name": "Yellow 500",
"slug": "yellow-500"
},
{
"color": "#ca8a04",
"name": "Yellow 600",
"slug": "yellow-600"
},
{
"color": "#a16207",
"name": "Yellow 700",
"slug": "yellow-700"
},
{
"color": "#854d0e",
"name": "Yellow 800",
"slug": "yellow-800"
},
{
"color": "#713f12",
"name": "Yellow 900",
"slug": "yellow-900"
},
{
"color": "#422006",
"name": "Yellow 950",
"slug": "yellow-950"
},
{
"color": "#f7fee7",
"name": "Lime 50",
"slug": "lime-50"
},
{
"color": "#ecfccb",
"name": "Lime 100",
"slug": "lime-100"
},
{
"color": "#d9f99d",
"name": "Lime 200",
"slug": "lime-200"
},
{
"color": "#bef264",
"name": "Lime 300",
"slug": "lime-300"
},
{
"color": "#a3e635",
"name": "Lime 400",
"slug": "lime-400"
},
{
"color": "#84cc16",
"name": "Lime 500",
"slug": "lime-500"
},
{
"color": "#65a30d",
"name": "Lime 600",
"slug": "lime-600"
},
{
"color": "#4d7c0f",
"name": "Lime 700",
"slug": "lime-700"
},
{
"color": "#3f6212",
"name": "Lime 800",
"slug": "lime-800"
},
{
"color": "#365314",
"name": "Lime 900",
"slug": "lime-900"
},
{
"color": "#1a2e05",
"name": "Lime 950",
"slug": "lime-950"
},
{
"color": "#f0fdf4",
"name": "Green 50",
"slug": "green-50"
},
{
"color": "#dcfce7",
"name": "Green 100",
"slug": "green-100"
},
{
"color": "#bbf7d0",
"name": "Green 200",
"slug": "green-200"
},
{
"color": "#86efac",
"name": "Green 300",
"slug": "green-300"
},
{
"color": "#4ade80",
"name": "Green 400",
"slug": "green-400"
},
{
"color": "#22c55e",
"name": "Green 500",
"slug": "green-500"
},
{
"color": "#16a34a",
"name": "Green 600",
"slug": "green-600"
},
{
"color": "#15803d",
"name": "Green 700",
"slug": "green-700"
},
{
"color": "#166534",
"name": "Green 800",
"slug": "green-800"
},
{
"color": "#14532d",
"name": "Green 900",
"slug": "green-900"
},
{
"color": "#052e16",
"name": "Green 950",
"slug": "green-950"
},
{
"color": "#ecfdf5",
"name": "Emerald 50",
"slug": "emerald-50"
},
{
"color": "#d1fae5",
"name": "Emerald 100",
"slug": "emerald-100"
},
{
"color": "#a7f3d0",
"name": "Emerald 200",
"slug": "emerald-200"
},
{
"color": "#6ee7b7",
"name": "Emerald 300",
"slug": "emerald-300"
},
{
"color": "#34d399",
"name": "Emerald 400",
"slug": "emerald-400"
},
{
"color": "#10b981",
"name": "Emerald 500",
"slug": "emerald-500"
},
{
"color": "#059669",
"name": "Emerald 600",
"slug": "emerald-600"
},
{
"color": "#047857",
"name": "Emerald 700",
"slug": "emerald-700"
},
{
"color": "#065f46",
"name": "Emerald 800",
"slug": "emerald-800"
},
{
"color": "#064e3b",
"name": "Emerald 900",
"slug": "emerald-900"
},
{
"color": "#022c22",
"name": "Emerald 950",
"slug": "emerald-950"
},
{
"color": "#f0fdfa",
"name": "Teal 50",
"slug": "teal-50"
},
{
"color": "#ccfbf1",
"name": "Teal 100",
"slug": "teal-100"
},
{
"color": "#99f6e4",
"name": "Teal 200",
"slug": "teal-200"
},
{
"color": "#5eead4",
"name": "Teal 300",
"slug": "teal-300"
},
{
"color": "#2dd4bf",
"name": "Teal 400",
"slug": "teal-400"
},
{
"color": "#14b8a6",
"name": "Teal 500",
"slug": "teal-500"
},
{
"color": "#0d9488",
"name": "Teal 600",
"slug": "teal-600"
},
{
"color": "#0f766e",
"name": "Teal 700",
"slug": "teal-700"
},
{
"color": "#115e59",
"name": "Teal 800",
"slug": "teal-800"
},
{
"color": "#134e4a",
"name": "Teal 900",
"slug": "teal-900"
},
{
"color": "#042f2e",
"name": "Teal 950",
"slug": "teal-950"
},
{
"color": "#ecfeff",
"name": "Cyan 50",
"slug": "cyan-50"
},
{
"color": "#cffafe",
"name": "Cyan 100",
"slug": "cyan-100"
},
{
"color": "#a5f3fc",
"name": "Cyan 200",
"slug": "cyan-200"
},
{
"color": "#67e8f9",
"name": "Cyan 300",
"slug": "cyan-300"
},
{
"color": "#22d3ee",
"name": "Cyan 400",
"slug": "cyan-400"
},
{
"color": "#06b6d4",
"name": "Cyan 500",
"slug": "cyan-500"
},
{
"color": "#0891b2",
"name": "Cyan 600",
"slug": "cyan-600"
},
{
"color": "#0e7490",
"name": "Cyan 700",
"slug": "cyan-700"
},
{
"color": "#155e75",
"name": "Cyan 800",
"slug": "cyan-800"
},
{
"color": "#164e63",
"name": "Cyan 900",
"slug": "cyan-900"
},
{
"color": "#083344",
"name": "Cyan 950",
"slug": "cyan-950"
},
{
"color": "#f0f9ff",
"name": "Sky 50",
"slug": "sky-50"
},
{
"color": "#e0f2fe",
"name": "Sky 100",
"slug": "sky-100"
},
{
"color": "#bae6fd",
"name": "Sky 200",
"slug": "sky-200"
},
{
"color": "#7dd3fc",
"name": "Sky 300",
"slug": "sky-300"
},
{
"color": "#38bdf8",
"name": "Sky 400",
"slug": "sky-400"
},
{
"color": "#0ea5e9",
"name": "Sky 500",
"slug": "sky-500"
},
{
"color": "#0284c7",
"name": "Sky 600",
"slug": "sky-600"
},
{
"color": "#0369a1",
"name": "Sky 700",
"slug": "sky-700"
},
{
"color": "#075985",
"name": "Sky 800",
"slug": "sky-800"
},
{
"color": "#0c4a6e",
"name": "Sky 900",
"slug": "sky-900"
},
{
"color": "#082f49",
"name": "Sky 950",
"slug": "sky-950"
},
{
"color": "#eff6ff",
"name": "Blue 50",
"slug": "blue-50"
},
{
"color": "#dbeafe",
"name": "Blue 100",
"slug": "blue-100"
},
{
"color": "#bfdbfe",
"name": "Blue 200",
"slug": "blue-200"
},
{
"color": "#93c5fd",
"name": "Blue 300",
"slug": "blue-300"
},
{
"color": "#60a5fa",
"name": "Blue 400",
"slug": "blue-400"
},
{
"color": "#3b82f6",
"name": "Blue 500",
"slug": "blue-500"
},
{
"color": "#2563eb",
"name": "Blue 600",
"slug": "blue-600"
},
{
"color": "#1d4ed8",
"name": "Blue 700",
"slug": "blue-700"
},
{
"color": "#1e40af",
"name": "Blue 800",
"slug": "blue-800"
},
{
"color": "#1e3a8a",
"name": "Blue 900",
"slug": "blue-900"
},
{
"color": "#172554",
"name": "Blue 950",
"slug": "blue-950"
},
{
"color": "#eef2ff",
"name": "Indigo 50",
"slug": "indigo-50"
},
{
"color": "#e0e7ff",
"name": "Indigo 100",
"slug": "indigo-100"
},
{
"color": "#c7d2fe",
"name": "Indigo 200",
"slug": "indigo-200"
},
{
"color": "#a5b4fc",
"name": "Indigo 300",
"slug": "indigo-300"
},
{
"color": "#818cf8",
"name": "Indigo 400",
"slug": "indigo-400"
},
{
"color": "#6366f1",
"name": "Indigo 500",
"slug": "indigo-500"
},
{
"color": "#4f46e5",
"name": "Indigo 600",
"slug": "indigo-600"
},
{
"color": "#4338ca",
"name": "Indigo 700",
"slug": "indigo-700"
},
{
"color": "#3730a3",
"name": "Indigo 800",
"slug": "indigo-800"
},
{
"color": "#312e81",
"name": "Indigo 900",
"slug": "indigo-900"
},
{
"color": "#1e1b4b",
"name": "Indigo 950",
"slug": "indigo-950"
},
{
"color": "#f5f3ff",
"name": "Violet 50",
"slug": "violet-50"
},
{
"color": "#ede9fe",
"name": "Violet 100",
"slug": "violet-100"
},
{
"color": "#ddd6fe",
"name": "Violet 200",
"slug": "violet-200"
},
{
"color": "#c4b5fd",
"name": "Violet 300",
"slug": "violet-300"
},
{
"color": "#a78bfa",
"name": "Violet 400",
"slug": "violet-400"
},
{