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
| {
| "$schema": "https://schemas.wp.org/trunk/theme.json",
| "version":3,
| "settings": {
| "appearanceTools": true,
| "layout": {
| "contentSize": "768px",
| "wideSize": "1100px"
| },
| "color": {
| "defaultGradients": false,
| "palette": [
| {
| "slug": "contrast",
| "color": "#151515",
| "name": "Darkest"
| },
| {
| "slug": "contrast-50",
| "color": "#222222",
| "name": "Darker"
| },
| {
| "slug": "contrast-100",
| "color": "#2e2e2e",
| "name": "Dark"
| },
| {
| "slug": "contrast-200",
| "color": "#3b3b3b",
| "name": "Dark"
| },
| {
| "slug": "base",
| "color": "#efefef",
| "name": "Lightest"
| },
| {
| "slug": "base-50",
| "color": "#e2e2e2",
| "name": "Lighterer"
| },
| {
| "slug": "base-100",
| "color": "#d5d5d5",
| "name": "Lighter"
| },
| {
| "slug": "base-200",
| "color": "#c9c9c9",
| "name": "Light"
| },
| {
| "slug": "action-0",
| "color": "#ff0080",
| "name": "Action"
| },
| {
| "slug": "action-50",
| "color": "#ff2492",
| "name": "Action Light"
| },
| {
| "slug": "action-100",
| "color": "#ff47a4",
| "name": "Action Lighter"
| },
| {
| "slug": "action-200",
| "color": "#ff6bb5",
| "name": "Action Lightest"
| },
| {
| "slug": "secondary-0",
| "color": "#D69121",
| "name": "Secondary"
| },
| {
| "slug": "secondary-50",
| "color": "#ffc421",
| "name": "Secondary Light"
| },
| {
| "slug": "secondary-100",
| "color": "#ffcd44",
| "name": "Secondary Lighter"
| },
| {
| "slug": "secondary-200",
| "color": "#ffd768",
| "name": "Secondary Lightest"
| }
|
| ]
| }
| }
| }
|
|