@skbkontur/colors 1.1.2-752d6.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/README.md +1 -1
- package/dist/cjs/constants/abney-correction.d.ts +2 -0
- package/dist/cjs/constants/abney-correction.js +1105 -0
- package/dist/cjs/constants/chroma-settings.d.ts +2 -0
- package/dist/cjs/constants/chroma-settings.js +105 -0
- package/dist/cjs/constants/default-swatch.d.ts +109 -0
- package/dist/cjs/constants/default-swatch.js +112 -0
- package/dist/cjs/constants/interaction-settings.d.ts +8 -0
- package/dist/cjs/constants/interaction-settings.js +11 -0
- package/dist/cjs/constants/logo-lightness.d.ts +1 -0
- package/dist/cjs/constants/logo-lightness.js +4 -0
- package/dist/cjs/constants/promo-hue-shift.d.ts +3 -0
- package/dist/cjs/constants/promo-hue-shift.js +14 -0
- package/dist/cjs/constants/warning-hue-patch.d.ts +3 -0
- package/dist/cjs/constants/warning-hue-patch.js +25 -0
- package/dist/cjs/get-base-tokens.d.ts +17 -0
- package/dist/cjs/get-base-tokens.js +201 -0
- 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 +607 -0
- package/dist/cjs/get-default-tokens.js +613 -0
- package/dist/cjs/helpers/get-interactions.d.ts +7 -0
- package/dist/cjs/helpers/get-interactions.js +40 -0
- package/dist/cjs/helpers/get-logo.d.ts +6 -0
- package/dist/cjs/helpers/get-logo.js +29 -0
- package/dist/cjs/helpers/get-palette.d.ts +51 -0
- package/dist/cjs/helpers/get-palette.js +242 -0
- package/dist/cjs/helpers/get-promo.d.ts +6 -0
- package/dist/cjs/helpers/get-promo.js +58 -0
- package/dist/cjs/types/base-tokens.d.ts +54 -0
- package/dist/cjs/types/base-tokens.js +2 -0
- package/dist/cjs/types/generator-tokens.d.ts +43 -0
- package/dist/cjs/types/generator-tokens.js +2 -0
- package/dist/esm/constants/abney-correction.d.ts +2 -0
- package/dist/esm/constants/abney-correction.js +1102 -0
- package/dist/esm/constants/chroma-settings.d.ts +2 -0
- package/dist/esm/constants/chroma-settings.js +102 -0
- package/dist/esm/constants/default-swatch.d.ts +109 -0
- package/dist/esm/constants/default-swatch.js +109 -0
- package/dist/esm/constants/interaction-settings.d.ts +8 -0
- package/dist/esm/constants/interaction-settings.js +8 -0
- package/dist/esm/constants/logo-lightness.d.ts +1 -0
- package/dist/esm/constants/logo-lightness.js +1 -0
- package/dist/esm/constants/promo-hue-shift.d.ts +3 -0
- package/dist/esm/constants/promo-hue-shift.js +11 -0
- package/dist/esm/constants/warning-hue-patch.d.ts +3 -0
- package/dist/esm/constants/warning-hue-patch.js +22 -0
- package/dist/esm/get-base-tokens.d.ts +17 -0
- package/dist/esm/get-base-tokens.js +167 -0
- 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 +607 -0
- package/dist/esm/get-default-tokens.js +609 -0
- package/dist/esm/helpers/get-interactions.d.ts +7 -0
- package/dist/esm/helpers/get-interactions.js +35 -0
- package/dist/esm/helpers/get-logo.d.ts +6 -0
- package/dist/esm/helpers/get-logo.js +25 -0
- package/dist/esm/helpers/get-palette.d.ts +51 -0
- package/dist/esm/helpers/get-palette.js +210 -0
- package/dist/esm/helpers/get-promo.d.ts +6 -0
- package/dist/esm/helpers/get-promo.js +53 -0
- package/dist/esm/types/base-tokens.d.ts +54 -0
- package/dist/esm/types/base-tokens.js +1 -0
- package/dist/esm/types/generator-tokens.d.ts +43 -0
- package/dist/esm/types/generator-tokens.js +1 -0
- package/package.json +14 -8
- package/colors.css +0 -160
- package/colors.less +0 -158
- package/colors.scss +0 -158
- package/dist/cjs/colors.d.ts +0 -161
- package/dist/cjs/colors.js +0 -163
- package/dist/esm/colors.d.ts +0 -161
- package/dist/esm/colors.js +0 -163
|
@@ -0,0 +1,607 @@
|
|
|
1
|
+
import type { BaseTokens } from './types/base-tokens';
|
|
2
|
+
export declare const getDefaultTokens: (base: BaseTokens) => {
|
|
3
|
+
light: {
|
|
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;
|
|
304
|
+
};
|
|
305
|
+
dark: {
|
|
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;
|
|
606
|
+
};
|
|
607
|
+
};
|