@skbkontur/colors 1.1.2-75bba.0 → 1.1.2-b2742.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/dist/cjs/constants/default-swatch.d.ts +5 -3
- package/dist/cjs/constants/default-swatch.js +5 -3
- package/dist/cjs/constants/interaction-settings.d.ts +8 -0
- package/dist/cjs/constants/interaction-settings.js +11 -0
- package/dist/cjs/get-base-tokens.js +15 -37
- package/dist/cjs/get-colors.d.ts +17 -0
- package/dist/cjs/get-colors.js +16 -0
- package/dist/cjs/get-default-tokens.d.ts +600 -1271
- package/dist/cjs/get-default-tokens.js +601 -1272
- package/dist/cjs/helpers/get-interactions.d.ts +7 -0
- package/dist/cjs/helpers/get-interactions.js +40 -0
- package/dist/cjs/helpers/get-palette.d.ts +2 -0
- package/dist/cjs/types/base-tokens.d.ts +6 -5
- package/dist/esm/constants/default-swatch.d.ts +5 -3
- package/dist/esm/constants/default-swatch.js +5 -3
- package/dist/esm/constants/interaction-settings.d.ts +8 -0
- package/dist/esm/constants/interaction-settings.js +8 -0
- package/dist/esm/get-base-tokens.js +15 -37
- package/dist/esm/get-colors.d.ts +17 -0
- package/dist/esm/get-colors.js +12 -0
- package/dist/esm/get-default-tokens.d.ts +600 -1271
- package/dist/esm/get-default-tokens.js +601 -1272
- package/dist/esm/helpers/get-interactions.d.ts +7 -0
- package/dist/esm/helpers/get-interactions.js +35 -0
- package/dist/esm/helpers/get-palette.d.ts +2 -0
- package/dist/esm/types/base-tokens.d.ts +6 -5
- package/package.json +5 -4
- package/dist/cjs/get-tokens.d.ts +0 -15
- package/dist/cjs/get-tokens.js +0 -13
- package/dist/esm/get-tokens.d.ts +0 -15
- package/dist/esm/get-tokens.js +0 -9
|
@@ -1,1278 +1,607 @@
|
|
|
1
1
|
import type { BaseTokens } from './types/base-tokens';
|
|
2
2
|
export declare const getDefaultTokens: (base: BaseTokens) => {
|
|
3
3
|
light: {
|
|
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
|
-
hover: {
|
|
307
|
-
neutral: {
|
|
308
|
-
heavy: string;
|
|
309
|
-
soft: {
|
|
310
|
-
alpha: string;
|
|
311
|
-
};
|
|
312
|
-
pale: {
|
|
313
|
-
alpha: string;
|
|
314
|
-
};
|
|
315
|
-
backless: string;
|
|
316
|
-
};
|
|
317
|
-
};
|
|
318
|
-
pressed: {
|
|
319
|
-
neutral: {
|
|
320
|
-
heavy: string;
|
|
321
|
-
soft: {
|
|
322
|
-
alpha: string;
|
|
323
|
-
};
|
|
324
|
-
pale: {
|
|
325
|
-
alpha: string;
|
|
326
|
-
};
|
|
327
|
-
backless: string;
|
|
328
|
-
};
|
|
329
|
-
};
|
|
330
|
-
disabled: {
|
|
331
|
-
neutral: string;
|
|
332
|
-
};
|
|
333
|
-
};
|
|
334
|
-
shapeConst: {
|
|
335
|
-
default: {
|
|
336
|
-
neutral: {
|
|
337
|
-
heavy: {
|
|
338
|
-
black: string;
|
|
339
|
-
white: string;
|
|
340
|
-
};
|
|
341
|
-
soft: {
|
|
342
|
-
black: string;
|
|
343
|
-
white: string;
|
|
344
|
-
};
|
|
345
|
-
pale: {
|
|
346
|
-
black: string;
|
|
347
|
-
white: string;
|
|
348
|
-
};
|
|
349
|
-
};
|
|
350
|
-
};
|
|
351
|
-
hover: {
|
|
352
|
-
neutral: {
|
|
353
|
-
heavy: {
|
|
354
|
-
black: string;
|
|
355
|
-
white: string;
|
|
356
|
-
};
|
|
357
|
-
soft: {
|
|
358
|
-
black: string;
|
|
359
|
-
white: string;
|
|
360
|
-
};
|
|
361
|
-
pale: {
|
|
362
|
-
black: string;
|
|
363
|
-
white: string;
|
|
364
|
-
};
|
|
365
|
-
backless: {
|
|
366
|
-
black: string;
|
|
367
|
-
white: string;
|
|
368
|
-
};
|
|
369
|
-
};
|
|
370
|
-
};
|
|
371
|
-
pressed: {
|
|
372
|
-
neutral: {
|
|
373
|
-
heavy: {
|
|
374
|
-
black: string;
|
|
375
|
-
white: string;
|
|
376
|
-
};
|
|
377
|
-
soft: {
|
|
378
|
-
black: string;
|
|
379
|
-
white: string;
|
|
380
|
-
};
|
|
381
|
-
pale: {
|
|
382
|
-
black: string;
|
|
383
|
-
white: string;
|
|
384
|
-
};
|
|
385
|
-
backless: {
|
|
386
|
-
black: string;
|
|
387
|
-
white: string;
|
|
388
|
-
};
|
|
389
|
-
};
|
|
390
|
-
};
|
|
391
|
-
};
|
|
392
|
-
line: {
|
|
393
|
-
default: {
|
|
394
|
-
neutral: {
|
|
395
|
-
pale: string;
|
|
396
|
-
faint: string;
|
|
397
|
-
};
|
|
398
|
-
warning: {
|
|
399
|
-
bold: string;
|
|
400
|
-
};
|
|
401
|
-
error: {
|
|
402
|
-
bold: string;
|
|
403
|
-
};
|
|
404
|
-
success: {
|
|
405
|
-
bold: string;
|
|
406
|
-
};
|
|
407
|
-
accent: {
|
|
408
|
-
bold: string;
|
|
409
|
-
pale: string;
|
|
410
|
-
faint: string;
|
|
411
|
-
};
|
|
412
|
-
brand: {
|
|
413
|
-
original: string;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
|
-
hover: {
|
|
417
|
-
neutral: {
|
|
418
|
-
pale: string;
|
|
419
|
-
};
|
|
420
|
-
warning: {
|
|
421
|
-
bold: string;
|
|
422
|
-
};
|
|
423
|
-
error: {
|
|
424
|
-
bold: string;
|
|
425
|
-
};
|
|
426
|
-
success: {
|
|
427
|
-
bold: string;
|
|
428
|
-
};
|
|
429
|
-
accent: {
|
|
430
|
-
bold: string;
|
|
431
|
-
pale: string;
|
|
432
|
-
faint: string;
|
|
433
|
-
};
|
|
434
|
-
};
|
|
435
|
-
pressed: {
|
|
436
|
-
neutral: {
|
|
437
|
-
pale: string;
|
|
438
|
-
};
|
|
439
|
-
warning: {
|
|
440
|
-
bold: string;
|
|
441
|
-
};
|
|
442
|
-
error: {
|
|
443
|
-
bold: string;
|
|
444
|
-
};
|
|
445
|
-
success: {
|
|
446
|
-
bold: string;
|
|
447
|
-
};
|
|
448
|
-
accent: {
|
|
449
|
-
bold: string;
|
|
450
|
-
pale: string;
|
|
451
|
-
faint: string;
|
|
452
|
-
};
|
|
453
|
-
};
|
|
454
|
-
};
|
|
455
|
-
lineInverted: {
|
|
456
|
-
default: {
|
|
457
|
-
neutral: {
|
|
458
|
-
pale: string;
|
|
459
|
-
faint: string;
|
|
460
|
-
};
|
|
461
|
-
warning: {
|
|
462
|
-
bold: string;
|
|
463
|
-
};
|
|
464
|
-
error: {
|
|
465
|
-
bold: string;
|
|
466
|
-
};
|
|
467
|
-
success: {
|
|
468
|
-
bold: string;
|
|
469
|
-
};
|
|
470
|
-
accent: {
|
|
471
|
-
bold: string;
|
|
472
|
-
pale: string;
|
|
473
|
-
faint: string;
|
|
474
|
-
};
|
|
475
|
-
brand: {
|
|
476
|
-
original: string;
|
|
477
|
-
};
|
|
478
|
-
};
|
|
479
|
-
hover: {
|
|
480
|
-
neutral: {
|
|
481
|
-
pale: string;
|
|
482
|
-
};
|
|
483
|
-
warning: {
|
|
484
|
-
bold: string;
|
|
485
|
-
};
|
|
486
|
-
error: {
|
|
487
|
-
bold: string;
|
|
488
|
-
};
|
|
489
|
-
success: {
|
|
490
|
-
bold: string;
|
|
491
|
-
};
|
|
492
|
-
accent: {
|
|
493
|
-
bold: string;
|
|
494
|
-
pale: string;
|
|
495
|
-
faint: string;
|
|
496
|
-
};
|
|
497
|
-
};
|
|
498
|
-
pressed: {
|
|
499
|
-
neutral: {
|
|
500
|
-
pale: string;
|
|
501
|
-
};
|
|
502
|
-
warning: {
|
|
503
|
-
bold: string;
|
|
504
|
-
};
|
|
505
|
-
error: {
|
|
506
|
-
bold: string;
|
|
507
|
-
};
|
|
508
|
-
success: {
|
|
509
|
-
bold: string;
|
|
510
|
-
};
|
|
511
|
-
accent: {
|
|
512
|
-
bold: string;
|
|
513
|
-
pale: string;
|
|
514
|
-
faint: string;
|
|
515
|
-
};
|
|
516
|
-
};
|
|
517
|
-
};
|
|
518
|
-
lineConst: {
|
|
519
|
-
default: {
|
|
520
|
-
neutral: {
|
|
521
|
-
pale: {
|
|
522
|
-
black: string;
|
|
523
|
-
white: string;
|
|
524
|
-
};
|
|
525
|
-
faint: {
|
|
526
|
-
black: string;
|
|
527
|
-
white: string;
|
|
528
|
-
};
|
|
529
|
-
};
|
|
530
|
-
};
|
|
531
|
-
hover: {
|
|
532
|
-
neutral: {
|
|
533
|
-
pale: {
|
|
534
|
-
black: string;
|
|
535
|
-
white: string;
|
|
536
|
-
};
|
|
537
|
-
faint: {
|
|
538
|
-
black: string;
|
|
539
|
-
white: string;
|
|
540
|
-
};
|
|
541
|
-
};
|
|
542
|
-
};
|
|
543
|
-
pressed: {
|
|
544
|
-
neutral: {
|
|
545
|
-
pale: {
|
|
546
|
-
black: string;
|
|
547
|
-
white: string;
|
|
548
|
-
};
|
|
549
|
-
faint: {
|
|
550
|
-
black: string;
|
|
551
|
-
white: string;
|
|
552
|
-
};
|
|
553
|
-
};
|
|
554
|
-
};
|
|
555
|
-
};
|
|
556
|
-
surface: {
|
|
557
|
-
low: string;
|
|
558
|
-
base: string;
|
|
559
|
-
high: string;
|
|
560
|
-
modalBackdrop: string;
|
|
561
|
-
};
|
|
562
|
-
art: {
|
|
563
|
-
neutral: string;
|
|
564
|
-
invertedNeutral: string;
|
|
565
|
-
brand: string;
|
|
566
|
-
promo: string;
|
|
567
|
-
onBrand: string;
|
|
568
|
-
};
|
|
569
|
-
artConst: {
|
|
570
|
-
promo: string;
|
|
571
|
-
black: string;
|
|
572
|
-
white: string;
|
|
573
|
-
};
|
|
574
|
-
customizable: {
|
|
575
|
-
red: {
|
|
576
|
-
heavy: string;
|
|
577
|
-
bold: string;
|
|
578
|
-
soft: string;
|
|
579
|
-
pale: string;
|
|
580
|
-
faint: string;
|
|
581
|
-
};
|
|
582
|
-
orange: {
|
|
583
|
-
heavy: string;
|
|
584
|
-
bold: string;
|
|
585
|
-
soft: string;
|
|
586
|
-
pale: string;
|
|
587
|
-
faint: string;
|
|
588
|
-
};
|
|
589
|
-
green: {
|
|
590
|
-
heavy: string;
|
|
591
|
-
bold: string;
|
|
592
|
-
soft: string;
|
|
593
|
-
pale: string;
|
|
594
|
-
faint: string;
|
|
595
|
-
};
|
|
596
|
-
mint: {
|
|
597
|
-
heavy: string;
|
|
598
|
-
bold: string;
|
|
599
|
-
soft: string;
|
|
600
|
-
pale: string;
|
|
601
|
-
faint: string;
|
|
602
|
-
};
|
|
603
|
-
blue: {
|
|
604
|
-
heavy: string;
|
|
605
|
-
bold: string;
|
|
606
|
-
soft: string;
|
|
607
|
-
pale: string;
|
|
608
|
-
faint: string;
|
|
609
|
-
};
|
|
610
|
-
blueDeep: {
|
|
611
|
-
heavy: string;
|
|
612
|
-
bold: string;
|
|
613
|
-
soft: string;
|
|
614
|
-
pale: string;
|
|
615
|
-
faint: string;
|
|
616
|
-
};
|
|
617
|
-
violet: {
|
|
618
|
-
heavy: string;
|
|
619
|
-
bold: string;
|
|
620
|
-
soft: string;
|
|
621
|
-
pale: string;
|
|
622
|
-
faint: string;
|
|
623
|
-
};
|
|
624
|
-
purple: {
|
|
625
|
-
heavy: string;
|
|
626
|
-
bold: string;
|
|
627
|
-
soft: string;
|
|
628
|
-
pale: string;
|
|
629
|
-
faint: string;
|
|
630
|
-
};
|
|
631
|
-
};
|
|
4
|
+
textAccentPrimary: string;
|
|
5
|
+
textAccentPrimaryHover: string;
|
|
6
|
+
textAccentPrimaryPressed: string;
|
|
7
|
+
textDisabled: string;
|
|
8
|
+
textErrorPrimary: string;
|
|
9
|
+
textErrorPrimaryHover: string;
|
|
10
|
+
textErrorPrimaryPressed: string;
|
|
11
|
+
textInvertedAccentPrimary: string;
|
|
12
|
+
textInvertedAccentPrimaryHover: string;
|
|
13
|
+
textInvertedAccentPrimaryPressed: string;
|
|
14
|
+
textInvertedDisabled: string;
|
|
15
|
+
textInvertedErrorPrimary: string;
|
|
16
|
+
textInvertedErrorPrimaryHover: string;
|
|
17
|
+
textInvertedErrorPrimaryPressed: string;
|
|
18
|
+
textInvertedNeutralPrimary: string;
|
|
19
|
+
textInvertedNeutralSecondary: string;
|
|
20
|
+
textInvertedSuccessPrimary: string;
|
|
21
|
+
textInvertedSuccessPrimaryHover: string;
|
|
22
|
+
textInvertedSuccessPrimaryPressed: string;
|
|
23
|
+
textInvertedWarningPrimary: string;
|
|
24
|
+
textInvertedWarningPrimaryHover: string;
|
|
25
|
+
textInvertedWarningPrimaryPressed: string;
|
|
26
|
+
textLogo: string;
|
|
27
|
+
textNeutralPrimary: string;
|
|
28
|
+
textNeutralSecondary: string;
|
|
29
|
+
textOnaccentboldDisabled: string;
|
|
30
|
+
textOnaccentboldPrimary: string;
|
|
31
|
+
textOnaccentboldSecondary: string;
|
|
32
|
+
textOnbrandoriginalDisabled: string;
|
|
33
|
+
textOnbrandoriginalPrimary: string;
|
|
34
|
+
textOnbrandoriginalSecondary: string;
|
|
35
|
+
textSuccessPrimary: string;
|
|
36
|
+
textSuccessPrimaryHover: string;
|
|
37
|
+
textSuccessPrimaryPressed: string;
|
|
38
|
+
textWarningPrimary: string;
|
|
39
|
+
textWarningPrimaryHover: string;
|
|
40
|
+
textWarningPrimaryPressed: string;
|
|
41
|
+
textConstDisabledBlack: string;
|
|
42
|
+
textConstDisabledWhite: string;
|
|
43
|
+
textConstPrimaryBlack: string;
|
|
44
|
+
textConstPrimaryWhite: string;
|
|
45
|
+
textConstSecondaryBlack: string;
|
|
46
|
+
textConstSecondaryWhite: string;
|
|
47
|
+
shapeBoldAccent: string;
|
|
48
|
+
shapeBoldAccentHover: string;
|
|
49
|
+
shapeBoldAccentPressed: string;
|
|
50
|
+
shapeBoldBrandOriginal: string;
|
|
51
|
+
shapeBoldBrandOriginalHover: string;
|
|
52
|
+
shapeBoldBrandOriginalPressed: string;
|
|
53
|
+
shapeBoldError: string;
|
|
54
|
+
shapeBoldErrorHover: string;
|
|
55
|
+
shapeBoldErrorPressed: string;
|
|
56
|
+
shapeBoldNeutral: string;
|
|
57
|
+
shapeBoldNeutralHover: string;
|
|
58
|
+
shapeBoldNeutralPressed: string;
|
|
59
|
+
shapeBoldSuccess: string;
|
|
60
|
+
shapeBoldSuccessHover: string;
|
|
61
|
+
shapeBoldSuccessPressed: string;
|
|
62
|
+
shapeBoldWarning: string;
|
|
63
|
+
shapeBoldWarningHover: string;
|
|
64
|
+
shapeBoldWarningPressed: string;
|
|
65
|
+
shapeFaintAccent: string;
|
|
66
|
+
shapeFaintAccentHover: string;
|
|
67
|
+
shapeFaintAccentPressed: string;
|
|
68
|
+
shapeFaintBrand: string;
|
|
69
|
+
shapeFaintBrandHover: string;
|
|
70
|
+
shapeFaintBrandPressed: string;
|
|
71
|
+
shapeFaintError: string;
|
|
72
|
+
shapeFaintErrorHover: string;
|
|
73
|
+
shapeFaintErrorPressed: string;
|
|
74
|
+
shapeFaintNeutralAlpha: string;
|
|
75
|
+
shapeFaintNeutralAlphaHover: string;
|
|
76
|
+
shapeFaintNeutralAlphaPressed: string;
|
|
77
|
+
shapeFaintSuccess: string;
|
|
78
|
+
shapeFaintSuccessHover: string;
|
|
79
|
+
shapeFaintSuccessPressed: string;
|
|
80
|
+
shapeFaintWarning: string;
|
|
81
|
+
shapeFaintWarningHover: string;
|
|
82
|
+
shapeFaintWarningPressed: string;
|
|
83
|
+
shapeHeavyError: string;
|
|
84
|
+
shapeHeavyNeutral: string;
|
|
85
|
+
shapeHeavySuccess: string;
|
|
86
|
+
shapeHeavyWarning: string;
|
|
87
|
+
shapeOtherAccentBoldDisabled: string;
|
|
88
|
+
shapeOtherBacklessHover: string;
|
|
89
|
+
shapeOtherBacklessPressed: string;
|
|
90
|
+
shapeOtherBase: string;
|
|
91
|
+
shapeOtherBaseHover: string;
|
|
92
|
+
shapeOtherBasePressed: string;
|
|
93
|
+
shapeOtherDisabled: string;
|
|
94
|
+
shapeOtherField: string;
|
|
95
|
+
shapeOtherLow: string;
|
|
96
|
+
shapeOtherLowHover: string;
|
|
97
|
+
shapeOtherLowPressed: string;
|
|
98
|
+
shapeOtherNeutralFaintSolid: string;
|
|
99
|
+
shapeOtherNeutralFaintSolidHover: string;
|
|
100
|
+
shapeOtherNeutralFaintSolidPressed: string;
|
|
101
|
+
shapeOtherNeutralPaleSolid: string;
|
|
102
|
+
shapeOtherNeutralPaleSolidHover: string;
|
|
103
|
+
shapeOtherNeutralPaleSolidPressed: string;
|
|
104
|
+
shapeOtherNeutralSoftSolid: string;
|
|
105
|
+
shapeOtherNeutralSoftSolidHover: string;
|
|
106
|
+
shapeOtherNeutralSoftSolidPressed: string;
|
|
107
|
+
shapePaleAccent: string;
|
|
108
|
+
shapePaleAccentHover: string;
|
|
109
|
+
shapePaleAccentPressed: string;
|
|
110
|
+
shapePaleBrand: string;
|
|
111
|
+
shapePaleBrandHover: string;
|
|
112
|
+
shapePaleBrandPressed: string;
|
|
113
|
+
shapePaleError: string;
|
|
114
|
+
shapePaleErrorHover: string;
|
|
115
|
+
shapePaleErrorPressed: string;
|
|
116
|
+
shapePaleNeutralAlpha: string;
|
|
117
|
+
shapePaleNeutralAlphaHover: string;
|
|
118
|
+
shapePaleNeutralAlphaPressed: string;
|
|
119
|
+
shapePaleSuccess: string;
|
|
120
|
+
shapePaleSuccessHover: string;
|
|
121
|
+
shapePaleSuccessPressed: string;
|
|
122
|
+
shapePaleWarning: string;
|
|
123
|
+
shapePaleWarningHover: string;
|
|
124
|
+
shapePaleWarningPressed: string;
|
|
125
|
+
shapeSoftAccent: string;
|
|
126
|
+
shapeSoftAccentHover: string;
|
|
127
|
+
shapeSoftAccentPressed: string;
|
|
128
|
+
shapeSoftBrand: string;
|
|
129
|
+
shapeSoftBrandHover: string;
|
|
130
|
+
shapeSoftBrandPressed: string;
|
|
131
|
+
shapeSoftError: string;
|
|
132
|
+
shapeSoftErrorHover: string;
|
|
133
|
+
shapeSoftErrorPressed: string;
|
|
134
|
+
shapeSoftNeutralAlpha: string;
|
|
135
|
+
shapeSoftNeutralAlphaHover: string;
|
|
136
|
+
shapeSoftNeutralAlphaPressed: string;
|
|
137
|
+
shapeSoftSuccess: string;
|
|
138
|
+
shapeSoftSuccessHover: string;
|
|
139
|
+
shapeSoftSuccessPressed: string;
|
|
140
|
+
shapeSoftWarning: string;
|
|
141
|
+
shapeSoftWarningHover: string;
|
|
142
|
+
shapeSoftWarningPressed: string;
|
|
143
|
+
shapeInvertedBacklessHover: string;
|
|
144
|
+
shapeInvertedBacklessPressed: string;
|
|
145
|
+
shapeInvertedDisabled: string;
|
|
146
|
+
shapeInvertedNeutralHeavy: string;
|
|
147
|
+
shapeInvertedNeutralHeavyHover: string;
|
|
148
|
+
shapeInvertedNeutralHeavyPressed: string;
|
|
149
|
+
shapeInvertedNeutralPaleAlpha: string;
|
|
150
|
+
shapeInvertedNeutralPaleAlphaHover: string;
|
|
151
|
+
shapeInvertedNeutralPaleAlphaPressed: string;
|
|
152
|
+
shapeInvertedNeutralSoftAlpha: string;
|
|
153
|
+
shapeInvertedNeutralSoftAlphaHover: string;
|
|
154
|
+
shapeInvertedNeutralSoftAlphaPressed: string;
|
|
155
|
+
shapeConstBacklessBlackHover: string;
|
|
156
|
+
shapeConstBacklessBlackPressed: string;
|
|
157
|
+
shapeConstBacklessWhiteHover: string;
|
|
158
|
+
shapeConstBacklessWhitePressed: string;
|
|
159
|
+
shapeConstDisabledBlack: string;
|
|
160
|
+
shapeConstDisabledWhite: string;
|
|
161
|
+
shapeConstHeavyBlack: string;
|
|
162
|
+
shapeConstHeavyBlackHover: string;
|
|
163
|
+
shapeConstHeavyBlackPressed: string;
|
|
164
|
+
shapeConstHeavyWhite: string;
|
|
165
|
+
shapeConstHeavyWhiteHover: string;
|
|
166
|
+
shapeConstHeavyWhitePressed: string;
|
|
167
|
+
shapeConstPaleBlack: string;
|
|
168
|
+
shapeConstPaleBlackHover: string;
|
|
169
|
+
shapeConstPaleBlackPressed: string;
|
|
170
|
+
shapeConstPaleWhite: string;
|
|
171
|
+
shapeConstPaleWhiteHover: string;
|
|
172
|
+
shapeConstPaleWhitePressed: string;
|
|
173
|
+
shapeConstPromo: string;
|
|
174
|
+
shapeConstSoftBlack: string;
|
|
175
|
+
shapeConstSoftBlackHover: string;
|
|
176
|
+
shapeConstSoftBlackPressed: string;
|
|
177
|
+
shapeConstSoftWhite: string;
|
|
178
|
+
shapeConstSoftWhiteHover: string;
|
|
179
|
+
shapeConstSoftWhitePressed: string;
|
|
180
|
+
lineAccentBold: string;
|
|
181
|
+
lineAccentBoldHover: string;
|
|
182
|
+
lineAccentBoldPressed: string;
|
|
183
|
+
lineAccentPale: string;
|
|
184
|
+
lineAccentPaleHover: string;
|
|
185
|
+
lineAccentPalePressed: string;
|
|
186
|
+
lineAccentSoft: string;
|
|
187
|
+
lineAccentSoftHover: string;
|
|
188
|
+
lineAccentSoftPressed: string;
|
|
189
|
+
lineBrandOriginal: string;
|
|
190
|
+
lineErrorBold: string;
|
|
191
|
+
lineErrorBoldHover: string;
|
|
192
|
+
lineErrorBoldPressed: string;
|
|
193
|
+
lineNeutralFaint: string;
|
|
194
|
+
lineNeutralPale: string;
|
|
195
|
+
lineNeutralPaleHover: string;
|
|
196
|
+
lineNeutralPalePressed: string;
|
|
197
|
+
lineOnaccentboldFaint: string;
|
|
198
|
+
lineOnaccentboldPale: string;
|
|
199
|
+
lineOnbrandoriginalFaint: string;
|
|
200
|
+
lineOnbrandoriginalPale: string;
|
|
201
|
+
lineSuccessBold: string;
|
|
202
|
+
lineSuccessBoldHover: string;
|
|
203
|
+
lineSuccessBoldPressed: string;
|
|
204
|
+
lineWarningBold: string;
|
|
205
|
+
lineWarningBoldHover: string;
|
|
206
|
+
lineWarningBoldPressed: string;
|
|
207
|
+
lineInvertedAccentBold: string;
|
|
208
|
+
lineInvertedAccentBoldHover: string;
|
|
209
|
+
lineInvertedAccentBoldPressed: string;
|
|
210
|
+
lineInvertedAccentPale: string;
|
|
211
|
+
lineInvertedAccentPaleHover: string;
|
|
212
|
+
lineInvertedAccentPalePressed: string;
|
|
213
|
+
lineInvertedAccentSoft: string;
|
|
214
|
+
lineInvertedAccentSoftHover: string;
|
|
215
|
+
lineInvertedAccentSoftPressed: string;
|
|
216
|
+
lineInvertedErrorBold: string;
|
|
217
|
+
lineInvertedErrorBoldHover: string;
|
|
218
|
+
lineInvertedErrorBoldPressed: string;
|
|
219
|
+
lineInvertedNeutralFaint: string;
|
|
220
|
+
lineInvertedNeutralPale: string;
|
|
221
|
+
lineInvertedNeutralPaleHover: string;
|
|
222
|
+
lineInvertedNeutralPalePressed: string;
|
|
223
|
+
lineInvertedSuccessBold: string;
|
|
224
|
+
lineInvertedSuccessBoldHover: string;
|
|
225
|
+
lineInvertedSuccessBoldPressed: string;
|
|
226
|
+
lineInvertedWarningBold: string;
|
|
227
|
+
lineInvertedWarningBoldHover: string;
|
|
228
|
+
lineInvertedWarningBoldPressed: string;
|
|
229
|
+
lineConstFaintBlack: string;
|
|
230
|
+
lineConstFaintWhite: string;
|
|
231
|
+
lineConstPaleBlack: string;
|
|
232
|
+
lineConstPaleBlackHover: string;
|
|
233
|
+
lineConstPaleBlackPressed: string;
|
|
234
|
+
lineConstPaleWhite: string;
|
|
235
|
+
lineConstPaleWhiteHover: string;
|
|
236
|
+
lineConstPaleWhitePressed: string;
|
|
237
|
+
surfaceBase: string;
|
|
238
|
+
surfaceHigh: string;
|
|
239
|
+
surfaceLow: string;
|
|
240
|
+
surfaceModalBackdrop: string;
|
|
241
|
+
illustrationBlack: string;
|
|
242
|
+
illustrationBrand: string;
|
|
243
|
+
illustrationComplement: string;
|
|
244
|
+
illustrationOnBrand: string;
|
|
245
|
+
illustrationOncomplement: string;
|
|
246
|
+
illustrationPromo: string;
|
|
247
|
+
illustrationSymbol: string;
|
|
248
|
+
illustrationWhite: string;
|
|
249
|
+
customizableBoldBlack: string;
|
|
250
|
+
customizableBoldBlue: string;
|
|
251
|
+
customizableBoldBlueDeep: string;
|
|
252
|
+
customizableBoldGray: string;
|
|
253
|
+
customizableBoldGreen: string;
|
|
254
|
+
customizableBoldMint: string;
|
|
255
|
+
customizableBoldOrange: string;
|
|
256
|
+
customizableBoldPurple: string;
|
|
257
|
+
customizableBoldRed: string;
|
|
258
|
+
customizableBoldViolet: string;
|
|
259
|
+
customizableBoldYellow: string;
|
|
260
|
+
customizableFaintBlack: string;
|
|
261
|
+
customizableFaintBlue: string;
|
|
262
|
+
customizableFaintBlueDeep: string;
|
|
263
|
+
customizableFaintGray: string;
|
|
264
|
+
customizableFaintGreen: string;
|
|
265
|
+
customizableFaintMint: string;
|
|
266
|
+
customizableFaintOrange: string;
|
|
267
|
+
customizableFaintPurple: string;
|
|
268
|
+
customizableFaintRed: string;
|
|
269
|
+
customizableFaintViolet: string;
|
|
270
|
+
customizableFaintYellow: string;
|
|
271
|
+
customizableHeavyBlack: string;
|
|
272
|
+
customizableHeavyBlue: string;
|
|
273
|
+
customizableHeavyBlueDeep: string;
|
|
274
|
+
customizableHeavyGray: string;
|
|
275
|
+
customizableHeavyGreen: string;
|
|
276
|
+
customizableHeavyMint: string;
|
|
277
|
+
customizableHeavyOrange: string;
|
|
278
|
+
customizableHeavyPurple: string;
|
|
279
|
+
customizableHeavyRed: string;
|
|
280
|
+
customizableHeavyViolet: string;
|
|
281
|
+
customizableHeavyYellow: string;
|
|
282
|
+
customizablePaleBlack: string;
|
|
283
|
+
customizablePaleBlue: string;
|
|
284
|
+
customizablePaleBlueDeep: string;
|
|
285
|
+
customizablePaleGray: string;
|
|
286
|
+
customizablePaleGreen: string;
|
|
287
|
+
customizablePaleMint: string;
|
|
288
|
+
customizablePaleOrange: string;
|
|
289
|
+
customizablePalePurple: string;
|
|
290
|
+
customizablePaleRed: string;
|
|
291
|
+
customizablePaleViolet: string;
|
|
292
|
+
customizablePaleYellow: string;
|
|
293
|
+
customizableSoftBlack: string;
|
|
294
|
+
customizableSoftBlue: string;
|
|
295
|
+
customizableSoftBlueDeep: string;
|
|
296
|
+
customizableSoftGray: string;
|
|
297
|
+
customizableSoftGreen: string;
|
|
298
|
+
customizableSoftMint: string;
|
|
299
|
+
customizableSoftOrange: string;
|
|
300
|
+
customizableSoftPurple: string;
|
|
301
|
+
customizableSoftRed: string;
|
|
302
|
+
customizableSoftViolet: string;
|
|
303
|
+
customizableSoftYellow: string;
|
|
632
304
|
};
|
|
633
305
|
dark: {
|
|
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
|
-
hover: {
|
|
938
|
-
neutral: {
|
|
939
|
-
heavy: string;
|
|
940
|
-
soft: {
|
|
941
|
-
alpha: string;
|
|
942
|
-
};
|
|
943
|
-
pale: {
|
|
944
|
-
alpha: string;
|
|
945
|
-
};
|
|
946
|
-
backless: string;
|
|
947
|
-
};
|
|
948
|
-
};
|
|
949
|
-
pressed: {
|
|
950
|
-
neutral: {
|
|
951
|
-
heavy: string;
|
|
952
|
-
soft: {
|
|
953
|
-
alpha: string;
|
|
954
|
-
};
|
|
955
|
-
pale: {
|
|
956
|
-
alpha: string;
|
|
957
|
-
};
|
|
958
|
-
backless: string;
|
|
959
|
-
};
|
|
960
|
-
};
|
|
961
|
-
disabled: {
|
|
962
|
-
neutral: string;
|
|
963
|
-
};
|
|
964
|
-
};
|
|
965
|
-
shapeConst: {
|
|
966
|
-
default: {
|
|
967
|
-
neutral: {
|
|
968
|
-
heavy: {
|
|
969
|
-
black: string;
|
|
970
|
-
white: string;
|
|
971
|
-
};
|
|
972
|
-
soft: {
|
|
973
|
-
black: string;
|
|
974
|
-
white: string;
|
|
975
|
-
};
|
|
976
|
-
pale: {
|
|
977
|
-
black: string;
|
|
978
|
-
white: string;
|
|
979
|
-
};
|
|
980
|
-
};
|
|
981
|
-
};
|
|
982
|
-
hover: {
|
|
983
|
-
neutral: {
|
|
984
|
-
heavy: {
|
|
985
|
-
black: string;
|
|
986
|
-
white: string;
|
|
987
|
-
};
|
|
988
|
-
soft: {
|
|
989
|
-
black: string;
|
|
990
|
-
white: string;
|
|
991
|
-
};
|
|
992
|
-
pale: {
|
|
993
|
-
black: string;
|
|
994
|
-
white: string;
|
|
995
|
-
};
|
|
996
|
-
backless: {
|
|
997
|
-
black: string;
|
|
998
|
-
white: string;
|
|
999
|
-
};
|
|
1000
|
-
};
|
|
1001
|
-
};
|
|
1002
|
-
pressed: {
|
|
1003
|
-
neutral: {
|
|
1004
|
-
heavy: {
|
|
1005
|
-
black: string;
|
|
1006
|
-
white: string;
|
|
1007
|
-
};
|
|
1008
|
-
soft: {
|
|
1009
|
-
black: string;
|
|
1010
|
-
white: string;
|
|
1011
|
-
};
|
|
1012
|
-
pale: {
|
|
1013
|
-
black: string;
|
|
1014
|
-
white: string;
|
|
1015
|
-
};
|
|
1016
|
-
backless: {
|
|
1017
|
-
black: string;
|
|
1018
|
-
white: string;
|
|
1019
|
-
};
|
|
1020
|
-
};
|
|
1021
|
-
};
|
|
1022
|
-
};
|
|
1023
|
-
line: {
|
|
1024
|
-
default: {
|
|
1025
|
-
neutral: {
|
|
1026
|
-
pale: string;
|
|
1027
|
-
faint: string;
|
|
1028
|
-
};
|
|
1029
|
-
warning: {
|
|
1030
|
-
bold: string;
|
|
1031
|
-
};
|
|
1032
|
-
error: {
|
|
1033
|
-
bold: string;
|
|
1034
|
-
};
|
|
1035
|
-
success: {
|
|
1036
|
-
bold: string;
|
|
1037
|
-
};
|
|
1038
|
-
accent: {
|
|
1039
|
-
bold: string;
|
|
1040
|
-
pale: string;
|
|
1041
|
-
faint: string;
|
|
1042
|
-
};
|
|
1043
|
-
brand: {
|
|
1044
|
-
original: string;
|
|
1045
|
-
};
|
|
1046
|
-
};
|
|
1047
|
-
hover: {
|
|
1048
|
-
neutral: {
|
|
1049
|
-
pale: string;
|
|
1050
|
-
};
|
|
1051
|
-
warning: {
|
|
1052
|
-
bold: string;
|
|
1053
|
-
};
|
|
1054
|
-
error: {
|
|
1055
|
-
bold: string;
|
|
1056
|
-
};
|
|
1057
|
-
success: {
|
|
1058
|
-
bold: string;
|
|
1059
|
-
};
|
|
1060
|
-
accent: {
|
|
1061
|
-
bold: string;
|
|
1062
|
-
pale: string;
|
|
1063
|
-
faint: string;
|
|
1064
|
-
};
|
|
1065
|
-
};
|
|
1066
|
-
pressed: {
|
|
1067
|
-
neutral: {
|
|
1068
|
-
pale: string;
|
|
1069
|
-
};
|
|
1070
|
-
warning: {
|
|
1071
|
-
bold: string;
|
|
1072
|
-
};
|
|
1073
|
-
error: {
|
|
1074
|
-
bold: string;
|
|
1075
|
-
};
|
|
1076
|
-
success: {
|
|
1077
|
-
bold: string;
|
|
1078
|
-
};
|
|
1079
|
-
accent: {
|
|
1080
|
-
bold: string;
|
|
1081
|
-
pale: string;
|
|
1082
|
-
faint: string;
|
|
1083
|
-
};
|
|
1084
|
-
};
|
|
1085
|
-
};
|
|
1086
|
-
lineInverted: {
|
|
1087
|
-
default: {
|
|
1088
|
-
neutral: {
|
|
1089
|
-
pale: string;
|
|
1090
|
-
faint: string;
|
|
1091
|
-
};
|
|
1092
|
-
warning: {
|
|
1093
|
-
bold: string;
|
|
1094
|
-
};
|
|
1095
|
-
error: {
|
|
1096
|
-
bold: string;
|
|
1097
|
-
};
|
|
1098
|
-
success: {
|
|
1099
|
-
bold: string;
|
|
1100
|
-
};
|
|
1101
|
-
accent: {
|
|
1102
|
-
bold: string;
|
|
1103
|
-
pale: string;
|
|
1104
|
-
faint: string;
|
|
1105
|
-
};
|
|
1106
|
-
brand: {
|
|
1107
|
-
original: string;
|
|
1108
|
-
};
|
|
1109
|
-
};
|
|
1110
|
-
hover: {
|
|
1111
|
-
neutral: {
|
|
1112
|
-
pale: string;
|
|
1113
|
-
};
|
|
1114
|
-
warning: {
|
|
1115
|
-
bold: string;
|
|
1116
|
-
};
|
|
1117
|
-
error: {
|
|
1118
|
-
bold: string;
|
|
1119
|
-
};
|
|
1120
|
-
success: {
|
|
1121
|
-
bold: string;
|
|
1122
|
-
};
|
|
1123
|
-
accent: {
|
|
1124
|
-
bold: string;
|
|
1125
|
-
pale: string;
|
|
1126
|
-
faint: string;
|
|
1127
|
-
};
|
|
1128
|
-
};
|
|
1129
|
-
pressed: {
|
|
1130
|
-
neutral: {
|
|
1131
|
-
pale: string;
|
|
1132
|
-
};
|
|
1133
|
-
warning: {
|
|
1134
|
-
bold: string;
|
|
1135
|
-
};
|
|
1136
|
-
error: {
|
|
1137
|
-
bold: string;
|
|
1138
|
-
};
|
|
1139
|
-
success: {
|
|
1140
|
-
bold: string;
|
|
1141
|
-
};
|
|
1142
|
-
accent: {
|
|
1143
|
-
bold: string;
|
|
1144
|
-
pale: string;
|
|
1145
|
-
faint: string;
|
|
1146
|
-
};
|
|
1147
|
-
};
|
|
1148
|
-
};
|
|
1149
|
-
lineConst: {
|
|
1150
|
-
default: {
|
|
1151
|
-
neutral: {
|
|
1152
|
-
pale: {
|
|
1153
|
-
black: string;
|
|
1154
|
-
white: string;
|
|
1155
|
-
};
|
|
1156
|
-
faint: {
|
|
1157
|
-
black: string;
|
|
1158
|
-
white: string;
|
|
1159
|
-
};
|
|
1160
|
-
};
|
|
1161
|
-
};
|
|
1162
|
-
hover: {
|
|
1163
|
-
neutral: {
|
|
1164
|
-
pale: {
|
|
1165
|
-
black: string;
|
|
1166
|
-
white: string;
|
|
1167
|
-
};
|
|
1168
|
-
faint: {
|
|
1169
|
-
black: string;
|
|
1170
|
-
white: string;
|
|
1171
|
-
};
|
|
1172
|
-
};
|
|
1173
|
-
};
|
|
1174
|
-
pressed: {
|
|
1175
|
-
neutral: {
|
|
1176
|
-
pale: {
|
|
1177
|
-
black: string;
|
|
1178
|
-
white: string;
|
|
1179
|
-
};
|
|
1180
|
-
faint: {
|
|
1181
|
-
black: string;
|
|
1182
|
-
white: string;
|
|
1183
|
-
};
|
|
1184
|
-
};
|
|
1185
|
-
};
|
|
1186
|
-
};
|
|
1187
|
-
surface: {
|
|
1188
|
-
low: string;
|
|
1189
|
-
base: string;
|
|
1190
|
-
high: string;
|
|
1191
|
-
modalBackdrop: string;
|
|
1192
|
-
};
|
|
1193
|
-
art: {
|
|
1194
|
-
neutral: string;
|
|
1195
|
-
invertedNeutral: string;
|
|
1196
|
-
brand: string;
|
|
1197
|
-
promo: string;
|
|
1198
|
-
onBrand: string;
|
|
1199
|
-
};
|
|
1200
|
-
artConst: {
|
|
1201
|
-
promo: string;
|
|
1202
|
-
black: string;
|
|
1203
|
-
white: string;
|
|
1204
|
-
};
|
|
1205
|
-
customizable: {
|
|
1206
|
-
red: {
|
|
1207
|
-
heavy: string;
|
|
1208
|
-
bold: string;
|
|
1209
|
-
soft: string;
|
|
1210
|
-
pale: string;
|
|
1211
|
-
faint: string;
|
|
1212
|
-
};
|
|
1213
|
-
orange: {
|
|
1214
|
-
heavy: string;
|
|
1215
|
-
bold: string;
|
|
1216
|
-
soft: string;
|
|
1217
|
-
pale: string;
|
|
1218
|
-
faint: string;
|
|
1219
|
-
};
|
|
1220
|
-
green: {
|
|
1221
|
-
heavy: string;
|
|
1222
|
-
bold: string;
|
|
1223
|
-
soft: string;
|
|
1224
|
-
pale: string;
|
|
1225
|
-
faint: string;
|
|
1226
|
-
};
|
|
1227
|
-
mint: {
|
|
1228
|
-
heavy: string;
|
|
1229
|
-
bold: string;
|
|
1230
|
-
soft: string;
|
|
1231
|
-
pale: string;
|
|
1232
|
-
faint: string;
|
|
1233
|
-
};
|
|
1234
|
-
blue: {
|
|
1235
|
-
heavy: string;
|
|
1236
|
-
bold: string;
|
|
1237
|
-
soft: string;
|
|
1238
|
-
pale: string;
|
|
1239
|
-
faint: string;
|
|
1240
|
-
};
|
|
1241
|
-
blueDeep: {
|
|
1242
|
-
heavy: string;
|
|
1243
|
-
bold: string;
|
|
1244
|
-
soft: string;
|
|
1245
|
-
pale: string;
|
|
1246
|
-
faint: string;
|
|
1247
|
-
};
|
|
1248
|
-
violet: {
|
|
1249
|
-
heavy: string;
|
|
1250
|
-
bold: string;
|
|
1251
|
-
soft: string;
|
|
1252
|
-
pale: string;
|
|
1253
|
-
faint: string;
|
|
1254
|
-
};
|
|
1255
|
-
purple: {
|
|
1256
|
-
heavy: string;
|
|
1257
|
-
bold: string;
|
|
1258
|
-
soft: string;
|
|
1259
|
-
pale: string;
|
|
1260
|
-
faint: string;
|
|
1261
|
-
};
|
|
1262
|
-
gray: {
|
|
1263
|
-
heavy: string;
|
|
1264
|
-
bold: string;
|
|
1265
|
-
soft: string;
|
|
1266
|
-
pale: string;
|
|
1267
|
-
faint: string;
|
|
1268
|
-
};
|
|
1269
|
-
black: {
|
|
1270
|
-
heavy: string;
|
|
1271
|
-
bold: string;
|
|
1272
|
-
soft: string;
|
|
1273
|
-
pale: string;
|
|
1274
|
-
faint: string;
|
|
1275
|
-
};
|
|
1276
|
-
};
|
|
306
|
+
textAccentPrimary: string;
|
|
307
|
+
textAccentPrimaryHover: string;
|
|
308
|
+
textAccentPrimaryPressed: string;
|
|
309
|
+
textDisabled: string;
|
|
310
|
+
textErrorPrimary: string;
|
|
311
|
+
textErrorPrimaryHover: string;
|
|
312
|
+
textErrorPrimaryPressed: string;
|
|
313
|
+
textInvertedAccentPrimary: string;
|
|
314
|
+
textInvertedAccentPrimaryHover: string;
|
|
315
|
+
textInvertedAccentPrimaryPressed: string;
|
|
316
|
+
textInvertedDisabled: string;
|
|
317
|
+
textInvertedErrorPrimary: string;
|
|
318
|
+
textInvertedErrorPrimaryHover: string;
|
|
319
|
+
textInvertedErrorPrimaryPressed: string;
|
|
320
|
+
textInvertedNeutralPrimary: string;
|
|
321
|
+
textInvertedNeutralSecondary: string;
|
|
322
|
+
textInvertedSuccessPrimary: string;
|
|
323
|
+
textInvertedSuccessPrimaryHover: string;
|
|
324
|
+
textInvertedSuccessPrimaryPressed: string;
|
|
325
|
+
textInvertedWarningPrimary: string;
|
|
326
|
+
textInvertedWarningPrimaryHover: string;
|
|
327
|
+
textInvertedWarningPrimaryPressed: string;
|
|
328
|
+
textLogo: string;
|
|
329
|
+
textNeutralPrimary: string;
|
|
330
|
+
textNeutralSecondary: string;
|
|
331
|
+
textOnaccentboldDisabled: string;
|
|
332
|
+
textOnaccentboldPrimary: string;
|
|
333
|
+
textOnaccentboldSecondary: string;
|
|
334
|
+
textOnbrandoriginalDisabled: string;
|
|
335
|
+
textOnbrandoriginalPrimary: string;
|
|
336
|
+
textOnbrandoriginalSecondary: string;
|
|
337
|
+
textSuccessPrimary: string;
|
|
338
|
+
textSuccessPrimaryHover: string;
|
|
339
|
+
textSuccessPrimaryPressed: string;
|
|
340
|
+
textWarningPrimary: string;
|
|
341
|
+
textWarningPrimaryHover: string;
|
|
342
|
+
textWarningPrimaryPressed: string;
|
|
343
|
+
textConstDisabledBlack: string;
|
|
344
|
+
textConstDisabledWhite: string;
|
|
345
|
+
textConstPrimaryBlack: string;
|
|
346
|
+
textConstPrimaryWhite: string;
|
|
347
|
+
textConstSecondaryBlack: string;
|
|
348
|
+
textConstSecondaryWhite: string;
|
|
349
|
+
shapeBoldAccent: string;
|
|
350
|
+
shapeBoldAccentHover: string;
|
|
351
|
+
shapeBoldAccentPressed: string;
|
|
352
|
+
shapeBoldBrandOriginal: string;
|
|
353
|
+
shapeBoldBrandOriginalHover: string;
|
|
354
|
+
shapeBoldBrandOriginalPressed: string;
|
|
355
|
+
shapeBoldError: string;
|
|
356
|
+
shapeBoldErrorHover: string;
|
|
357
|
+
shapeBoldErrorPressed: string;
|
|
358
|
+
shapeBoldNeutral: string;
|
|
359
|
+
shapeBoldNeutralHover: string;
|
|
360
|
+
shapeBoldNeutralPressed: string;
|
|
361
|
+
shapeBoldSuccess: string;
|
|
362
|
+
shapeBoldSuccessHover: string;
|
|
363
|
+
shapeBoldSuccessPressed: string;
|
|
364
|
+
shapeBoldWarning: string;
|
|
365
|
+
shapeBoldWarningHover: string;
|
|
366
|
+
shapeBoldWarningPressed: string;
|
|
367
|
+
shapeFaintAccent: string;
|
|
368
|
+
shapeFaintAccentHover: string;
|
|
369
|
+
shapeFaintAccentPressed: string;
|
|
370
|
+
shapeFaintBrand: string;
|
|
371
|
+
shapeFaintBrandHover: string;
|
|
372
|
+
shapeFaintBrandPressed: string;
|
|
373
|
+
shapeFaintError: string;
|
|
374
|
+
shapeFaintErrorHover: string;
|
|
375
|
+
shapeFaintErrorPressed: string;
|
|
376
|
+
shapeFaintNeutralAlpha: string;
|
|
377
|
+
shapeFaintNeutralAlphaHover: string;
|
|
378
|
+
shapeFaintNeutralAlphaPressed: string;
|
|
379
|
+
shapeFaintSuccess: string;
|
|
380
|
+
shapeFaintSuccessHover: string;
|
|
381
|
+
shapeFaintSuccessPressed: string;
|
|
382
|
+
shapeFaintWarning: string;
|
|
383
|
+
shapeFaintWarningHover: string;
|
|
384
|
+
shapeFaintWarningPressed: string;
|
|
385
|
+
shapeHeavyError: string;
|
|
386
|
+
shapeHeavyNeutral: string;
|
|
387
|
+
shapeHeavySuccess: string;
|
|
388
|
+
shapeHeavyWarning: string;
|
|
389
|
+
shapeOtherAccentBoldDisabled: string;
|
|
390
|
+
shapeOtherBacklessHover: string;
|
|
391
|
+
shapeOtherBacklessPressed: string;
|
|
392
|
+
shapeOtherBase: string;
|
|
393
|
+
shapeOtherBaseHover: string;
|
|
394
|
+
shapeOtherBasePressed: string;
|
|
395
|
+
shapeOtherDisabled: string;
|
|
396
|
+
shapeOtherField: string;
|
|
397
|
+
shapeOtherLow: string;
|
|
398
|
+
shapeOtherLowHover: string;
|
|
399
|
+
shapeOtherLowPressed: string;
|
|
400
|
+
shapeOtherNeutralFaintSolid: string;
|
|
401
|
+
shapeOtherNeutralFaintSolidHover: string;
|
|
402
|
+
shapeOtherNeutralFaintSolidPressed: string;
|
|
403
|
+
shapeOtherNeutralPaleSolid: string;
|
|
404
|
+
shapeOtherNeutralPaleSolidHover: string;
|
|
405
|
+
shapeOtherNeutralPaleSolidPressed: string;
|
|
406
|
+
shapeOtherNeutralSoftSolid: string;
|
|
407
|
+
shapeOtherNeutralSoftSolidHover: string;
|
|
408
|
+
shapeOtherNeutralSoftSolidPressed: string;
|
|
409
|
+
shapePaleAccent: string;
|
|
410
|
+
shapePaleAccentHover: string;
|
|
411
|
+
shapePaleAccentPressed: string;
|
|
412
|
+
shapePaleBrand: string;
|
|
413
|
+
shapePaleBrandHover: string;
|
|
414
|
+
shapePaleBrandPressed: string;
|
|
415
|
+
shapePaleError: string;
|
|
416
|
+
shapePaleErrorHover: string;
|
|
417
|
+
shapePaleErrorPressed: string;
|
|
418
|
+
shapePaleNeutralAlpha: string;
|
|
419
|
+
shapePaleNeutralAlphaHover: string;
|
|
420
|
+
shapePaleNeutralAlphaPressed: string;
|
|
421
|
+
shapePaleSuccess: string;
|
|
422
|
+
shapePaleSuccessHover: string;
|
|
423
|
+
shapePaleSuccessPressed: string;
|
|
424
|
+
shapePaleWarning: string;
|
|
425
|
+
shapePaleWarningHover: string;
|
|
426
|
+
shapePaleWarningPressed: string;
|
|
427
|
+
shapeSoftAccent: string;
|
|
428
|
+
shapeSoftAccentHover: string;
|
|
429
|
+
shapeSoftAccentPressed: string;
|
|
430
|
+
shapeSoftBrand: string;
|
|
431
|
+
shapeSoftBrandHover: string;
|
|
432
|
+
shapeSoftBrandPressed: string;
|
|
433
|
+
shapeSoftError: string;
|
|
434
|
+
shapeSoftErrorHover: string;
|
|
435
|
+
shapeSoftErrorPressed: string;
|
|
436
|
+
shapeSoftNeutralAlpha: string;
|
|
437
|
+
shapeSoftNeutralAlphaHover: string;
|
|
438
|
+
shapeSoftNeutralAlphaPressed: string;
|
|
439
|
+
shapeSoftSuccess: string;
|
|
440
|
+
shapeSoftSuccessHover: string;
|
|
441
|
+
shapeSoftSuccessPressed: string;
|
|
442
|
+
shapeSoftWarning: string;
|
|
443
|
+
shapeSoftWarningHover: string;
|
|
444
|
+
shapeSoftWarningPressed: string;
|
|
445
|
+
shapeInvertedBacklessHover: string;
|
|
446
|
+
shapeInvertedBacklessPressed: string;
|
|
447
|
+
shapeInvertedDisabled: string;
|
|
448
|
+
shapeInvertedNeutralHeavy: string;
|
|
449
|
+
shapeInvertedNeutralHeavyHover: string;
|
|
450
|
+
shapeInvertedNeutralHeavyPressed: string;
|
|
451
|
+
shapeInvertedNeutralPaleAlpha: string;
|
|
452
|
+
shapeInvertedNeutralPaleAlphaHover: string;
|
|
453
|
+
shapeInvertedNeutralPaleAlphaPressed: string;
|
|
454
|
+
shapeInvertedNeutralSoftAlpha: string;
|
|
455
|
+
shapeInvertedNeutralSoftAlphaHover: string;
|
|
456
|
+
shapeInvertedNeutralSoftAlphaPressed: string;
|
|
457
|
+
shapeConstBacklessBlackHover: string;
|
|
458
|
+
shapeConstBacklessBlackPressed: string;
|
|
459
|
+
shapeConstBacklessWhiteHover: string;
|
|
460
|
+
shapeConstBacklessWhitePressed: string;
|
|
461
|
+
shapeConstDisabledBlack: string;
|
|
462
|
+
shapeConstDisabledWhite: string;
|
|
463
|
+
shapeConstHeavyBlack: string;
|
|
464
|
+
shapeConstHeavyBlackHover: string;
|
|
465
|
+
shapeConstHeavyBlackPressed: string;
|
|
466
|
+
shapeConstHeavyWhite: string;
|
|
467
|
+
shapeConstHeavyWhiteHover: string;
|
|
468
|
+
shapeConstHeavyWhitePressed: string;
|
|
469
|
+
shapeConstPaleBlack: string;
|
|
470
|
+
shapeConstPaleBlackHover: string;
|
|
471
|
+
shapeConstPaleBlackPressed: string;
|
|
472
|
+
shapeConstPaleWhite: string;
|
|
473
|
+
shapeConstPaleWhiteHover: string;
|
|
474
|
+
shapeConstPaleWhitePressed: string;
|
|
475
|
+
shapeConstPromo: string;
|
|
476
|
+
shapeConstSoftBlack: string;
|
|
477
|
+
shapeConstSoftBlackHover: string;
|
|
478
|
+
shapeConstSoftBlackPressed: string;
|
|
479
|
+
shapeConstSoftWhite: string;
|
|
480
|
+
shapeConstSoftWhiteHover: string;
|
|
481
|
+
shapeConstSoftWhitePressed: string;
|
|
482
|
+
lineAccentBold: string;
|
|
483
|
+
lineAccentBoldHover: string;
|
|
484
|
+
lineAccentBoldPressed: string;
|
|
485
|
+
lineAccentPale: string;
|
|
486
|
+
lineAccentPaleHover: string;
|
|
487
|
+
lineAccentPalePressed: string;
|
|
488
|
+
lineAccentSoft: string;
|
|
489
|
+
lineAccentSoftHover: string;
|
|
490
|
+
lineAccentSoftPressed: string;
|
|
491
|
+
lineBrandOriginal: string;
|
|
492
|
+
lineErrorBold: string;
|
|
493
|
+
lineErrorBoldHover: string;
|
|
494
|
+
lineErrorBoldPressed: string;
|
|
495
|
+
lineNeutralFaint: string;
|
|
496
|
+
lineNeutralPale: string;
|
|
497
|
+
lineNeutralPaleHover: string;
|
|
498
|
+
lineNeutralPalePressed: string;
|
|
499
|
+
lineOnaccentboldFaint: string;
|
|
500
|
+
lineOnaccentboldPale: string;
|
|
501
|
+
lineOnbrandoriginalFaint: string;
|
|
502
|
+
lineOnbrandoriginalPale: string;
|
|
503
|
+
lineSuccessBold: string;
|
|
504
|
+
lineSuccessBoldHover: string;
|
|
505
|
+
lineSuccessBoldPressed: string;
|
|
506
|
+
lineWarningBold: string;
|
|
507
|
+
lineWarningBoldHover: string;
|
|
508
|
+
lineWarningBoldPressed: string;
|
|
509
|
+
lineInvertedAccentBold: string;
|
|
510
|
+
lineInvertedAccentBoldHover: string;
|
|
511
|
+
lineInvertedAccentBoldPressed: string;
|
|
512
|
+
lineInvertedAccentPale: string;
|
|
513
|
+
lineInvertedAccentPaleHover: string;
|
|
514
|
+
lineInvertedAccentPalePressed: string;
|
|
515
|
+
lineInvertedAccentSoft: string;
|
|
516
|
+
lineInvertedAccentSoftHover: string;
|
|
517
|
+
lineInvertedAccentSoftPressed: string;
|
|
518
|
+
lineInvertedErrorBold: string;
|
|
519
|
+
lineInvertedErrorBoldHover: string;
|
|
520
|
+
lineInvertedErrorBoldPressed: string;
|
|
521
|
+
lineInvertedNeutralFaint: string;
|
|
522
|
+
lineInvertedNeutralPale: string;
|
|
523
|
+
lineInvertedNeutralPaleHover: string;
|
|
524
|
+
lineInvertedNeutralPalePressed: string;
|
|
525
|
+
lineInvertedSuccessBold: string;
|
|
526
|
+
lineInvertedSuccessBoldHover: string;
|
|
527
|
+
lineInvertedSuccessBoldPressed: string;
|
|
528
|
+
lineInvertedWarningBold: string;
|
|
529
|
+
lineInvertedWarningBoldHover: string;
|
|
530
|
+
lineInvertedWarningBoldPressed: string;
|
|
531
|
+
lineConstFaintBlack: string;
|
|
532
|
+
lineConstFaintWhite: string;
|
|
533
|
+
lineConstPaleBlack: string;
|
|
534
|
+
lineConstPaleBlackHover: string;
|
|
535
|
+
lineConstPaleBlackPressed: string;
|
|
536
|
+
lineConstPaleWhite: string;
|
|
537
|
+
lineConstPaleWhiteHover: string;
|
|
538
|
+
lineConstPaleWhitePressed: string;
|
|
539
|
+
surfaceBase: string;
|
|
540
|
+
surfaceHigh: string;
|
|
541
|
+
surfaceLow: string;
|
|
542
|
+
surfaceModalBackdrop: string;
|
|
543
|
+
illustrationBlack: string;
|
|
544
|
+
illustrationBrand: string;
|
|
545
|
+
illustrationComplement: string;
|
|
546
|
+
illustrationOnBrand: string;
|
|
547
|
+
illustrationOncomplement: string;
|
|
548
|
+
illustrationPromo: string;
|
|
549
|
+
illustrationSymbol: string;
|
|
550
|
+
illustrationWhite: string;
|
|
551
|
+
customizableBoldBlack: string;
|
|
552
|
+
customizableBoldBlue: string;
|
|
553
|
+
customizableBoldBlueDeep: string;
|
|
554
|
+
customizableBoldGray: string;
|
|
555
|
+
customizableBoldGreen: string;
|
|
556
|
+
customizableBoldMint: string;
|
|
557
|
+
customizableBoldOrange: string;
|
|
558
|
+
customizableBoldPurple: string;
|
|
559
|
+
customizableBoldRed: string;
|
|
560
|
+
customizableBoldViolet: string;
|
|
561
|
+
customizableBoldYellow: string;
|
|
562
|
+
customizableFaintBlack: string;
|
|
563
|
+
customizableFaintBlue: string;
|
|
564
|
+
customizableFaintBlueDeep: string;
|
|
565
|
+
customizableFaintGray: string;
|
|
566
|
+
customizableFaintGreen: string;
|
|
567
|
+
customizableFaintMint: string;
|
|
568
|
+
customizableFaintOrange: string;
|
|
569
|
+
customizableFaintPurple: string;
|
|
570
|
+
customizableFaintRed: string;
|
|
571
|
+
customizableFaintViolet: string;
|
|
572
|
+
customizableFaintYellow: string;
|
|
573
|
+
customizableHeavyBlack: string;
|
|
574
|
+
customizableHeavyBlue: string;
|
|
575
|
+
customizableHeavyBlueDeep: string;
|
|
576
|
+
customizableHeavyGray: string;
|
|
577
|
+
customizableHeavyGreen: string;
|
|
578
|
+
customizableHeavyMint: string;
|
|
579
|
+
customizableHeavyOrange: string;
|
|
580
|
+
customizableHeavyPurple: string;
|
|
581
|
+
customizableHeavyRed: string;
|
|
582
|
+
customizableHeavyViolet: string;
|
|
583
|
+
customizableHeavyYellow: string;
|
|
584
|
+
customizablePaleBlack: string;
|
|
585
|
+
customizablePaleBlue: string;
|
|
586
|
+
customizablePaleBlueDeep: string;
|
|
587
|
+
customizablePaleGray: string;
|
|
588
|
+
customizablePaleGreen: string;
|
|
589
|
+
customizablePaleMint: string;
|
|
590
|
+
customizablePaleOrange: string;
|
|
591
|
+
customizablePalePurple: string;
|
|
592
|
+
customizablePaleRed: string;
|
|
593
|
+
customizablePaleViolet: string;
|
|
594
|
+
customizablePaleYellow: string;
|
|
595
|
+
customizableSoftBlack: string;
|
|
596
|
+
customizableSoftBlue: string;
|
|
597
|
+
customizableSoftBlueDeep: string;
|
|
598
|
+
customizableSoftGray: string;
|
|
599
|
+
customizableSoftGreen: string;
|
|
600
|
+
customizableSoftMint: string;
|
|
601
|
+
customizableSoftOrange: string;
|
|
602
|
+
customizableSoftPurple: string;
|
|
603
|
+
customizableSoftRed: string;
|
|
604
|
+
customizableSoftViolet: string;
|
|
605
|
+
customizableSoftYellow: string;
|
|
1277
606
|
};
|
|
1278
607
|
};
|