@fastwork/xosmoz-theme 0.64.0 → 0.65.0
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/README.md +6 -8
- package/dist/dart/xz_colors.generated.dart +16 -58
- package/dist/figma-plugin.zip +0 -0
- package/dist/figma-tokens/Dark.json +117 -163
- package/dist/figma-tokens/Light.json +117 -163
- package/dist/index.d.mts +2 -10
- package/dist/index.d.ts +2 -10
- package/dist/index.js +18 -62
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -62
- package/dist/index.mjs.map +1 -1
- package/dist/llms.txt +19 -23
- package/dist/themes/dark.css +9 -11
- package/dist/themes/light.css +9 -11
- package/dist/themes.css +18 -22
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,9 +71,7 @@ Surface and layout colors that adapt between light and dark themes.
|
|
|
71
71
|
| `--xz-color-text-300` | Tertiary/disabled text (60% opacity) |
|
|
72
72
|
| `--xz-color-bg-100` | Extreme base background (near-black in light, near-white in dark) |
|
|
73
73
|
| `--xz-color-bg-200` | Darker base background |
|
|
74
|
-
| `--xz-color-fg
|
|
75
|
-
| `--xz-color-soft-100` | Very subtle overlay (4% opacity of bg) |
|
|
76
|
-
| `--xz-color-soft-200` | Subtle overlay (7% opacity of bg) |
|
|
74
|
+
| `--xz-color-text-fg` | Text on `bg-100` (white in light, black in dark) |
|
|
77
75
|
| `--xz-color-line-50` | Subtle borders |
|
|
78
76
|
| `--xz-color-line-100` | Default borders |
|
|
79
77
|
| `--xz-color-line-200` | Strong/emphasized borders |
|
|
@@ -96,7 +94,7 @@ Each category follows the same token structure — replace `{name}` with the cat
|
|
|
96
94
|
| `--xz-color-{name}-line-300` | Strong colored border (active states) |
|
|
97
95
|
| `--xz-color-{name}-bg-100` | Solid fill (buttons, tags) |
|
|
98
96
|
| `--xz-color-{name}-bg-200` | Darker solid fill (hover state) |
|
|
99
|
-
| `--xz-color-{name}-fg
|
|
97
|
+
| `--xz-color-{name}-text-fg` | Text on solid backgrounds — pair with `bg-100`/`bg-200` (typically white) |
|
|
100
98
|
| `--xz-color-{name}-text-100` | Colored text on surfaces (links, labels) |
|
|
101
99
|
| `--xz-color-{name}-text-200` | Darker colored text on surfaces |
|
|
102
100
|
|
|
@@ -106,7 +104,7 @@ Each category follows the same token structure — replace `{name}` with the cat
|
|
|
106
104
|
/* Primary button */
|
|
107
105
|
.btn-primary {
|
|
108
106
|
background: var(--xz-color-primary-bg-100);
|
|
109
|
-
color: var(--xz-color-primary-fg
|
|
107
|
+
color: var(--xz-color-primary-text-fg); /* white text on solid bg */
|
|
110
108
|
}
|
|
111
109
|
.btn-primary:hover {
|
|
112
110
|
background: var(--xz-color-primary-bg-200);
|
|
@@ -310,7 +308,7 @@ Override any CSS variable for a custom theme:
|
|
|
310
308
|
--xz-color-text-100: oklch(0.20 0.006 285);
|
|
311
309
|
--xz-color-line-50: oklch(0.95 0 1 / 0.95);
|
|
312
310
|
--xz-color-primary-bg-100: oklch(0.58 0.25 30);
|
|
313
|
-
--xz-color-primary-fg
|
|
311
|
+
--xz-color-primary-text-fg: oklch(1 0 0 / 0.95);
|
|
314
312
|
--xz-color-primary-text-100: oklch(0.58 0.25 30);
|
|
315
313
|
/* override other variables as needed */
|
|
316
314
|
}
|
|
@@ -341,7 +339,7 @@ Then activate it:
|
|
|
341
339
|
```css
|
|
342
340
|
.btn-primary {
|
|
343
341
|
background: var(--xz-color-primary-bg-100);
|
|
344
|
-
color: var(--xz-color-primary-fg
|
|
342
|
+
color: var(--xz-color-primary-text-fg);
|
|
345
343
|
font: var(--xz-font-subtitle1-bold);
|
|
346
344
|
border: none;
|
|
347
345
|
border-radius: 0.5rem;
|
|
@@ -372,7 +370,7 @@ Then activate it:
|
|
|
372
370
|
|
|
373
371
|
.alert-danger {
|
|
374
372
|
background: var(--xz-color-danger-bg-100);
|
|
375
|
-
color: var(--xz-color-danger-fg
|
|
373
|
+
color: var(--xz-color-danger-text-fg);
|
|
376
374
|
}
|
|
377
375
|
```
|
|
378
376
|
|
|
@@ -35,16 +35,16 @@ class XzBaseScale {
|
|
|
35
35
|
Color get shade200 => _shades[200]!;
|
|
36
36
|
Color get shade300 => _shades[300]!;
|
|
37
37
|
Color get shade400 => _shades[400]!;
|
|
38
|
+
Color get shadeNaN => _shades[NaN]!;
|
|
38
39
|
}
|
|
39
40
|
|
|
40
|
-
/// Semantic role color with soft, softSolid, line, bg,
|
|
41
|
+
/// Semantic role color with soft, softSolid, line, bg, text sub-groups.
|
|
41
42
|
class XzRoleColor {
|
|
42
43
|
const XzRoleColor({
|
|
43
44
|
this.soft = const {},
|
|
44
45
|
this.softSolid = const {},
|
|
45
46
|
this.line = const {},
|
|
46
47
|
this.bg = const {},
|
|
47
|
-
this.fg = const {},
|
|
48
48
|
this.text = const {},
|
|
49
49
|
});
|
|
50
50
|
|
|
@@ -52,7 +52,6 @@ class XzRoleColor {
|
|
|
52
52
|
final Map<int, Color> softSolid;
|
|
53
53
|
final Map<int, Color> line;
|
|
54
54
|
final Map<int, Color> bg;
|
|
55
|
-
final Map<int, Color> fg;
|
|
56
55
|
final Map<int, Color> text;
|
|
57
56
|
|
|
58
57
|
Color get soft100 => soft[100]!;
|
|
@@ -64,7 +63,6 @@ class XzRoleColor {
|
|
|
64
63
|
Color get line300 => line[300]!;
|
|
65
64
|
Color get bg100 => bg[100]!;
|
|
66
65
|
Color get bg200 => bg[200]!;
|
|
67
|
-
Color get fg100 => fg[100]!;
|
|
68
66
|
Color get text100 => text[100]!;
|
|
69
67
|
}
|
|
70
68
|
|
|
@@ -108,8 +106,6 @@ class XzColors {
|
|
|
108
106
|
const XzColors._({
|
|
109
107
|
required this.bg,
|
|
110
108
|
required this.surface,
|
|
111
|
-
required this.fg,
|
|
112
|
-
required this.soft,
|
|
113
109
|
required this.text,
|
|
114
110
|
required this.line,
|
|
115
111
|
required this.primary,
|
|
@@ -134,8 +130,6 @@ class XzColors {
|
|
|
134
130
|
// ── Semantic base (theme-dependent) ──
|
|
135
131
|
final XzBaseScale bg;
|
|
136
132
|
final XzBaseScale surface;
|
|
137
|
-
final XzBaseScale fg;
|
|
138
|
-
final XzBaseScale soft;
|
|
139
133
|
final XzBaseScale text;
|
|
140
134
|
final XzBaseScale line;
|
|
141
135
|
|
|
@@ -160,17 +154,11 @@ class XzColors {
|
|
|
160
154
|
300: Color(0xFFEEEEEE),
|
|
161
155
|
400: Color(0xFFE4E4E4),
|
|
162
156
|
}),
|
|
163
|
-
fg: XzBaseScale({
|
|
164
|
-
100: Color(0xFFFFFFFF),
|
|
165
|
-
}),
|
|
166
|
-
soft: XzBaseScale({
|
|
167
|
-
100: Color(0x0A2B313B),
|
|
168
|
-
200: Color(0x122B313B),
|
|
169
|
-
}),
|
|
170
157
|
text: XzBaseScale({
|
|
171
158
|
100: Color(0xFF161616),
|
|
172
159
|
200: Color(0xB3161616),
|
|
173
160
|
300: Color(0x99161616),
|
|
161
|
+
NaN: Color(0xFFFFFFFF),
|
|
174
162
|
}),
|
|
175
163
|
line: XzBaseScale({
|
|
176
164
|
50: Color(0xF7EBEFF5),
|
|
@@ -196,12 +184,10 @@ class XzColors {
|
|
|
196
184
|
100: Color(0xFF0669FF),
|
|
197
185
|
200: Color(0xFF005CE4),
|
|
198
186
|
},
|
|
199
|
-
fg: {
|
|
200
|
-
100: Color(0xFFFFFFFF),
|
|
201
|
-
},
|
|
202
187
|
text: {
|
|
203
188
|
100: Color(0xFF0063F5),
|
|
204
189
|
200: Color(0xFF003EA0),
|
|
190
|
+
NaN: Color(0xFFFFFFFF),
|
|
205
191
|
},
|
|
206
192
|
),
|
|
207
193
|
danger: XzRoleColor(
|
|
@@ -222,12 +208,10 @@ class XzColors {
|
|
|
222
208
|
100: Color(0xFFE32A20),
|
|
223
209
|
200: Color(0xFFD10606),
|
|
224
210
|
},
|
|
225
|
-
fg: {
|
|
226
|
-
100: Color(0xFFFFFFFF),
|
|
227
|
-
},
|
|
228
211
|
text: {
|
|
229
212
|
100: Color(0xFFD40F0B),
|
|
230
213
|
200: Color(0xFF8B0001),
|
|
214
|
+
NaN: Color(0xFFFFFFFF),
|
|
231
215
|
},
|
|
232
216
|
),
|
|
233
217
|
success: XzRoleColor(
|
|
@@ -248,12 +232,10 @@ class XzColors {
|
|
|
248
232
|
100: Color(0xFF15C02D),
|
|
249
233
|
200: Color(0xFF00AE23),
|
|
250
234
|
},
|
|
251
|
-
fg: {
|
|
252
|
-
100: Color(0xF2000000),
|
|
253
|
-
},
|
|
254
235
|
text: {
|
|
255
236
|
100: Color(0xFF008A19),
|
|
256
237
|
200: Color(0xFF00580C),
|
|
238
|
+
NaN: Color(0xF2000000),
|
|
257
239
|
},
|
|
258
240
|
),
|
|
259
241
|
warning: XzRoleColor(
|
|
@@ -274,12 +256,10 @@ class XzColors {
|
|
|
274
256
|
100: Color(0xFFFFB508),
|
|
275
257
|
200: Color(0xFFEBA600),
|
|
276
258
|
},
|
|
277
|
-
fg: {
|
|
278
|
-
100: Color(0xF2000000),
|
|
279
|
-
},
|
|
280
259
|
text: {
|
|
281
260
|
100: Color(0xFF956800),
|
|
282
261
|
200: Color(0xFF5F4100),
|
|
262
|
+
NaN: Color(0xF2000000),
|
|
283
263
|
},
|
|
284
264
|
),
|
|
285
265
|
info: XzRoleColor(
|
|
@@ -300,12 +280,10 @@ class XzColors {
|
|
|
300
280
|
100: Color(0xFF00CAE7),
|
|
301
281
|
200: Color(0xFF00B9D3),
|
|
302
282
|
},
|
|
303
|
-
fg: {
|
|
304
|
-
100: Color(0xF2000000),
|
|
305
|
-
},
|
|
306
283
|
text: {
|
|
307
284
|
100: Color(0xFF008093),
|
|
308
285
|
200: Color(0xFF00515E),
|
|
286
|
+
NaN: Color(0xF2000000),
|
|
309
287
|
},
|
|
310
288
|
),
|
|
311
289
|
neutral: XzRoleColor(
|
|
@@ -326,12 +304,10 @@ class XzColors {
|
|
|
326
304
|
100: Color(0xFF798598),
|
|
327
305
|
200: Color(0xFF6A7689),
|
|
328
306
|
},
|
|
329
|
-
fg: {
|
|
330
|
-
100: Color(0xFFFFFFFF),
|
|
331
|
-
},
|
|
332
307
|
text: {
|
|
333
308
|
100: Color(0xFF677285),
|
|
334
309
|
200: Color(0xFF3E4859),
|
|
310
|
+
NaN: Color(0xFFFFFFFF),
|
|
335
311
|
},
|
|
336
312
|
),
|
|
337
313
|
);
|
|
@@ -349,17 +325,11 @@ class XzColors {
|
|
|
349
325
|
300: Color(0xFF373C47),
|
|
350
326
|
400: Color(0xFF3B3F4B),
|
|
351
327
|
}),
|
|
352
|
-
fg: XzBaseScale({
|
|
353
|
-
100: Color(0xFF000000),
|
|
354
|
-
}),
|
|
355
|
-
soft: XzBaseScale({
|
|
356
|
-
100: Color(0x0AF1F5FC),
|
|
357
|
-
200: Color(0x12F1F5FC),
|
|
358
|
-
}),
|
|
359
328
|
text: XzBaseScale({
|
|
360
329
|
100: Color(0xFFF2F2F2),
|
|
361
330
|
200: Color(0xA6F2F2F2),
|
|
362
331
|
300: Color(0x8CF2F2F2),
|
|
332
|
+
NaN: Color(0xFF000000),
|
|
363
333
|
}),
|
|
364
334
|
line: XzBaseScale({
|
|
365
335
|
50: Color(0xF23E424D),
|
|
@@ -385,12 +355,10 @@ class XzColors {
|
|
|
385
355
|
100: Color(0xFF0669FF),
|
|
386
356
|
200: Color(0xFF347EFF),
|
|
387
357
|
},
|
|
388
|
-
fg: {
|
|
389
|
-
100: Color(0xFFFFFFFF),
|
|
390
|
-
},
|
|
391
358
|
text: {
|
|
392
359
|
100: Color(0xFF7EAEFF),
|
|
393
360
|
200: Color(0xFFB2CFFF),
|
|
361
|
+
NaN: Color(0xFFFFFFFF),
|
|
394
362
|
},
|
|
395
363
|
),
|
|
396
364
|
danger: XzRoleColor(
|
|
@@ -411,12 +379,10 @@ class XzColors {
|
|
|
411
379
|
100: Color(0xFFE32A20),
|
|
412
380
|
200: Color(0xFFF64032),
|
|
413
381
|
},
|
|
414
|
-
fg: {
|
|
415
|
-
100: Color(0xFFFFFFFF),
|
|
416
|
-
},
|
|
417
382
|
text: {
|
|
418
383
|
100: Color(0xFFFF8575),
|
|
419
384
|
200: Color(0xFFFFBAAF),
|
|
385
|
+
NaN: Color(0xFFFFFFFF),
|
|
420
386
|
},
|
|
421
387
|
),
|
|
422
388
|
success: XzRoleColor(
|
|
@@ -437,12 +403,10 @@ class XzColors {
|
|
|
437
403
|
100: Color(0xFF15C02D),
|
|
438
404
|
200: Color(0xFF35D141),
|
|
439
405
|
},
|
|
440
|
-
fg: {
|
|
441
|
-
100: Color(0xF2000000),
|
|
442
|
-
},
|
|
443
406
|
text: {
|
|
444
407
|
100: Color(0xFF4BCD51),
|
|
445
408
|
200: Color(0xFF6FEE72),
|
|
409
|
+
NaN: Color(0xF2000000),
|
|
446
410
|
},
|
|
447
411
|
),
|
|
448
412
|
warning: XzRoleColor(
|
|
@@ -463,12 +427,10 @@ class XzColors {
|
|
|
463
427
|
100: Color(0xFFFFB508),
|
|
464
428
|
200: Color(0xFFFFCC76),
|
|
465
429
|
},
|
|
466
|
-
fg: {
|
|
467
|
-
100: Color(0xF2000000),
|
|
468
|
-
},
|
|
469
430
|
text: {
|
|
470
431
|
100: Color(0xFFE2A000),
|
|
471
432
|
200: Color(0xFFFFC257),
|
|
433
|
+
NaN: Color(0xF2000000),
|
|
472
434
|
},
|
|
473
435
|
),
|
|
474
436
|
info: XzRoleColor(
|
|
@@ -489,12 +451,10 @@ class XzColors {
|
|
|
489
451
|
100: Color(0xFF00CAE7),
|
|
490
452
|
200: Color(0xFF31DBF8),
|
|
491
453
|
},
|
|
492
|
-
fg: {
|
|
493
|
-
100: Color(0xF2000000),
|
|
494
|
-
},
|
|
495
454
|
text: {
|
|
496
455
|
100: Color(0xFF00C3DF),
|
|
497
456
|
200: Color(0xFF50E3FF),
|
|
457
|
+
NaN: Color(0xF2000000),
|
|
498
458
|
},
|
|
499
459
|
),
|
|
500
460
|
neutral: XzRoleColor(
|
|
@@ -515,12 +475,10 @@ class XzColors {
|
|
|
515
475
|
100: Color(0xFF798598),
|
|
516
476
|
200: Color(0xFF8894A7),
|
|
517
477
|
},
|
|
518
|
-
fg: {
|
|
519
|
-
100: Color(0xFFFFFFFF),
|
|
520
|
-
},
|
|
521
478
|
text: {
|
|
522
479
|
100: Color(0xFFA2AFC3),
|
|
523
480
|
200: Color(0xFFC2CFE3),
|
|
481
|
+
NaN: Color(0xFFFFFFFF),
|
|
524
482
|
},
|
|
525
483
|
),
|
|
526
484
|
);
|
package/dist/figma-plugin.zip
CHANGED
|
Binary file
|
|
@@ -96,49 +96,6 @@
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
|
-
"soft": {
|
|
100
|
-
"100": {
|
|
101
|
-
"$type": "color",
|
|
102
|
-
"$value": {
|
|
103
|
-
"colorSpace": "srgb",
|
|
104
|
-
"components": [
|
|
105
|
-
0.945098,
|
|
106
|
-
0.960784,
|
|
107
|
-
0.988235
|
|
108
|
-
],
|
|
109
|
-
"alpha": 0.0392156862745098,
|
|
110
|
-
"hex": "#F1F5FC0A"
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
"200": {
|
|
114
|
-
"$type": "color",
|
|
115
|
-
"$value": {
|
|
116
|
-
"colorSpace": "srgb",
|
|
117
|
-
"components": [
|
|
118
|
-
0.945098,
|
|
119
|
-
0.960784,
|
|
120
|
-
0.988235
|
|
121
|
-
],
|
|
122
|
-
"alpha": 0.07058823529411765,
|
|
123
|
-
"hex": "#F1F5FC12"
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
"fg": {
|
|
128
|
-
"100": {
|
|
129
|
-
"$type": "color",
|
|
130
|
-
"$value": {
|
|
131
|
-
"colorSpace": "srgb",
|
|
132
|
-
"components": [
|
|
133
|
-
0,
|
|
134
|
-
0,
|
|
135
|
-
0
|
|
136
|
-
],
|
|
137
|
-
"alpha": 1,
|
|
138
|
-
"hex": "#000000"
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
},
|
|
142
99
|
"text": {
|
|
143
100
|
"100": {
|
|
144
101
|
"$type": "color",
|
|
@@ -178,6 +135,19 @@
|
|
|
178
135
|
"alpha": 0.5490196078431373,
|
|
179
136
|
"hex": "#F2F2F28C"
|
|
180
137
|
}
|
|
138
|
+
},
|
|
139
|
+
"fg": {
|
|
140
|
+
"$type": "color",
|
|
141
|
+
"$value": {
|
|
142
|
+
"colorSpace": "srgb",
|
|
143
|
+
"components": [
|
|
144
|
+
0,
|
|
145
|
+
0,
|
|
146
|
+
0
|
|
147
|
+
],
|
|
148
|
+
"alpha": 1,
|
|
149
|
+
"hex": "#000000"
|
|
150
|
+
}
|
|
181
151
|
}
|
|
182
152
|
},
|
|
183
153
|
"line": {
|
|
@@ -361,21 +331,6 @@
|
|
|
361
331
|
}
|
|
362
332
|
}
|
|
363
333
|
},
|
|
364
|
-
"fg": {
|
|
365
|
-
"100": {
|
|
366
|
-
"$type": "color",
|
|
367
|
-
"$value": {
|
|
368
|
-
"colorSpace": "srgb",
|
|
369
|
-
"components": [
|
|
370
|
-
1,
|
|
371
|
-
1,
|
|
372
|
-
1
|
|
373
|
-
],
|
|
374
|
-
"alpha": 1,
|
|
375
|
-
"hex": "#FFFFFF"
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
334
|
"text": {
|
|
380
335
|
"100": {
|
|
381
336
|
"$type": "color",
|
|
@@ -402,6 +357,19 @@
|
|
|
402
357
|
"alpha": 1,
|
|
403
358
|
"hex": "#B2CFFF"
|
|
404
359
|
}
|
|
360
|
+
},
|
|
361
|
+
"fg": {
|
|
362
|
+
"$type": "color",
|
|
363
|
+
"$value": {
|
|
364
|
+
"colorSpace": "srgb",
|
|
365
|
+
"components": [
|
|
366
|
+
1,
|
|
367
|
+
1,
|
|
368
|
+
1
|
|
369
|
+
],
|
|
370
|
+
"alpha": 1,
|
|
371
|
+
"hex": "#FFFFFF"
|
|
372
|
+
}
|
|
405
373
|
}
|
|
406
374
|
}
|
|
407
375
|
},
|
|
@@ -531,21 +499,6 @@
|
|
|
531
499
|
}
|
|
532
500
|
}
|
|
533
501
|
},
|
|
534
|
-
"fg": {
|
|
535
|
-
"100": {
|
|
536
|
-
"$type": "color",
|
|
537
|
-
"$value": {
|
|
538
|
-
"colorSpace": "srgb",
|
|
539
|
-
"components": [
|
|
540
|
-
1,
|
|
541
|
-
1,
|
|
542
|
-
1
|
|
543
|
-
],
|
|
544
|
-
"alpha": 1,
|
|
545
|
-
"hex": "#FFFFFF"
|
|
546
|
-
}
|
|
547
|
-
}
|
|
548
|
-
},
|
|
549
502
|
"text": {
|
|
550
503
|
"100": {
|
|
551
504
|
"$type": "color",
|
|
@@ -572,6 +525,19 @@
|
|
|
572
525
|
"alpha": 1,
|
|
573
526
|
"hex": "#FFBAAF"
|
|
574
527
|
}
|
|
528
|
+
},
|
|
529
|
+
"fg": {
|
|
530
|
+
"$type": "color",
|
|
531
|
+
"$value": {
|
|
532
|
+
"colorSpace": "srgb",
|
|
533
|
+
"components": [
|
|
534
|
+
1,
|
|
535
|
+
1,
|
|
536
|
+
1
|
|
537
|
+
],
|
|
538
|
+
"alpha": 1,
|
|
539
|
+
"hex": "#FFFFFF"
|
|
540
|
+
}
|
|
575
541
|
}
|
|
576
542
|
}
|
|
577
543
|
},
|
|
@@ -701,21 +667,6 @@
|
|
|
701
667
|
}
|
|
702
668
|
}
|
|
703
669
|
},
|
|
704
|
-
"fg": {
|
|
705
|
-
"100": {
|
|
706
|
-
"$type": "color",
|
|
707
|
-
"$value": {
|
|
708
|
-
"colorSpace": "srgb",
|
|
709
|
-
"components": [
|
|
710
|
-
0,
|
|
711
|
-
0,
|
|
712
|
-
0
|
|
713
|
-
],
|
|
714
|
-
"alpha": 0.9490196078431372,
|
|
715
|
-
"hex": "#000000F2"
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
},
|
|
719
670
|
"text": {
|
|
720
671
|
"100": {
|
|
721
672
|
"$type": "color",
|
|
@@ -742,6 +693,19 @@
|
|
|
742
693
|
"alpha": 1,
|
|
743
694
|
"hex": "#6FEE72"
|
|
744
695
|
}
|
|
696
|
+
},
|
|
697
|
+
"fg": {
|
|
698
|
+
"$type": "color",
|
|
699
|
+
"$value": {
|
|
700
|
+
"colorSpace": "srgb",
|
|
701
|
+
"components": [
|
|
702
|
+
0,
|
|
703
|
+
0,
|
|
704
|
+
0
|
|
705
|
+
],
|
|
706
|
+
"alpha": 0.9490196078431372,
|
|
707
|
+
"hex": "#000000F2"
|
|
708
|
+
}
|
|
745
709
|
}
|
|
746
710
|
}
|
|
747
711
|
},
|
|
@@ -871,21 +835,6 @@
|
|
|
871
835
|
}
|
|
872
836
|
}
|
|
873
837
|
},
|
|
874
|
-
"fg": {
|
|
875
|
-
"100": {
|
|
876
|
-
"$type": "color",
|
|
877
|
-
"$value": {
|
|
878
|
-
"colorSpace": "srgb",
|
|
879
|
-
"components": [
|
|
880
|
-
0,
|
|
881
|
-
0,
|
|
882
|
-
0
|
|
883
|
-
],
|
|
884
|
-
"alpha": 0.9490196078431372,
|
|
885
|
-
"hex": "#000000F2"
|
|
886
|
-
}
|
|
887
|
-
}
|
|
888
|
-
},
|
|
889
838
|
"text": {
|
|
890
839
|
"100": {
|
|
891
840
|
"$type": "color",
|
|
@@ -912,6 +861,19 @@
|
|
|
912
861
|
"alpha": 1,
|
|
913
862
|
"hex": "#FFC257"
|
|
914
863
|
}
|
|
864
|
+
},
|
|
865
|
+
"fg": {
|
|
866
|
+
"$type": "color",
|
|
867
|
+
"$value": {
|
|
868
|
+
"colorSpace": "srgb",
|
|
869
|
+
"components": [
|
|
870
|
+
0,
|
|
871
|
+
0,
|
|
872
|
+
0
|
|
873
|
+
],
|
|
874
|
+
"alpha": 0.9490196078431372,
|
|
875
|
+
"hex": "#000000F2"
|
|
876
|
+
}
|
|
915
877
|
}
|
|
916
878
|
}
|
|
917
879
|
},
|
|
@@ -1041,21 +1003,6 @@
|
|
|
1041
1003
|
}
|
|
1042
1004
|
}
|
|
1043
1005
|
},
|
|
1044
|
-
"fg": {
|
|
1045
|
-
"100": {
|
|
1046
|
-
"$type": "color",
|
|
1047
|
-
"$value": {
|
|
1048
|
-
"colorSpace": "srgb",
|
|
1049
|
-
"components": [
|
|
1050
|
-
0,
|
|
1051
|
-
0,
|
|
1052
|
-
0
|
|
1053
|
-
],
|
|
1054
|
-
"alpha": 0.9490196078431372,
|
|
1055
|
-
"hex": "#000000F2"
|
|
1056
|
-
}
|
|
1057
|
-
}
|
|
1058
|
-
},
|
|
1059
1006
|
"text": {
|
|
1060
1007
|
"100": {
|
|
1061
1008
|
"$type": "color",
|
|
@@ -1082,6 +1029,19 @@
|
|
|
1082
1029
|
"alpha": 1,
|
|
1083
1030
|
"hex": "#50E3FF"
|
|
1084
1031
|
}
|
|
1032
|
+
},
|
|
1033
|
+
"fg": {
|
|
1034
|
+
"$type": "color",
|
|
1035
|
+
"$value": {
|
|
1036
|
+
"colorSpace": "srgb",
|
|
1037
|
+
"components": [
|
|
1038
|
+
0,
|
|
1039
|
+
0,
|
|
1040
|
+
0
|
|
1041
|
+
],
|
|
1042
|
+
"alpha": 0.9490196078431372,
|
|
1043
|
+
"hex": "#000000F2"
|
|
1044
|
+
}
|
|
1085
1045
|
}
|
|
1086
1046
|
}
|
|
1087
1047
|
},
|
|
@@ -1211,21 +1171,6 @@
|
|
|
1211
1171
|
}
|
|
1212
1172
|
}
|
|
1213
1173
|
},
|
|
1214
|
-
"fg": {
|
|
1215
|
-
"100": {
|
|
1216
|
-
"$type": "color",
|
|
1217
|
-
"$value": {
|
|
1218
|
-
"colorSpace": "srgb",
|
|
1219
|
-
"components": [
|
|
1220
|
-
1,
|
|
1221
|
-
1,
|
|
1222
|
-
1
|
|
1223
|
-
],
|
|
1224
|
-
"alpha": 1,
|
|
1225
|
-
"hex": "#FFFFFF"
|
|
1226
|
-
}
|
|
1227
|
-
}
|
|
1228
|
-
},
|
|
1229
1174
|
"text": {
|
|
1230
1175
|
"100": {
|
|
1231
1176
|
"$type": "color",
|
|
@@ -1252,6 +1197,19 @@
|
|
|
1252
1197
|
"alpha": 1,
|
|
1253
1198
|
"hex": "#C2CFE3"
|
|
1254
1199
|
}
|
|
1200
|
+
},
|
|
1201
|
+
"fg": {
|
|
1202
|
+
"$type": "color",
|
|
1203
|
+
"$value": {
|
|
1204
|
+
"colorSpace": "srgb",
|
|
1205
|
+
"components": [
|
|
1206
|
+
1,
|
|
1207
|
+
1,
|
|
1208
|
+
1
|
|
1209
|
+
],
|
|
1210
|
+
"alpha": 1,
|
|
1211
|
+
"hex": "#FFFFFF"
|
|
1212
|
+
}
|
|
1255
1213
|
}
|
|
1256
1214
|
}
|
|
1257
1215
|
},
|
|
@@ -1381,21 +1339,6 @@
|
|
|
1381
1339
|
}
|
|
1382
1340
|
}
|
|
1383
1341
|
},
|
|
1384
|
-
"fg": {
|
|
1385
|
-
"100": {
|
|
1386
|
-
"$type": "color",
|
|
1387
|
-
"$value": {
|
|
1388
|
-
"colorSpace": "srgb",
|
|
1389
|
-
"components": [
|
|
1390
|
-
0,
|
|
1391
|
-
0,
|
|
1392
|
-
0
|
|
1393
|
-
],
|
|
1394
|
-
"alpha": 1,
|
|
1395
|
-
"hex": "#000000"
|
|
1396
|
-
}
|
|
1397
|
-
}
|
|
1398
|
-
},
|
|
1399
1342
|
"text": {
|
|
1400
1343
|
"100": {
|
|
1401
1344
|
"$type": "color",
|
|
@@ -1422,6 +1365,19 @@
|
|
|
1422
1365
|
"alpha": 1,
|
|
1423
1366
|
"hex": "#FFBD93"
|
|
1424
1367
|
}
|
|
1368
|
+
},
|
|
1369
|
+
"fg": {
|
|
1370
|
+
"$type": "color",
|
|
1371
|
+
"$value": {
|
|
1372
|
+
"colorSpace": "srgb",
|
|
1373
|
+
"components": [
|
|
1374
|
+
0,
|
|
1375
|
+
0,
|
|
1376
|
+
0
|
|
1377
|
+
],
|
|
1378
|
+
"alpha": 1,
|
|
1379
|
+
"hex": "#000000"
|
|
1380
|
+
}
|
|
1425
1381
|
}
|
|
1426
1382
|
}
|
|
1427
1383
|
},
|
|
@@ -1551,21 +1507,6 @@
|
|
|
1551
1507
|
}
|
|
1552
1508
|
}
|
|
1553
1509
|
},
|
|
1554
|
-
"fg": {
|
|
1555
|
-
"100": {
|
|
1556
|
-
"$type": "color",
|
|
1557
|
-
"$value": {
|
|
1558
|
-
"colorSpace": "srgb",
|
|
1559
|
-
"components": [
|
|
1560
|
-
0,
|
|
1561
|
-
0,
|
|
1562
|
-
0
|
|
1563
|
-
],
|
|
1564
|
-
"alpha": 1,
|
|
1565
|
-
"hex": "#000000"
|
|
1566
|
-
}
|
|
1567
|
-
}
|
|
1568
|
-
},
|
|
1569
1510
|
"text": {
|
|
1570
1511
|
"100": {
|
|
1571
1512
|
"$type": "color",
|
|
@@ -1592,6 +1533,19 @@
|
|
|
1592
1533
|
"alpha": 1,
|
|
1593
1534
|
"hex": "#CFC4FF"
|
|
1594
1535
|
}
|
|
1536
|
+
},
|
|
1537
|
+
"fg": {
|
|
1538
|
+
"$type": "color",
|
|
1539
|
+
"$value": {
|
|
1540
|
+
"colorSpace": "srgb",
|
|
1541
|
+
"components": [
|
|
1542
|
+
0,
|
|
1543
|
+
0,
|
|
1544
|
+
0
|
|
1545
|
+
],
|
|
1546
|
+
"alpha": 1,
|
|
1547
|
+
"hex": "#000000"
|
|
1548
|
+
}
|
|
1595
1549
|
}
|
|
1596
1550
|
}
|
|
1597
1551
|
},
|