@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.
@@ -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
- text: {
5
- default: {
6
- neutral: {
7
- primary: string;
8
- secondary: string;
9
- };
10
- warning: {
11
- primary: string;
12
- };
13
- error: {
14
- primary: string;
15
- };
16
- success: {
17
- primary: string;
18
- };
19
- accent: {
20
- primary: string;
21
- };
22
- logo: string;
23
- };
24
- hover: {
25
- warning: {
26
- primary: string;
27
- };
28
- error: {
29
- primary: string;
30
- };
31
- success: {
32
- primary: string;
33
- };
34
- accent: {
35
- primary: string;
36
- };
37
- };
38
- pressed: {
39
- warning: {
40
- primary: string;
41
- };
42
- error: {
43
- primary: string;
44
- };
45
- success: {
46
- primary: string;
47
- };
48
- accent: {
49
- primary: string;
50
- };
51
- };
52
- disabled: string;
53
- };
54
- textInverted: {
55
- default: {
56
- neutral: {
57
- primary: string;
58
- secondary: string;
59
- };
60
- warning: {
61
- primary: string;
62
- };
63
- error: {
64
- primary: string;
65
- };
66
- success: {
67
- primary: string;
68
- };
69
- accent: {
70
- primary: string;
71
- };
72
- logo: string;
73
- };
74
- hover: {
75
- warning: {
76
- primary: string;
77
- };
78
- error: {
79
- primary: string;
80
- };
81
- success: {
82
- primary: string;
83
- };
84
- accent: {
85
- primary: string;
86
- };
87
- };
88
- pressed: {
89
- warning: {
90
- primary: string;
91
- };
92
- error: {
93
- primary: string;
94
- };
95
- success: {
96
- primary: string;
97
- };
98
- accent: {
99
- primary: string;
100
- };
101
- };
102
- disabled: string;
103
- };
104
- textConst: {
105
- default: {
106
- neutral: {
107
- primary: {
108
- black: string;
109
- white: string;
110
- };
111
- secondary: {
112
- black: string;
113
- white: string;
114
- };
115
- };
116
- };
117
- disabled: {
118
- black: string;
119
- white: string;
120
- };
121
- };
122
- textOnAccent: {
123
- default: {
124
- primary: string;
125
- secondary: string;
126
- };
127
- disabled: string;
128
- };
129
- textOnBrand: {
130
- default: {
131
- primary: string;
132
- secondary: string;
133
- };
134
- disabled: string;
135
- };
136
- shape: {
137
- default: {
138
- neutral: {
139
- heavy: string;
140
- bold: string;
141
- soft: {
142
- alpha: string;
143
- solid: string;
144
- };
145
- pale: {
146
- alpha: string;
147
- solid: string;
148
- };
149
- faint: {
150
- alpha: string;
151
- solid: string;
152
- };
153
- };
154
- warning: {
155
- heavy: string;
156
- bold: string;
157
- soft: string;
158
- pale: string;
159
- faint: string;
160
- };
161
- error: {
162
- heavy: string;
163
- bold: string;
164
- soft: string;
165
- pale: string;
166
- faint: string;
167
- };
168
- success: {
169
- heavy: string;
170
- bold: string;
171
- soft: string;
172
- pale: string;
173
- faint: string;
174
- };
175
- accent: {
176
- heavy: string;
177
- bold: string;
178
- soft: string;
179
- pale: string;
180
- faint: string;
181
- };
182
- brand: {
183
- promo: string;
184
- original: string;
185
- soft: string;
186
- pale: string;
187
- faint: string;
188
- };
189
- base: string;
190
- field: string;
191
- };
192
- hover: {
193
- neutral: {
194
- heavy: null;
195
- bold: string;
196
- soft: {
197
- alpha: string;
198
- solid: string;
199
- };
200
- pale: {
201
- alpha: string;
202
- solid: string;
203
- };
204
- faint: {
205
- alpha: string;
206
- solid: string;
207
- };
208
- };
209
- warning: {
210
- bold: string;
211
- soft: string;
212
- pale: string;
213
- faint: string;
214
- };
215
- error: {
216
- bold: string;
217
- soft: string;
218
- pale: string;
219
- faint: string;
220
- };
221
- success: {
222
- bold: string;
223
- soft: string;
224
- pale: string;
225
- faint: string;
226
- };
227
- accent: {
228
- bold: string;
229
- soft: string;
230
- pale: string;
231
- faint: string;
232
- };
233
- brand: {
234
- original: string;
235
- soft: string;
236
- pale: string;
237
- faint: string;
238
- };
239
- base: string;
240
- backless: string;
241
- };
242
- pressed: {
243
- neutral: {
244
- bold: string;
245
- soft: {
246
- alpha: string;
247
- solid: string;
248
- };
249
- pale: {
250
- alpha: string;
251
- solid: string;
252
- };
253
- faint: {
254
- alpha: string;
255
- solid: string;
256
- };
257
- };
258
- warning: {
259
- bold: string;
260
- soft: string;
261
- pale: string;
262
- faint: string;
263
- };
264
- error: {
265
- bold: string;
266
- soft: string;
267
- pale: string;
268
- faint: string;
269
- };
270
- success: {
271
- bold: string;
272
- soft: string;
273
- pale: string;
274
- faint: string;
275
- };
276
- accent: {
277
- bold: string;
278
- soft: string;
279
- pale: string;
280
- faint: string;
281
- };
282
- brand: {
283
- original: string;
284
- soft: string;
285
- pale: string;
286
- faint: string;
287
- };
288
- base: string;
289
- backless: string;
290
- };
291
- disabled: {
292
- neutral: string;
293
- accent: string;
294
- };
295
- };
296
- shapeInverted: {
297
- default: {
298
- neutral: {
299
- heavy: string;
300
- soft: {
301
- alpha: string;
302
- };
303
- pale: {};
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
- text: {
635
- default: {
636
- neutral: {
637
- primary: string;
638
- secondary: string;
639
- };
640
- warning: {
641
- primary: string;
642
- };
643
- error: {
644
- primary: string;
645
- };
646
- success: {
647
- primary: string;
648
- };
649
- accent: {
650
- primary: string;
651
- };
652
- logo: string;
653
- };
654
- hover: {
655
- warning: {
656
- primary: string;
657
- };
658
- error: {
659
- primary: string;
660
- };
661
- success: {
662
- primary: string;
663
- };
664
- accent: {
665
- primary: string;
666
- };
667
- };
668
- pressed: {
669
- warning: {
670
- primary: string;
671
- };
672
- error: {
673
- primary: string;
674
- };
675
- success: {
676
- primary: string;
677
- };
678
- accent: {
679
- primary: string;
680
- };
681
- };
682
- disabled: string;
683
- };
684
- textInverted: {
685
- default: {
686
- neutral: {
687
- primary: string;
688
- secondary: string;
689
- };
690
- warning: {
691
- primary: string;
692
- };
693
- error: {
694
- primary: string;
695
- };
696
- success: {
697
- primary: string;
698
- };
699
- accent: {
700
- primary: string;
701
- };
702
- logo: string;
703
- };
704
- hover: {
705
- warning: {
706
- primary: string;
707
- };
708
- error: {
709
- primary: string;
710
- };
711
- success: {
712
- primary: string;
713
- };
714
- accent: {
715
- primary: string;
716
- };
717
- };
718
- pressed: {
719
- warning: {
720
- primary: string;
721
- };
722
- error: {
723
- primary: string;
724
- };
725
- success: {
726
- primary: string;
727
- };
728
- accent: {
729
- primary: string;
730
- };
731
- };
732
- disabled: string;
733
- };
734
- textConst: {
735
- default: {
736
- neutral: {
737
- primary: {
738
- black: string;
739
- white: string;
740
- };
741
- secondary: {
742
- black: string;
743
- white: string;
744
- };
745
- };
746
- };
747
- disabled: {
748
- black: string;
749
- white: string;
750
- };
751
- };
752
- textOnAccent: {
753
- default: {
754
- primary: string;
755
- secondary: string;
756
- };
757
- disabled: string;
758
- };
759
- textOnBrand: {
760
- default: {
761
- primary: string;
762
- secondary: string;
763
- };
764
- disabled: string;
765
- };
766
- shape: {
767
- default: {
768
- neutral: {
769
- heavy: string;
770
- bold: string;
771
- soft: {
772
- alpha: string;
773
- solid: string;
774
- };
775
- pale: {
776
- alpha: string;
777
- solid: string;
778
- };
779
- faint: {
780
- alpha: string;
781
- solid: string;
782
- };
783
- };
784
- warning: {
785
- heavy: string;
786
- bold: string;
787
- soft: string;
788
- pale: string;
789
- faint: string;
790
- };
791
- error: {
792
- heavy: string;
793
- bold: string;
794
- soft: string;
795
- pale: string;
796
- faint: string;
797
- };
798
- success: {
799
- heavy: string;
800
- bold: string;
801
- soft: string;
802
- pale: string;
803
- faint: string;
804
- };
805
- accent: {
806
- heavy: string;
807
- bold: string;
808
- soft: string;
809
- pale: string;
810
- faint: string;
811
- };
812
- brand: {
813
- promo: string;
814
- original: string;
815
- soft: string;
816
- pale: string;
817
- faint: string;
818
- };
819
- base: string;
820
- field: string;
821
- };
822
- hover: {
823
- neutral: {
824
- bold: string;
825
- soft: {
826
- alpha: string;
827
- solid: string;
828
- };
829
- pale: {
830
- alpha: string;
831
- solid: string;
832
- };
833
- faint: {
834
- alpha: string;
835
- solid: string;
836
- };
837
- };
838
- warning: {
839
- bold: string;
840
- soft: string;
841
- pale: string;
842
- faint: string;
843
- };
844
- error: {
845
- bold: string;
846
- soft: string;
847
- pale: string;
848
- faint: string;
849
- };
850
- success: {
851
- bold: string;
852
- soft: string;
853
- pale: string;
854
- faint: string;
855
- };
856
- accent: {
857
- bold: string;
858
- soft: string;
859
- pale: string;
860
- faint: string;
861
- };
862
- brand: {
863
- original: string;
864
- soft: string;
865
- pale: string;
866
- faint: string;
867
- };
868
- base: string;
869
- backless: string;
870
- };
871
- pressed: {
872
- neutral: {
873
- bold: string;
874
- soft: {
875
- alpha: string;
876
- solid: string;
877
- };
878
- pale: {
879
- alpha: string;
880
- solid: string;
881
- };
882
- faint: {
883
- alpha: string;
884
- solid: string;
885
- };
886
- };
887
- warning: {
888
- bold: string;
889
- soft: string;
890
- pale: string;
891
- faint: string;
892
- };
893
- error: {
894
- bold: string;
895
- soft: string;
896
- pale: string;
897
- faint: string;
898
- };
899
- success: {
900
- bold: string;
901
- soft: string;
902
- pale: string;
903
- faint: string;
904
- };
905
- accent: {
906
- bold: string;
907
- soft: string;
908
- pale: string;
909
- faint: string;
910
- };
911
- brand: {
912
- original: string;
913
- soft: string;
914
- pale: string;
915
- faint: string;
916
- };
917
- base: string;
918
- backless: string;
919
- };
920
- disabled: {
921
- neutral: string;
922
- accent: string;
923
- };
924
- };
925
- shapeInverted: {
926
- default: {
927
- neutral: {
928
- heavy: string;
929
- soft: {
930
- alpha: string;
931
- };
932
- pale: {
933
- alpha: string;
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
  };