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
| {
| "$schema": "https://schemas.wp.org/trunk/theme.json",
| "version":3,
| "settings": {
| "layout": {
| "contentSize": "720px",
| "wideSize": "1100px"
| },
| "color": {
| "customDuotone": false,
| "duotone": [
| {
| "slug": "base",
| "name": "Base",
| "colors": ["#231f20", "#faf9fa"]
| },
| {
| "slug": "action",
| "name": "Action",
| "colors": ["#05a54b", "#faf9fa"]
| },
| {
| "slug": "secondary",
| "name": "Secondary",
| "colors": ["#FFD25A", "#231f20"]
| },
| {
| "slug": "action-alt",
| "name": "Action Alt",
| "colors": ["#05a54b", "#fff0e0"]
| },
| {
| "slug": "secondary-alt",
| "name": "Secondary Alt",
| "colors": ["#FFD25A", "#f0ffe0"]
| }
| ],
| "palette": [
| {
| "slug": "dark-0",
| "color": "#151515",
| "name": "Dark"
| },
| {
| "slug": "dark-50",
| "color": "#222222",
| "name": "Dark 50"
| },
| {
| "slug": "dark-100",
| "color": "#2e2e2e",
| "name": "Dark 100"
| },
| {
| "slug": "dark-200",
| "color": "#3b3b3b",
| "name": "Dark 200"
| },
| {
| "slug": "light-0",
| "color": "#efefef",
| "name": "Light"
| },
| {
| "slug": "light-50",
| "color": "#e2e2e2",
| "name": "Light 50"
| },
| {
| "slug": "light-100",
| "color": "#d5d5d5",
| "name": "Light 100"
| },
| {
| "slug": "light-200",
| "color": "#c9c9c9",
| "name": "Light 200"
| },
| {
| "slug": "action-0",
| "color": "#ff0080",
| "name": "Action"
| },
| {
| "slug": "action-50",
| "color": "#ff2492",
| "name": "Action 50"
| },
| {
| "slug": "action-100",
| "color": "#ff47a4",
| "name": "Action 100"
| },
| {
| "slug": "action-200",
| "color": "#ff6bb5",
| "name": "Action 200"
| },
| {
| "slug": "action-comp",
| "color": "oklch(from #ff0080 .18 .02 h)",
| "name": "Action Complement"
| },
| {
| "slug": "action-tri",
| "color": "oklch(from #ff0080 .24 .1 calc(h + 120))",
| "name": "Action Triadic"
| },
| {
| "slug": "action-tri-alt",
| "color": "oklch(from #ff0080 .24 .1 calc(h - 120))",
| "name": "Action Triadic Alt"
| },
| {
| "slug": "action-mono",
| "color": "oklch(from #ff0080 .3 .04 h)",
| "name": "Action Monochrome"
| },
| {
| "slug": "secondary-0",
| "color": "#D69121",
| "name": "Secondary"
| },
| {
| "slug": "secondary-50",
| "color": "#ffc421",
| "name": "Secondary 50"
| },
| {
| "slug": "secondary-100",
| "color": "#ffcd44",
| "name": "Secondary 100"
| },
| {
| "slug": "secondary-200",
| "color": "#ffd768",
| "name": "Secondary 200"
| },
| {
| "slug": "secondary-comp",
| "color": "oklch(from #D69121 .18 .02 h)",
| "name": "Secondary Complement"
| },
| {
| "slug": "secondary-tri",
| "color": "oklch(from #D69121 .24 .1 calc(h + 120))",
| "name": "Secondary Triadic"
| },
| {
| "slug": "secondary-tri-alt",
| "color": "oklch(from #D69121 .24 .1 calc(h - 120))",
| "name": "Secondary Triadic Alt"
| },
| {
| "slug": "secondary-mono",
| "color": "oklch(from #D69121 .3 .04 h)",
| "name": "Secondary Monochrome"
| }
| ]
| }
| }
| }
|
|