@digdir/designsystemet 0.1.0-next.22 → 0.1.0-next.24
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.
- package/dist/bin/designsystemet.js +41 -13
- package/dist/src/colors/index.js +2 -2
- package/dist/src/colors/{themeUtils.js → theme.js} +16 -13
- package/dist/src/colors/{colorUtils.js → utils.js} +20 -10
- package/dist/src/init/createTokensPackage.js +27 -4
- package/dist/src/init/generateMetadataJson.js +10 -5
- package/dist/src/init/generateThemesJson.js +56 -5
- package/dist/src/init/nextStepsMarkdown.js +2 -2
- package/dist/src/init/template/default-files/design-tokens/Figma/components.json +22 -0
- package/dist/src/init/template/default-files/design-tokens/primitives/globals.json +32 -68
- package/dist/src/init/template/default-files/design-tokens/primitives/size/default.json +175 -0
- package/dist/src/init/template/default-files/design-tokens/semantic/color.json +280 -270
- package/dist/src/init/template/default-files/design-tokens/semantic/style.json +307 -286
- package/dist/src/init/template/default-files/design-tokens/themes/theme.json +334 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/contrast/theme-template.json +314 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/dark/global.json +376 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/dark/theme-template.json +314 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/light/global.json +376 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/colors/light/theme-template.json +314 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/typography/primary/theme-template.json +30 -0
- package/dist/src/init/template/template-files/design-tokens/primitives/modes/typography/secondary/theme-template.json +30 -0
- package/dist/src/init/template/template-files/design-tokens/themes/theme-template.json +170 -150
- package/dist/src/init/template/template-files/package.json +1 -1
- package/dist/src/tokens/{formats → build/formats}/css.js +6 -8
- package/dist/src/tokens/{build.js → build/index.js} +2 -2
- package/dist/src/tokens/create/README.md +3 -0
- package/dist/src/tokens/create/index.js +153 -0
- package/dist/src/tokens/index.js +4 -0
- package/dist/types/src/colors/index.d.ts +2 -2
- package/dist/types/src/colors/index.d.ts.map +1 -1
- package/dist/types/src/colors/{themeUtils.d.ts → theme.d.ts} +10 -27
- package/dist/types/src/colors/theme.d.ts.map +1 -0
- package/dist/types/src/colors/types.d.ts +3 -2
- package/dist/types/src/colors/types.d.ts.map +1 -1
- package/dist/types/src/colors/{colorUtils.d.ts → utils.d.ts} +14 -8
- package/dist/types/src/colors/utils.d.ts.map +1 -0
- package/dist/types/src/init/createTokensPackage.d.ts.map +1 -1
- package/dist/types/src/init/generateMetadataJson.d.ts.map +1 -1
- package/dist/types/src/init/generateThemesJson.d.ts.map +1 -1
- package/dist/types/src/tokens/build/actions.d.ts.map +1 -0
- package/dist/types/src/tokens/build/configs.d.ts.map +1 -0
- package/dist/types/src/tokens/build/formats/css.d.ts.map +1 -0
- package/dist/types/src/tokens/build/formats/js-tokens.d.ts.map +1 -0
- package/dist/types/src/tokens/{build.d.ts → build/index.d.ts} +2 -2
- package/dist/types/src/tokens/build/index.d.ts.map +1 -0
- package/dist/types/src/tokens/build/transformers.d.ts.map +1 -0
- package/dist/types/src/tokens/build/utils/entryfile.d.ts.map +1 -0
- package/dist/types/src/tokens/build/utils/noCase.d.ts.map +1 -0
- package/dist/types/src/tokens/build/utils/permutateThemes.d.ts.map +1 -0
- package/dist/types/src/tokens/build/utils/utils.d.ts.map +1 -0
- package/dist/types/src/tokens/create/index.d.ts +64 -0
- package/dist/types/src/tokens/create/index.d.ts.map +1 -0
- package/dist/types/src/tokens/index.d.ts +2 -0
- package/dist/types/src/tokens/index.d.ts.map +1 -0
- package/package.json +7 -3
- package/dist/src/init/template/default-files/design-tokens/primitives/typography/default.json +0 -86
- package/dist/src/init/template/template-files/design-tokens/primitives/colors/contrast/theme-template.json +0 -314
- package/dist/src/init/template/template-files/design-tokens/primitives/colors/dark/global.json +0 -376
- package/dist/src/init/template/template-files/design-tokens/primitives/colors/dark/theme-template.json +0 -314
- package/dist/src/init/template/template-files/design-tokens/primitives/colors/light/global.json +0 -376
- package/dist/src/init/template/template-files/design-tokens/primitives/colors/light/theme-template.json +0 -314
- package/dist/types/src/colors/colorUtils.d.ts.map +0 -1
- package/dist/types/src/colors/themeUtils.d.ts.map +0 -1
- package/dist/types/src/tokens/actions.d.ts.map +0 -1
- package/dist/types/src/tokens/build.d.ts.map +0 -1
- package/dist/types/src/tokens/configs.d.ts.map +0 -1
- package/dist/types/src/tokens/formats/css.d.ts.map +0 -1
- package/dist/types/src/tokens/formats/js-tokens.d.ts.map +0 -1
- package/dist/types/src/tokens/transformers.d.ts.map +0 -1
- package/dist/types/src/tokens/utils/entryfile.d.ts.map +0 -1
- package/dist/types/src/tokens/utils/noCase.d.ts.map +0 -1
- package/dist/types/src/tokens/utils/permutateThemes.d.ts.map +0 -1
- package/dist/types/src/tokens/utils/utils.d.ts.map +0 -1
- /package/dist/src/init/template/template-files/design-tokens/primitives/{colors → modes/colors}/contrast/global.json +0 -0
- /package/dist/src/tokens/{actions.js → build/actions.js} +0 -0
- /package/dist/src/tokens/{configs.js → build/configs.js} +0 -0
- /package/dist/src/tokens/{formats → build/formats}/js-tokens.js +0 -0
- /package/dist/src/tokens/{transformers.js → build/transformers.js} +0 -0
- /package/dist/src/tokens/{utils → build/utils}/entryfile.js +0 -0
- /package/dist/src/tokens/{utils → build/utils}/noCase.js +0 -0
- /package/dist/src/tokens/{utils → build/utils}/permutateThemes.js +0 -0
- /package/dist/src/tokens/{utils → build/utils}/utils.js +0 -0
- /package/dist/types/src/tokens/{actions.d.ts → build/actions.d.ts} +0 -0
- /package/dist/types/src/tokens/{configs.d.ts → build/configs.d.ts} +0 -0
- /package/dist/types/src/tokens/{formats → build/formats}/css.d.ts +0 -0
- /package/dist/types/src/tokens/{formats → build/formats}/js-tokens.d.ts +0 -0
- /package/dist/types/src/tokens/{transformers.d.ts → build/transformers.d.ts} +0 -0
- /package/dist/types/src/tokens/{utils → build/utils}/entryfile.d.ts +0 -0
- /package/dist/types/src/tokens/{utils → build/utils}/noCase.d.ts +0 -0
- /package/dist/types/src/tokens/{utils → build/utils}/permutateThemes.d.ts +0 -0
- /package/dist/types/src/tokens/{utils → build/utils}/utils.d.ts +0 -0
|
@@ -0,0 +1,334 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": {
|
|
3
|
+
"accent": {
|
|
4
|
+
"1": {
|
|
5
|
+
"$type": "color",
|
|
6
|
+
"$value": "{theme.accent.1}"
|
|
7
|
+
},
|
|
8
|
+
"2": {
|
|
9
|
+
"$type": "color",
|
|
10
|
+
"$value": "{theme.accent.2}"
|
|
11
|
+
},
|
|
12
|
+
"3": {
|
|
13
|
+
"$type": "color",
|
|
14
|
+
"$value": "{theme.accent.3}"
|
|
15
|
+
},
|
|
16
|
+
"4": {
|
|
17
|
+
"$type": "color",
|
|
18
|
+
"$value": "{theme.accent.4}"
|
|
19
|
+
},
|
|
20
|
+
"5": {
|
|
21
|
+
"$type": "color",
|
|
22
|
+
"$value": "{theme.accent.5}"
|
|
23
|
+
},
|
|
24
|
+
"6": {
|
|
25
|
+
"$type": "color",
|
|
26
|
+
"$value": "{theme.accent.6}"
|
|
27
|
+
},
|
|
28
|
+
"7": {
|
|
29
|
+
"$type": "color",
|
|
30
|
+
"$value": "{theme.accent.7}"
|
|
31
|
+
},
|
|
32
|
+
"8": {
|
|
33
|
+
"$type": "color",
|
|
34
|
+
"$value": "{theme.accent.8}"
|
|
35
|
+
},
|
|
36
|
+
"9": {
|
|
37
|
+
"$type": "color",
|
|
38
|
+
"$value": "{theme.accent.9}"
|
|
39
|
+
},
|
|
40
|
+
"10": {
|
|
41
|
+
"$type": "color",
|
|
42
|
+
"$value": "{theme.accent.10}"
|
|
43
|
+
},
|
|
44
|
+
"11": {
|
|
45
|
+
"$type": "color",
|
|
46
|
+
"$value": "{theme.accent.11}"
|
|
47
|
+
},
|
|
48
|
+
"12": {
|
|
49
|
+
"$type": "color",
|
|
50
|
+
"$value": "{theme.accent.12}"
|
|
51
|
+
},
|
|
52
|
+
"13": {
|
|
53
|
+
"$type": "color",
|
|
54
|
+
"$value": "{theme.accent.13}"
|
|
55
|
+
},
|
|
56
|
+
"contrast-1": {
|
|
57
|
+
"$type": "color",
|
|
58
|
+
"$value": "{theme.accent.contrast-1}"
|
|
59
|
+
},
|
|
60
|
+
"contrast-2": {
|
|
61
|
+
"$type": "color",
|
|
62
|
+
"$value": "{theme.accent.contrast-2}"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"neutral": {
|
|
66
|
+
"1": {
|
|
67
|
+
"$type": "color",
|
|
68
|
+
"$value": "{theme.neutral.1}"
|
|
69
|
+
},
|
|
70
|
+
"2": {
|
|
71
|
+
"$type": "color",
|
|
72
|
+
"$value": "{theme.neutral.2}"
|
|
73
|
+
},
|
|
74
|
+
"3": {
|
|
75
|
+
"$type": "color",
|
|
76
|
+
"$value": "{theme.neutral.3}"
|
|
77
|
+
},
|
|
78
|
+
"4": {
|
|
79
|
+
"$type": "color",
|
|
80
|
+
"$value": "{theme.neutral.4}"
|
|
81
|
+
},
|
|
82
|
+
"5": {
|
|
83
|
+
"$type": "color",
|
|
84
|
+
"$value": "{theme.neutral.5}"
|
|
85
|
+
},
|
|
86
|
+
"6": {
|
|
87
|
+
"$type": "color",
|
|
88
|
+
"$value": "{theme.neutral.6}"
|
|
89
|
+
},
|
|
90
|
+
"7": {
|
|
91
|
+
"$type": "color",
|
|
92
|
+
"$value": "{theme.neutral.7}"
|
|
93
|
+
},
|
|
94
|
+
"8": {
|
|
95
|
+
"$type": "color",
|
|
96
|
+
"$value": "{theme.neutral.8}"
|
|
97
|
+
},
|
|
98
|
+
"9": {
|
|
99
|
+
"$type": "color",
|
|
100
|
+
"$value": "{theme.neutral.9}"
|
|
101
|
+
},
|
|
102
|
+
"10": {
|
|
103
|
+
"$type": "color",
|
|
104
|
+
"$value": "{theme.neutral.10}"
|
|
105
|
+
},
|
|
106
|
+
"11": {
|
|
107
|
+
"$type": "color",
|
|
108
|
+
"$value": "{theme.neutral.11}"
|
|
109
|
+
},
|
|
110
|
+
"12": {
|
|
111
|
+
"$type": "color",
|
|
112
|
+
"$value": "{theme.neutral.12}"
|
|
113
|
+
},
|
|
114
|
+
"13": {
|
|
115
|
+
"$type": "color",
|
|
116
|
+
"$value": "{theme.neutral.13}"
|
|
117
|
+
},
|
|
118
|
+
"contrast-1": {
|
|
119
|
+
"$type": "color",
|
|
120
|
+
"$value": "{theme.neutral.contrast-1}"
|
|
121
|
+
},
|
|
122
|
+
"contrast-2": {
|
|
123
|
+
"$type": "color",
|
|
124
|
+
"$value": "{theme.neutral.contrast-2}"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"brand1": {
|
|
128
|
+
"1": {
|
|
129
|
+
"$type": "color",
|
|
130
|
+
"$value": "{theme.brand1.1}"
|
|
131
|
+
},
|
|
132
|
+
"2": {
|
|
133
|
+
"$type": "color",
|
|
134
|
+
"$value": "{theme.brand1.2}"
|
|
135
|
+
},
|
|
136
|
+
"3": {
|
|
137
|
+
"$type": "color",
|
|
138
|
+
"$value": "{theme.brand1.3}"
|
|
139
|
+
},
|
|
140
|
+
"4": {
|
|
141
|
+
"$type": "color",
|
|
142
|
+
"$value": "{theme.brand1.4}"
|
|
143
|
+
},
|
|
144
|
+
"5": {
|
|
145
|
+
"$type": "color",
|
|
146
|
+
"$value": "{theme.brand1.5}"
|
|
147
|
+
},
|
|
148
|
+
"6": {
|
|
149
|
+
"$type": "color",
|
|
150
|
+
"$value": "{theme.brand1.6}"
|
|
151
|
+
},
|
|
152
|
+
"7": {
|
|
153
|
+
"$type": "color",
|
|
154
|
+
"$value": "{theme.brand1.7}"
|
|
155
|
+
},
|
|
156
|
+
"8": {
|
|
157
|
+
"$type": "color",
|
|
158
|
+
"$value": "{theme.brand1.8}"
|
|
159
|
+
},
|
|
160
|
+
"9": {
|
|
161
|
+
"$type": "color",
|
|
162
|
+
"$value": "{theme.brand1.9}"
|
|
163
|
+
},
|
|
164
|
+
"10": {
|
|
165
|
+
"$type": "color",
|
|
166
|
+
"$value": "{theme.brand1.10}"
|
|
167
|
+
},
|
|
168
|
+
"11": {
|
|
169
|
+
"$type": "color",
|
|
170
|
+
"$value": "{theme.brand1.11}"
|
|
171
|
+
},
|
|
172
|
+
"12": {
|
|
173
|
+
"$type": "color",
|
|
174
|
+
"$value": "{theme.brand1.12}"
|
|
175
|
+
},
|
|
176
|
+
"13": {
|
|
177
|
+
"$type": "color",
|
|
178
|
+
"$value": "{theme.brand1.13}"
|
|
179
|
+
},
|
|
180
|
+
"contrast-1": {
|
|
181
|
+
"$type": "color",
|
|
182
|
+
"$value": "{theme.brand1.contrast-1}"
|
|
183
|
+
},
|
|
184
|
+
"contrast-2": {
|
|
185
|
+
"$type": "color",
|
|
186
|
+
"$value": "{theme.brand1.contrast-2}"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"brand2": {
|
|
190
|
+
"1": {
|
|
191
|
+
"$type": "color",
|
|
192
|
+
"$value": "{theme.brand2.1}"
|
|
193
|
+
},
|
|
194
|
+
"2": {
|
|
195
|
+
"$type": "color",
|
|
196
|
+
"$value": "{theme.brand2.2}"
|
|
197
|
+
},
|
|
198
|
+
"3": {
|
|
199
|
+
"$type": "color",
|
|
200
|
+
"$value": "{theme.brand2.3}"
|
|
201
|
+
},
|
|
202
|
+
"4": {
|
|
203
|
+
"$type": "color",
|
|
204
|
+
"$value": "{theme.brand2.4}"
|
|
205
|
+
},
|
|
206
|
+
"5": {
|
|
207
|
+
"$type": "color",
|
|
208
|
+
"$value": "{theme.brand2.5}"
|
|
209
|
+
},
|
|
210
|
+
"6": {
|
|
211
|
+
"$type": "color",
|
|
212
|
+
"$value": "{theme.brand2.6}"
|
|
213
|
+
},
|
|
214
|
+
"7": {
|
|
215
|
+
"$type": "color",
|
|
216
|
+
"$value": "{theme.brand2.7}"
|
|
217
|
+
},
|
|
218
|
+
"8": {
|
|
219
|
+
"$type": "color",
|
|
220
|
+
"$value": "{theme.brand2.8}"
|
|
221
|
+
},
|
|
222
|
+
"9": {
|
|
223
|
+
"$type": "color",
|
|
224
|
+
"$value": "{theme.brand2.9}"
|
|
225
|
+
},
|
|
226
|
+
"10": {
|
|
227
|
+
"$type": "color",
|
|
228
|
+
"$value": "{theme.brand2.10}"
|
|
229
|
+
},
|
|
230
|
+
"11": {
|
|
231
|
+
"$type": "color",
|
|
232
|
+
"$value": "{theme.brand2.11}"
|
|
233
|
+
},
|
|
234
|
+
"12": {
|
|
235
|
+
"$type": "color",
|
|
236
|
+
"$value": "{theme.brand2.12}"
|
|
237
|
+
},
|
|
238
|
+
"13": {
|
|
239
|
+
"$type": "color",
|
|
240
|
+
"$value": "{theme.brand2.13}"
|
|
241
|
+
},
|
|
242
|
+
"contrast-1": {
|
|
243
|
+
"$type": "color",
|
|
244
|
+
"$value": "{theme.brand2.contrast-1}"
|
|
245
|
+
},
|
|
246
|
+
"contrast-2": {
|
|
247
|
+
"$type": "color",
|
|
248
|
+
"$value": "{theme.brand2.contrast-2}"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"brand3": {
|
|
252
|
+
"1": {
|
|
253
|
+
"$type": "color",
|
|
254
|
+
"$value": "{theme.brand3.1}"
|
|
255
|
+
},
|
|
256
|
+
"2": {
|
|
257
|
+
"$type": "color",
|
|
258
|
+
"$value": "{theme.brand3.2}"
|
|
259
|
+
},
|
|
260
|
+
"3": {
|
|
261
|
+
"$type": "color",
|
|
262
|
+
"$value": "{theme.brand3.3}"
|
|
263
|
+
},
|
|
264
|
+
"4": {
|
|
265
|
+
"$type": "color",
|
|
266
|
+
"$value": "{theme.brand3.4}"
|
|
267
|
+
},
|
|
268
|
+
"5": {
|
|
269
|
+
"$type": "color",
|
|
270
|
+
"$value": "{theme.brand3.5}"
|
|
271
|
+
},
|
|
272
|
+
"6": {
|
|
273
|
+
"$type": "color",
|
|
274
|
+
"$value": "{theme.brand3.6}"
|
|
275
|
+
},
|
|
276
|
+
"7": {
|
|
277
|
+
"$type": "color",
|
|
278
|
+
"$value": "{theme.brand3.7}"
|
|
279
|
+
},
|
|
280
|
+
"8": {
|
|
281
|
+
"$type": "color",
|
|
282
|
+
"$value": "{theme.brand3.8}"
|
|
283
|
+
},
|
|
284
|
+
"9": {
|
|
285
|
+
"$type": "color",
|
|
286
|
+
"$value": "{theme.brand3.9}"
|
|
287
|
+
},
|
|
288
|
+
"10": {
|
|
289
|
+
"$type": "color",
|
|
290
|
+
"$value": "{theme.brand3.10}"
|
|
291
|
+
},
|
|
292
|
+
"11": {
|
|
293
|
+
"$type": "color",
|
|
294
|
+
"$value": "{theme.brand3.11}"
|
|
295
|
+
},
|
|
296
|
+
"12": {
|
|
297
|
+
"$type": "color",
|
|
298
|
+
"$value": "{theme.brand3.12}"
|
|
299
|
+
},
|
|
300
|
+
"13": {
|
|
301
|
+
"$type": "color",
|
|
302
|
+
"$value": "{theme.brand3.13}"
|
|
303
|
+
},
|
|
304
|
+
"contrast-1": {
|
|
305
|
+
"$type": "color",
|
|
306
|
+
"$value": "{theme.brand3.contrast-1}"
|
|
307
|
+
},
|
|
308
|
+
"contrast-2": {
|
|
309
|
+
"$type": "color",
|
|
310
|
+
"$value": "{theme.brand3.contrast-2}"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"font": {
|
|
315
|
+
"family": {
|
|
316
|
+
"$type": "fontFamilies",
|
|
317
|
+
"$value": "{theme.main}"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"font-weight": {
|
|
321
|
+
"medium": {
|
|
322
|
+
"$type": "fontWeights",
|
|
323
|
+
"$value": "{theme.bold}"
|
|
324
|
+
},
|
|
325
|
+
"semibold": {
|
|
326
|
+
"$type": "fontWeights",
|
|
327
|
+
"$value": "{theme.extra-bold}"
|
|
328
|
+
},
|
|
329
|
+
"regular": {
|
|
330
|
+
"$type": "fontWeights",
|
|
331
|
+
"$value": "{theme.regular}"
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
@@ -0,0 +1,314 @@
|
|
|
1
|
+
{
|
|
2
|
+
"<theme>": {
|
|
3
|
+
"accent": {
|
|
4
|
+
"1": {
|
|
5
|
+
"$value": "#000409",
|
|
6
|
+
"$type": "color"
|
|
7
|
+
},
|
|
8
|
+
"2": {
|
|
9
|
+
"$$value": "#001427",
|
|
10
|
+
"$type": "color"
|
|
11
|
+
},
|
|
12
|
+
"3": {
|
|
13
|
+
"$value": "#002445",
|
|
14
|
+
"$type": "color"
|
|
15
|
+
},
|
|
16
|
+
"4": {
|
|
17
|
+
"$value": "#00315c",
|
|
18
|
+
"$type": "color"
|
|
19
|
+
},
|
|
20
|
+
"5": {
|
|
21
|
+
"$value": "#003d75",
|
|
22
|
+
"$type": "color"
|
|
23
|
+
},
|
|
24
|
+
"6": {
|
|
25
|
+
"$value": "#4b90ce",
|
|
26
|
+
"$type": "color"
|
|
27
|
+
},
|
|
28
|
+
"7": {
|
|
29
|
+
"$value": "#7eb0dc",
|
|
30
|
+
"$type": "color"
|
|
31
|
+
},
|
|
32
|
+
"8": {
|
|
33
|
+
"$value": "#b0cfea",
|
|
34
|
+
"$type": "color"
|
|
35
|
+
},
|
|
36
|
+
"9": {
|
|
37
|
+
"$value": "#0062BA",
|
|
38
|
+
"$type": "color"
|
|
39
|
+
},
|
|
40
|
+
"10": {
|
|
41
|
+
"$value": "#005099",
|
|
42
|
+
"$type": "color"
|
|
43
|
+
},
|
|
44
|
+
"11": {
|
|
45
|
+
"$value": "#003d75",
|
|
46
|
+
"$type": "color"
|
|
47
|
+
},
|
|
48
|
+
"12": {
|
|
49
|
+
"$value": "#a9cae8",
|
|
50
|
+
"$type": "color"
|
|
51
|
+
},
|
|
52
|
+
"13": {
|
|
53
|
+
"$value": "#e8f1f9",
|
|
54
|
+
"$type": "color"
|
|
55
|
+
},
|
|
56
|
+
"contrast-1": {
|
|
57
|
+
"$value": "#fefeff",
|
|
58
|
+
"$type": "color"
|
|
59
|
+
},
|
|
60
|
+
"contrast-2": {
|
|
61
|
+
"$value": "#ddeaf6",
|
|
62
|
+
"$type": "color"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"neutral": {
|
|
66
|
+
"1": {
|
|
67
|
+
"$value": "#020405",
|
|
68
|
+
"$type": "color"
|
|
69
|
+
},
|
|
70
|
+
"2": {
|
|
71
|
+
"$value": "#0e141b",
|
|
72
|
+
"$type": "color"
|
|
73
|
+
},
|
|
74
|
+
"3": {
|
|
75
|
+
"$value": "#192433",
|
|
76
|
+
"$type": "color"
|
|
77
|
+
},
|
|
78
|
+
"4": {
|
|
79
|
+
"$value": "#243142",
|
|
80
|
+
"$type": "color"
|
|
81
|
+
},
|
|
82
|
+
"5": {
|
|
83
|
+
"$value": "#333e4e",
|
|
84
|
+
"$type": "color"
|
|
85
|
+
},
|
|
86
|
+
"6": {
|
|
87
|
+
"$value": "#858c96",
|
|
88
|
+
"$type": "color"
|
|
89
|
+
},
|
|
90
|
+
"7": {
|
|
91
|
+
"$value": "#a6abb2",
|
|
92
|
+
"$type": "color"
|
|
93
|
+
},
|
|
94
|
+
"8": {
|
|
95
|
+
"$value": "#c9ccd0",
|
|
96
|
+
"$type": "color"
|
|
97
|
+
},
|
|
98
|
+
"9": {
|
|
99
|
+
"$value": "#1E2B3C",
|
|
100
|
+
"$type": "color"
|
|
101
|
+
},
|
|
102
|
+
"10": {
|
|
103
|
+
"$value": "#303c4b",
|
|
104
|
+
"$type": "color"
|
|
105
|
+
},
|
|
106
|
+
"11": {
|
|
107
|
+
"$value": "#444e5d",
|
|
108
|
+
"$type": "color"
|
|
109
|
+
},
|
|
110
|
+
"12": {
|
|
111
|
+
"$value": "#c3c6cb",
|
|
112
|
+
"$type": "color"
|
|
113
|
+
},
|
|
114
|
+
"13": {
|
|
115
|
+
"$value": "#eff0f1",
|
|
116
|
+
"$type": "color"
|
|
117
|
+
},
|
|
118
|
+
"contrast-1": {
|
|
119
|
+
"$value": "#fefefe",
|
|
120
|
+
"$type": "color"
|
|
121
|
+
},
|
|
122
|
+
"contrast-2": {
|
|
123
|
+
"$value": "#bbbfc4",
|
|
124
|
+
"$type": "color"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
"brand1": {
|
|
128
|
+
"1": {
|
|
129
|
+
"$value": "#060303",
|
|
130
|
+
"$type": "color"
|
|
131
|
+
},
|
|
132
|
+
"2": {
|
|
133
|
+
"$value": "#230d0e",
|
|
134
|
+
"$type": "color"
|
|
135
|
+
},
|
|
136
|
+
"3": {
|
|
137
|
+
"$value": "#3c1819",
|
|
138
|
+
"$type": "color"
|
|
139
|
+
},
|
|
140
|
+
"4": {
|
|
141
|
+
"$value": "#522021",
|
|
142
|
+
"$type": "color"
|
|
143
|
+
},
|
|
144
|
+
"5": {
|
|
145
|
+
"$value": "#68292a",
|
|
146
|
+
"$type": "color"
|
|
147
|
+
},
|
|
148
|
+
"6": {
|
|
149
|
+
"$value": "#eb5b5f",
|
|
150
|
+
"$type": "color"
|
|
151
|
+
},
|
|
152
|
+
"7": {
|
|
153
|
+
"$value": "#f78d8f",
|
|
154
|
+
"$type": "color"
|
|
155
|
+
},
|
|
156
|
+
"8": {
|
|
157
|
+
"$value": "#fabcbd",
|
|
158
|
+
"$type": "color"
|
|
159
|
+
},
|
|
160
|
+
"9": {
|
|
161
|
+
"$value": "#F45F63",
|
|
162
|
+
"$type": "color"
|
|
163
|
+
},
|
|
164
|
+
"10": {
|
|
165
|
+
"$value": "#d15155",
|
|
166
|
+
"$type": "color"
|
|
167
|
+
},
|
|
168
|
+
"11": {
|
|
169
|
+
"$value": "#b04447",
|
|
170
|
+
"$type": "color"
|
|
171
|
+
},
|
|
172
|
+
"12": {
|
|
173
|
+
"$value": "#fab4b5",
|
|
174
|
+
"$type": "color"
|
|
175
|
+
},
|
|
176
|
+
"13": {
|
|
177
|
+
"$value": "#feeced",
|
|
178
|
+
"$type": "color"
|
|
179
|
+
},
|
|
180
|
+
"contrast-1": {
|
|
181
|
+
"$value": "#000000",
|
|
182
|
+
"$type": "color"
|
|
183
|
+
},
|
|
184
|
+
"contrast-2": {
|
|
185
|
+
"$value": "#000000",
|
|
186
|
+
"$type": "color"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"brand2": {
|
|
190
|
+
"1": {
|
|
191
|
+
"$value": "#050301",
|
|
192
|
+
"$type": "color"
|
|
193
|
+
},
|
|
194
|
+
"2": {
|
|
195
|
+
"$value": "#191303",
|
|
196
|
+
"$type": "color"
|
|
197
|
+
},
|
|
198
|
+
"3": {
|
|
199
|
+
"$value": "#2d2206",
|
|
200
|
+
"$type": "color"
|
|
201
|
+
},
|
|
202
|
+
"4": {
|
|
203
|
+
"$value": "#3d2e09",
|
|
204
|
+
"$type": "color"
|
|
205
|
+
},
|
|
206
|
+
"5": {
|
|
207
|
+
"$value": "#4f3b0b",
|
|
208
|
+
"$type": "color"
|
|
209
|
+
},
|
|
210
|
+
"6": {
|
|
211
|
+
"$value": "#b28419",
|
|
212
|
+
"$type": "color"
|
|
213
|
+
},
|
|
214
|
+
"7": {
|
|
215
|
+
"$value": "#daa21f",
|
|
216
|
+
"$type": "color"
|
|
217
|
+
},
|
|
218
|
+
"8": {
|
|
219
|
+
"$value": "#eec76c",
|
|
220
|
+
"$type": "color"
|
|
221
|
+
},
|
|
222
|
+
"9": {
|
|
223
|
+
"$value": "#E5AA20",
|
|
224
|
+
"$type": "color"
|
|
225
|
+
},
|
|
226
|
+
"10": {
|
|
227
|
+
"$value": "#c9951c",
|
|
228
|
+
"$type": "color"
|
|
229
|
+
},
|
|
230
|
+
"11": {
|
|
231
|
+
"$value": "#ae8118",
|
|
232
|
+
"$type": "color"
|
|
233
|
+
},
|
|
234
|
+
"12": {
|
|
235
|
+
"$value": "#ecc059",
|
|
236
|
+
"$type": "color"
|
|
237
|
+
},
|
|
238
|
+
"13": {
|
|
239
|
+
"$value": "#faefd6",
|
|
240
|
+
"$type": "color"
|
|
241
|
+
},
|
|
242
|
+
"contrast-1": {
|
|
243
|
+
"$value": "#000000",
|
|
244
|
+
"$type": "color"
|
|
245
|
+
},
|
|
246
|
+
"contrast-2": {
|
|
247
|
+
"$value": "#2b2006",
|
|
248
|
+
"$type": "color"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"brand3": {
|
|
252
|
+
"1": {
|
|
253
|
+
"$value": "#010407",
|
|
254
|
+
"$type": "color"
|
|
255
|
+
},
|
|
256
|
+
"2": {
|
|
257
|
+
"$value": "#041421",
|
|
258
|
+
"$type": "color"
|
|
259
|
+
},
|
|
260
|
+
"3": {
|
|
261
|
+
"$value": "#07253c",
|
|
262
|
+
"$type": "color"
|
|
263
|
+
},
|
|
264
|
+
"4": {
|
|
265
|
+
"$value": "#0a3251",
|
|
266
|
+
"$type": "color"
|
|
267
|
+
},
|
|
268
|
+
"5": {
|
|
269
|
+
"$value": "#0d4068",
|
|
270
|
+
"$type": "color"
|
|
271
|
+
},
|
|
272
|
+
"6": {
|
|
273
|
+
"$value": "#1c90e8",
|
|
274
|
+
"$type": "color"
|
|
275
|
+
},
|
|
276
|
+
"7": {
|
|
277
|
+
"$value": "#57b2f8",
|
|
278
|
+
"$type": "color"
|
|
279
|
+
},
|
|
280
|
+
"8": {
|
|
281
|
+
"$value": "#9cd2fb",
|
|
282
|
+
"$type": "color"
|
|
283
|
+
},
|
|
284
|
+
"9": {
|
|
285
|
+
"$value": "#1E98F5",
|
|
286
|
+
"$type": "color"
|
|
287
|
+
},
|
|
288
|
+
"10": {
|
|
289
|
+
"$value": "#1a83d3",
|
|
290
|
+
"$type": "color"
|
|
291
|
+
},
|
|
292
|
+
"11": {
|
|
293
|
+
"$value": "#166eb2",
|
|
294
|
+
"$type": "color"
|
|
295
|
+
},
|
|
296
|
+
"12": {
|
|
297
|
+
"$value": "#90ccfa",
|
|
298
|
+
"$type": "color"
|
|
299
|
+
},
|
|
300
|
+
"13": {
|
|
301
|
+
"$value": "#e3f2fe",
|
|
302
|
+
"$type": "color"
|
|
303
|
+
},
|
|
304
|
+
"contrast-1": {
|
|
305
|
+
"$value": "#000000",
|
|
306
|
+
"$type": "color"
|
|
307
|
+
},
|
|
308
|
+
"contrast-2": {
|
|
309
|
+
"$value": "#010407",
|
|
310
|
+
"$type": "color"
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|