@skbkontur/colors 2.0.4 → 2.0.6-alpha.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/default-dark.d.ts +35 -35
- package/default-dark.js +35 -35
- package/default-light.d.ts +34 -34
- package/default-light.js +34 -34
- package/get-colors.d.ts +1 -0
- package/get-colors.js +1 -0
- package/index.d.ts +319 -0
- package/index.js +319 -0
- package/lib/get-colors-base.js +5 -4
- package/lib/get-colors-base.ts +5 -4
- package/lib/helpers/get-on-brand.d.ts +28 -0
- package/lib/helpers/get-on-brand.js +10 -0
- package/lib/helpers/get-on-brand.ts +13 -0
- package/lib/helpers/get-palette.d.ts +3 -36
- package/lib/helpers/get-palette.js +65 -98
- package/lib/helpers/get-palette.ts +73 -117
- package/package.json +5 -5
- package/tokens/brand-blue-deep_accent-brand.css +69 -69
- package/tokens/brand-blue-deep_accent-gray.css +69 -69
- package/tokens/brand-blue_accent-brand.css +69 -69
- package/tokens/brand-blue_accent-gray.css +69 -69
- package/tokens/brand-green_accent-brand.css +69 -69
- package/tokens/brand-green_accent-gray.css +69 -69
- package/tokens/brand-mint_accent-brand.css +69 -69
- package/tokens/brand-mint_accent-gray.css +69 -69
- package/tokens/brand-orange_accent-gray.css +88 -88
- package/tokens/brand-purple_accent-brand.css +69 -69
- package/tokens/brand-purple_accent-gray.css +69 -69
- package/tokens/brand-red_accent-gray.css +69 -69
- package/tokens/brand-violet_accent-brand.css +69 -69
- package/tokens/brand-violet_accent-gray.css +69 -69
- package/tokens-mobile/brand-blue-deep_accent-brand.json +37 -37
- package/tokens-mobile/brand-blue-deep_accent-gray.json +37 -37
- package/tokens-mobile/brand-blue_accent-brand.json +37 -37
- package/tokens-mobile/brand-blue_accent-gray.json +37 -37
- package/tokens-mobile/brand-green_accent-brand.json +37 -37
- package/tokens-mobile/brand-green_accent-gray.json +37 -37
- package/tokens-mobile/brand-mint_accent-brand.json +37 -37
- package/tokens-mobile/brand-mint_accent-gray.json +37 -37
- package/tokens-mobile/brand-orange_accent-gray.json +45 -45
- package/tokens-mobile/brand-purple_accent-brand.json +37 -37
- package/tokens-mobile/brand-purple_accent-gray.json +37 -37
- package/tokens-mobile/brand-red_accent-gray.json +37 -37
- package/tokens-mobile/brand-violet_accent-brand.json +37 -37
- package/tokens-mobile/brand-violet_accent-gray.json +37 -37
package/default-light.js
CHANGED
|
@@ -17,9 +17,9 @@ export var textInvertedNeutralSoft = 'var(--k-color-text-inverted-neutral-soft,
|
|
|
17
17
|
export var textInvertedSuccessHeavy = 'var(--k-color-text-inverted-success-heavy, #00c655)';
|
|
18
18
|
export var textInvertedSuccessHeavyHover = 'var(--k-color-text-inverted-success-heavy-hover, #4ede76)';
|
|
19
19
|
export var textInvertedSuccessHeavyPressed = 'var(--k-color-text-inverted-success-heavy-pressed, #4fa161)';
|
|
20
|
-
export var textInvertedWarningHeavy = 'var(--k-color-text-inverted-warning-heavy, #
|
|
21
|
-
export var textInvertedWarningHeavyHover = 'var(--k-color-text-inverted-warning-heavy-hover, #
|
|
22
|
-
export var textInvertedWarningHeavyPressed = 'var(--k-color-text-inverted-warning-heavy-pressed, #
|
|
20
|
+
export var textInvertedWarningHeavy = 'var(--k-color-text-inverted-warning-heavy, #fdaa00)';
|
|
21
|
+
export var textInvertedWarningHeavyHover = 'var(--k-color-text-inverted-warning-heavy-hover, #ffbe3d)';
|
|
22
|
+
export var textInvertedWarningHeavyPressed = 'var(--k-color-text-inverted-warning-heavy-pressed, #d69551)';
|
|
23
23
|
export var textLogo = 'var(--k-color-text-logo, #FE4C4C)';
|
|
24
24
|
export var textNeutralFaint = 'var(--k-color-text-neutral-faint, rgba(0, 0, 0, 0.32))';
|
|
25
25
|
export var textNeutralHeavy = 'var(--k-color-text-neutral-heavy, rgba(0, 0, 0, 0.88))';
|
|
@@ -28,9 +28,9 @@ export var textNeutralSoft = 'var(--k-color-text-neutral-soft, rgba(0, 0, 0, 0.5
|
|
|
28
28
|
export var textSuccessHeavy = 'var(--k-color-text-success-heavy, #007f34)';
|
|
29
29
|
export var textSuccessHeavyHover = 'var(--k-color-text-success-heavy-hover, #009b41)';
|
|
30
30
|
export var textSuccessHeavyPressed = 'var(--k-color-text-success-heavy-pressed, #3a6a43)';
|
|
31
|
-
export var textWarningHeavy = 'var(--k-color-text-warning-heavy, #
|
|
32
|
-
export var textWarningHeavyHover = 'var(--k-color-text-warning-heavy-hover, #
|
|
33
|
-
export var textWarningHeavyPressed = 'var(--k-color-text-warning-heavy-pressed, #
|
|
31
|
+
export var textWarningHeavy = 'var(--k-color-text-warning-heavy, #d26e00)';
|
|
32
|
+
export var textWarningHeavyHover = 'var(--k-color-text-warning-heavy-hover, #e88b00)';
|
|
33
|
+
export var textWarningHeavyPressed = 'var(--k-color-text-warning-heavy-pressed, #ab713f)';
|
|
34
34
|
export var textConstFaintBlack = 'var(--k-color-text-const-faint-black, rgba(0, 0, 0, 0.32))';
|
|
35
35
|
export var textConstFaintWhite = 'var(--k-color-text-const-faint-white, rgba(255, 255, 255, 0.4))';
|
|
36
36
|
export var textConstHeavyBlack = 'var(--k-color-text-const-heavy-black, rgba(0, 0, 0, 0.88))';
|
|
@@ -62,9 +62,9 @@ export var shapeBoldNeutralPressed = 'var(--k-color-shape-bold-neutral-pressed,
|
|
|
62
62
|
export var shapeBoldSuccess = 'var(--k-color-shape-bold-success, #00a948)';
|
|
63
63
|
export var shapeBoldSuccessHover = 'var(--k-color-shape-bold-success-hover, #009b41)';
|
|
64
64
|
export var shapeBoldSuccessPressed = 'var(--k-color-shape-bold-success-pressed, #178b3f)';
|
|
65
|
-
export var shapeBoldWarning = 'var(--k-color-shape-bold-warning, #
|
|
66
|
-
export var shapeBoldWarningHover = 'var(--k-color-shape-bold-warning-hover, #
|
|
67
|
-
export var shapeBoldWarningPressed = 'var(--k-color-shape-bold-warning-pressed, #
|
|
65
|
+
export var shapeBoldWarning = 'var(--k-color-shape-bold-warning, #ffbe3d)';
|
|
66
|
+
export var shapeBoldWarningHover = 'var(--k-color-shape-bold-warning-hover, #fdaa00)';
|
|
67
|
+
export var shapeBoldWarningPressed = 'var(--k-color-shape-bold-warning-pressed, #ec9e32)';
|
|
68
68
|
export var shapeFaintAccent = 'var(--k-color-shape-faint-accent, rgba(0, 0, 0, 0.12))';
|
|
69
69
|
export var shapeFaintAccentHover = 'var(--k-color-shape-faint-accent-hover, rgba(0, 0, 0, 0.16))';
|
|
70
70
|
export var shapeFaintAccentPressed = 'var(--k-color-shape-faint-accent-pressed, rgba(0, 0, 0, 0.24))';
|
|
@@ -80,13 +80,13 @@ export var shapeFaintNeutralAlphaPressed = 'var(--k-color-shape-faint-neutral-al
|
|
|
80
80
|
export var shapeFaintSuccess = 'var(--k-color-shape-faint-success, #defbe2)';
|
|
81
81
|
export var shapeFaintSuccessHover = 'var(--k-color-shape-faint-success-hover, #c3f3ca)';
|
|
82
82
|
export var shapeFaintSuccessPressed = 'var(--k-color-shape-faint-success-pressed, #d1edd5)';
|
|
83
|
-
export var shapeFaintWarning = 'var(--k-color-shape-faint-warning, #
|
|
84
|
-
export var shapeFaintWarningHover = 'var(--k-color-shape-faint-warning-hover, #
|
|
85
|
-
export var shapeFaintWarningPressed = 'var(--k-color-shape-faint-warning-pressed, #
|
|
83
|
+
export var shapeFaintWarning = 'var(--k-color-shape-faint-warning, #fff1ca)';
|
|
84
|
+
export var shapeFaintWarningHover = 'var(--k-color-shape-faint-warning-hover, #f9e3ac)';
|
|
85
|
+
export var shapeFaintWarningPressed = 'var(--k-color-shape-faint-warning-pressed, #f1e4c4)';
|
|
86
86
|
export var shapeHeavyError = 'var(--k-color-shape-heavy-error, #6b1f1e)';
|
|
87
87
|
export var shapeHeavyNeutral = 'var(--k-color-shape-heavy-neutral, #292929)';
|
|
88
88
|
export var shapeHeavySuccess = 'var(--k-color-shape-heavy-success, #0b4a1f)';
|
|
89
|
-
export var shapeHeavyWarning = 'var(--k-color-shape-heavy-warning, #
|
|
89
|
+
export var shapeHeavyWarning = 'var(--k-color-shape-heavy-warning, #583400)';
|
|
90
90
|
export var shapeOtherAccentBoldDisabled = 'var(--k-color-shape-other-accent-bold-disabled, rgba(0, 0, 0, 0.32))';
|
|
91
91
|
export var shapeOtherBacklessHover = 'var(--k-color-shape-other-backless-hover, rgba(0, 0, 0, 0.06))';
|
|
92
92
|
export var shapeOtherBacklessPressed = 'var(--k-color-shape-other-backless-pressed, rgba(0, 0, 0, 0.16))';
|
|
@@ -124,9 +124,9 @@ export var shapePaleNeutralAlphaPressed = 'var(--k-color-shape-pale-neutral-alph
|
|
|
124
124
|
export var shapePaleSuccess = 'var(--k-color-shape-pale-success, #c3f3ca)';
|
|
125
125
|
export var shapePaleSuccessHover = 'var(--k-color-shape-pale-success-hover, #a7ebb2)';
|
|
126
126
|
export var shapePaleSuccessPressed = 'var(--k-color-shape-pale-success-pressed, #bae4c0)';
|
|
127
|
-
export var shapePaleWarning = 'var(--k-color-shape-pale-warning, #
|
|
128
|
-
export var shapePaleWarningHover = 'var(--k-color-shape-pale-warning-hover, #
|
|
129
|
-
export var shapePaleWarningPressed = 'var(--k-color-shape-pale-warning-pressed, #
|
|
127
|
+
export var shapePaleWarning = 'var(--k-color-shape-pale-warning, #ffe29a)';
|
|
128
|
+
export var shapePaleWarningHover = 'var(--k-color-shape-pale-warning-hover, #f8d286)';
|
|
129
|
+
export var shapePaleWarningPressed = 'var(--k-color-shape-pale-warning-pressed, #edd5a5)';
|
|
130
130
|
export var shapeSoftAccent = 'var(--k-color-shape-soft-accent, rgba(0, 0, 0, 0.32))';
|
|
131
131
|
export var shapeSoftAccentHover = 'var(--k-color-shape-soft-accent-hover, rgba(0, 0, 0, 0.4))';
|
|
132
132
|
export var shapeSoftAccentPressed = 'var(--k-color-shape-soft-accent-pressed, rgba(0, 0, 0, 0.48))';
|
|
@@ -142,9 +142,9 @@ export var shapeSoftNeutralAlphaPressed = 'var(--k-color-shape-soft-neutral-alph
|
|
|
142
142
|
export var shapeSoftSuccess = 'var(--k-color-shape-soft-success, #6cd984)';
|
|
143
143
|
export var shapeSoftSuccessHover = 'var(--k-color-shape-soft-success-hover, #4ecf70)';
|
|
144
144
|
export var shapeSoftSuccessPressed = 'var(--k-color-shape-soft-success-pressed, #58be6f)';
|
|
145
|
-
export var shapeSoftWarning = 'var(--k-color-shape-soft-warning, #
|
|
146
|
-
export var shapeSoftWarningHover = 'var(--k-color-shape-soft-warning-hover, #
|
|
147
|
-
export var shapeSoftWarningPressed = 'var(--k-color-shape-soft-warning-pressed, #
|
|
145
|
+
export var shapeSoftWarning = 'var(--k-color-shape-soft-warning, #ffd06f)';
|
|
146
|
+
export var shapeSoftWarningHover = 'var(--k-color-shape-soft-warning-hover, #f8c05c)';
|
|
147
|
+
export var shapeSoftWarningPressed = 'var(--k-color-shape-soft-warning-pressed, #e9b368)';
|
|
148
148
|
export var shapeInvertedBacklessHover = 'var(--k-color-shape-inverted-backless-hover, rgba(255, 255, 255, 0.06))';
|
|
149
149
|
export var shapeInvertedBacklessPressed = 'var(--k-color-shape-inverted-backless-pressed, rgba(255, 255, 255, 0.04))';
|
|
150
150
|
export var shapeInvertedDisabled = 'var(--k-color-shape-inverted-disabled, rgba(255, 255, 255, 0.06))';
|
|
@@ -215,9 +215,9 @@ export var lineOnBrandOriginalPale = 'var(--k-color-line-on-brand-original-pale,
|
|
|
215
215
|
export var lineSuccessBold = 'var(--k-color-line-success-bold, #008d3a)';
|
|
216
216
|
export var lineSuccessBoldHover = 'var(--k-color-line-success-bold-hover, #00b74e)';
|
|
217
217
|
export var lineSuccessBoldPressed = 'var(--k-color-line-success-bold-pressed, #458552)';
|
|
218
|
-
export var lineWarningBold = 'var(--k-color-line-warning-bold, #
|
|
219
|
-
export var lineWarningBoldHover = 'var(--k-color-line-warning-bold-hover, #
|
|
220
|
-
export var lineWarningBoldPressed = 'var(--k-color-line-warning-bold-pressed, #
|
|
218
|
+
export var lineWarningBold = 'var(--k-color-line-warning-bold, #fdaa00)';
|
|
219
|
+
export var lineWarningBoldHover = 'var(--k-color-line-warning-bold-hover, #e88b00)';
|
|
220
|
+
export var lineWarningBoldPressed = 'var(--k-color-line-warning-bold-pressed, #cb874c)';
|
|
221
221
|
export var lineInvertedAccentBold = 'var(--k-color-line-inverted-accent-bold, #d7d7d7)';
|
|
222
222
|
export var lineInvertedAccentBoldHover = 'var(--k-color-line-inverted-accent-bold-hover, #ffffff)';
|
|
223
223
|
export var lineInvertedAccentBoldPressed = 'var(--k-color-line-inverted-accent-bold-pressed, rgba(255, 255, 255, 0.64))';
|
|
@@ -237,9 +237,9 @@ export var lineInvertedNeutralPalePressed = 'var(--k-color-line-inverted-neutral
|
|
|
237
237
|
export var lineInvertedSuccessBold = 'var(--k-color-line-inverted-success-bold, #009b41)';
|
|
238
238
|
export var lineInvertedSuccessBoldHover = 'var(--k-color-line-inverted-success-bold-hover, #00b74e)';
|
|
239
239
|
export var lineInvertedSuccessBoldPressed = 'var(--k-color-line-inverted-success-bold-pressed, #458552)';
|
|
240
|
-
export var lineInvertedWarningBold = 'var(--k-color-line-inverted-warning-bold, #
|
|
241
|
-
export var lineInvertedWarningBoldHover = 'var(--k-color-line-inverted-warning-bold-hover, #
|
|
242
|
-
export var lineInvertedWarningBoldPressed = 'var(--k-color-line-inverted-warning-bold-pressed, #
|
|
240
|
+
export var lineInvertedWarningBold = 'var(--k-color-line-inverted-warning-bold, #fdaa00)';
|
|
241
|
+
export var lineInvertedWarningBoldHover = 'var(--k-color-line-inverted-warning-bold-hover, #ffbe3d)';
|
|
242
|
+
export var lineInvertedWarningBoldPressed = 'var(--k-color-line-inverted-warning-bold-pressed, #d69551)';
|
|
243
243
|
export var lineConstFaintBlack = 'var(--k-color-line-const-faint-black, rgba(0, 0, 0, 0.12))';
|
|
244
244
|
export var lineConstFaintWhite = 'var(--k-color-line-const-faint-white, rgba(255, 255, 255, 0.12))';
|
|
245
245
|
export var lineConstPaleBlack = 'var(--k-color-line-const-pale-black, rgba(0, 0, 0, 0.24))';
|
|
@@ -268,51 +268,51 @@ export var customizableBoldBlueDeep = 'var(--k-color-customizable-bold-blue-deep
|
|
|
268
268
|
export var customizableBoldGray = 'var(--k-color-customizable-bold-gray, #a4a4a4)';
|
|
269
269
|
export var customizableBoldGreen = 'var(--k-color-customizable-bold-green, #00b74e)';
|
|
270
270
|
export var customizableBoldMint = 'var(--k-color-customizable-bold-mint, #05bfa3)';
|
|
271
|
-
export var customizableBoldOrange = 'var(--k-color-customizable-bold-orange, #
|
|
271
|
+
export var customizableBoldOrange = 'var(--k-color-customizable-bold-orange, #f96100)';
|
|
272
272
|
export var customizableBoldPurple = 'var(--k-color-customizable-bold-purple, #cf60ec)';
|
|
273
273
|
export var customizableBoldRed = 'var(--k-color-customizable-bold-red, #ff5352)';
|
|
274
274
|
export var customizableBoldViolet = 'var(--k-color-customizable-bold-violet, #a17bff)';
|
|
275
|
-
export var customizableBoldYellow = 'var(--k-color-customizable-bold-yellow, #
|
|
275
|
+
export var customizableBoldYellow = 'var(--k-color-customizable-bold-yellow, #f2b100)';
|
|
276
276
|
export var customizableFaintBlack = 'var(--k-color-customizable-faint-black, #e4e4e4)';
|
|
277
277
|
export var customizableFaintBlue = 'var(--k-color-customizable-faint-blue, #e2f5ff)';
|
|
278
278
|
export var customizableFaintBlueDeep = 'var(--k-color-customizable-faint-blue-deep, #e8f3ff)';
|
|
279
279
|
export var customizableFaintGray = 'var(--k-color-customizable-faint-gray, #f2f2f2)';
|
|
280
280
|
export var customizableFaintGreen = 'var(--k-color-customizable-faint-green, #defbe2)';
|
|
281
281
|
export var customizableFaintMint = 'var(--k-color-customizable-faint-mint, #d2fcf6)';
|
|
282
|
-
export var customizableFaintOrange = 'var(--k-color-customizable-faint-orange, #
|
|
282
|
+
export var customizableFaintOrange = 'var(--k-color-customizable-faint-orange, #ffeee2)';
|
|
283
283
|
export var customizableFaintPurple = 'var(--k-color-customizable-faint-purple, #ffeaff)';
|
|
284
284
|
export var customizableFaintRed = 'var(--k-color-customizable-faint-red, #ffedef)';
|
|
285
285
|
export var customizableFaintViolet = 'var(--k-color-customizable-faint-violet, #f1f0ff)';
|
|
286
|
-
export var customizableFaintYellow = 'var(--k-color-customizable-faint-yellow, #
|
|
286
|
+
export var customizableFaintYellow = 'var(--k-color-customizable-faint-yellow, #fcf4be)';
|
|
287
287
|
export var customizableHeavyBlack = 'var(--k-color-customizable-heavy-black, #3d3d3d)';
|
|
288
288
|
export var customizableHeavyBlue = 'var(--k-color-customizable-heavy-blue, #005dae)';
|
|
289
289
|
export var customizableHeavyBlueDeep = 'var(--k-color-customizable-heavy-blue-deep, #234ece)';
|
|
290
290
|
export var customizableHeavyGray = 'var(--k-color-customizable-heavy-gray, #747474)';
|
|
291
291
|
export var customizableHeavyGreen = 'var(--k-color-customizable-heavy-green, #00722d)';
|
|
292
292
|
export var customizableHeavyMint = 'var(--k-color-customizable-heavy-mint, #027b68)';
|
|
293
|
-
export var customizableHeavyOrange = 'var(--k-color-customizable-heavy-orange, #
|
|
293
|
+
export var customizableHeavyOrange = 'var(--k-color-customizable-heavy-orange, #9c3a00)';
|
|
294
294
|
export var customizableHeavyPurple = 'var(--k-color-customizable-heavy-purple, #8b22a4)';
|
|
295
295
|
export var customizableHeavyRed = 'var(--k-color-customizable-heavy-red, #c50220)';
|
|
296
296
|
export var customizableHeavyViolet = 'var(--k-color-customizable-heavy-violet, #6936c2)';
|
|
297
|
-
export var customizableHeavyYellow = 'var(--k-color-customizable-heavy-yellow, #
|
|
297
|
+
export var customizableHeavyYellow = 'var(--k-color-customizable-heavy-yellow, #9a6a00)';
|
|
298
298
|
export var customizablePaleBlack = 'var(--k-color-customizable-pale-black, #d7d7d7)';
|
|
299
299
|
export var customizablePaleBlue = 'var(--k-color-customizable-pale-blue, #c7ebff)';
|
|
300
300
|
export var customizablePaleBlueDeep = 'var(--k-color-customizable-pale-blue-deep, #d2e7ff)';
|
|
301
301
|
export var customizablePaleGray = 'var(--k-color-customizable-pale-gray, #e4e4e4)';
|
|
302
302
|
export var customizablePaleGreen = 'var(--k-color-customizable-pale-green, #c3f3ca)';
|
|
303
303
|
export var customizablePaleMint = 'var(--k-color-customizable-pale-mint, #adf5e9)';
|
|
304
|
-
export var customizablePaleOrange = 'var(--k-color-customizable-pale-orange, #
|
|
304
|
+
export var customizablePaleOrange = 'var(--k-color-customizable-pale-orange, #ffddc7)';
|
|
305
305
|
export var customizablePalePurple = 'var(--k-color-customizable-pale-purple, #fbd6ff)';
|
|
306
306
|
export var customizablePaleRed = 'var(--k-color-customizable-pale-red, #ffdadd)';
|
|
307
307
|
export var customizablePaleViolet = 'var(--k-color-customizable-pale-violet, #e4e0ff)';
|
|
308
|
-
export var customizablePaleYellow = 'var(--k-color-customizable-pale-yellow, #
|
|
308
|
+
export var customizablePaleYellow = 'var(--k-color-customizable-pale-yellow, #f7e68e)';
|
|
309
309
|
export var customizableSoftBlack = 'var(--k-color-customizable-soft-black, #b1b1b1)';
|
|
310
310
|
export var customizableSoftBlue = 'var(--k-color-customizable-soft-blue, #80c5ff)';
|
|
311
311
|
export var customizableSoftBlueDeep = 'var(--k-color-customizable-soft-blue-deep, #99bfff)';
|
|
312
312
|
export var customizableSoftGray = 'var(--k-color-customizable-soft-gray, #d7d7d7)';
|
|
313
313
|
export var customizableSoftGreen = 'var(--k-color-customizable-soft-green, #6cd984)';
|
|
314
314
|
export var customizableSoftMint = 'var(--k-color-customizable-soft-mint, #4fe6cc)';
|
|
315
|
-
export var customizableSoftOrange = 'var(--k-color-customizable-soft-orange, #
|
|
315
|
+
export var customizableSoftOrange = 'var(--k-color-customizable-soft-orange, #ffa573)';
|
|
316
316
|
export var customizableSoftPurple = 'var(--k-color-customizable-soft-purple, #ea9aff)';
|
|
317
317
|
export var customizableSoftRed = 'var(--k-color-customizable-soft-red, #ffa09b)';
|
|
318
318
|
export var customizableSoftViolet = 'var(--k-color-customizable-soft-violet, #c1b0ff)';
|
package/get-colors.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getColors } from './lib/get-colors.js';
|
package/get-colors.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { getColors } from './lib/get-colors.js';
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
export declare const textAccentHeavy = "var(--k-color-text-accent-heavy)";
|
|
2
|
+
export declare const textAccentHeavyHover = "var(--k-color-text-accent-heavy-hover)";
|
|
3
|
+
export declare const textAccentHeavyPressed = "var(--k-color-text-accent-heavy-pressed)";
|
|
4
|
+
export declare const textErrorHeavy = "var(--k-color-text-error-heavy)";
|
|
5
|
+
export declare const textErrorHeavyHover = "var(--k-color-text-error-heavy-hover)";
|
|
6
|
+
export declare const textErrorHeavyPressed = "var(--k-color-text-error-heavy-pressed)";
|
|
7
|
+
export declare const textInvertedAccentHeavy = "var(--k-color-text-inverted-accent-heavy)";
|
|
8
|
+
export declare const textInvertedAccentHeavyHover = "var(--k-color-text-inverted-accent-heavy-hover)";
|
|
9
|
+
export declare const textInvertedAccentHeavyPressed = "var(--k-color-text-inverted-accent-heavy-pressed)";
|
|
10
|
+
export declare const textInvertedErrorHeavy = "var(--k-color-text-inverted-error-heavy)";
|
|
11
|
+
export declare const textInvertedErrorHeavyHover = "var(--k-color-text-inverted-error-heavy-hover)";
|
|
12
|
+
export declare const textInvertedErrorHeavyPressed = "var(--k-color-text-inverted-error-heavy-pressed)";
|
|
13
|
+
export declare const textInvertedNeutralFaint = "var(--k-color-text-inverted-neutral-faint)";
|
|
14
|
+
export declare const textInvertedNeutralHeavy = "var(--k-color-text-inverted-neutral-heavy)";
|
|
15
|
+
export declare const textInvertedNeutralPale = "var(--k-color-text-inverted-neutral-pale)";
|
|
16
|
+
export declare const textInvertedNeutralSoft = "var(--k-color-text-inverted-neutral-soft)";
|
|
17
|
+
export declare const textInvertedSuccessHeavy = "var(--k-color-text-inverted-success-heavy)";
|
|
18
|
+
export declare const textInvertedSuccessHeavyHover = "var(--k-color-text-inverted-success-heavy-hover)";
|
|
19
|
+
export declare const textInvertedSuccessHeavyPressed = "var(--k-color-text-inverted-success-heavy-pressed)";
|
|
20
|
+
export declare const textInvertedWarningHeavy = "var(--k-color-text-inverted-warning-heavy)";
|
|
21
|
+
export declare const textInvertedWarningHeavyHover = "var(--k-color-text-inverted-warning-heavy-hover)";
|
|
22
|
+
export declare const textInvertedWarningHeavyPressed = "var(--k-color-text-inverted-warning-heavy-pressed)";
|
|
23
|
+
export declare const textLogo = "var(--k-color-text-logo)";
|
|
24
|
+
export declare const textNeutralFaint = "var(--k-color-text-neutral-faint)";
|
|
25
|
+
export declare const textNeutralHeavy = "var(--k-color-text-neutral-heavy)";
|
|
26
|
+
export declare const textNeutralPale = "var(--k-color-text-neutral-pale)";
|
|
27
|
+
export declare const textNeutralSoft = "var(--k-color-text-neutral-soft)";
|
|
28
|
+
export declare const textSuccessHeavy = "var(--k-color-text-success-heavy)";
|
|
29
|
+
export declare const textSuccessHeavyHover = "var(--k-color-text-success-heavy-hover)";
|
|
30
|
+
export declare const textSuccessHeavyPressed = "var(--k-color-text-success-heavy-pressed)";
|
|
31
|
+
export declare const textWarningHeavy = "var(--k-color-text-warning-heavy)";
|
|
32
|
+
export declare const textWarningHeavyHover = "var(--k-color-text-warning-heavy-hover)";
|
|
33
|
+
export declare const textWarningHeavyPressed = "var(--k-color-text-warning-heavy-pressed)";
|
|
34
|
+
export declare const textConstFaintBlack = "var(--k-color-text-const-faint-black)";
|
|
35
|
+
export declare const textConstFaintWhite = "var(--k-color-text-const-faint-white)";
|
|
36
|
+
export declare const textConstHeavyBlack = "var(--k-color-text-const-heavy-black)";
|
|
37
|
+
export declare const textConstHeavyWhite = "var(--k-color-text-const-heavy-white)";
|
|
38
|
+
export declare const textConstPaleBlack = "var(--k-color-text-const-pale-black)";
|
|
39
|
+
export declare const textConstPaleWhite = "var(--k-color-text-const-pale-white)";
|
|
40
|
+
export declare const textConstSoftBlack = "var(--k-color-text-const-soft-black)";
|
|
41
|
+
export declare const textConstSoftWhite = "var(--k-color-text-const-soft-white)";
|
|
42
|
+
export declare const textOnAccentBoldFaint = "var(--k-color-text-on-accent-bold-faint)";
|
|
43
|
+
export declare const textOnAccentBoldHeavy = "var(--k-color-text-on-accent-bold-heavy)";
|
|
44
|
+
export declare const textOnAccentBoldPale = "var(--k-color-text-on-accent-bold-pale)";
|
|
45
|
+
export declare const textOnAccentBoldSoft = "var(--k-color-text-on-accent-bold-soft)";
|
|
46
|
+
export declare const textOnBrandOriginalFaint = "var(--k-color-text-on-brand-original-faint)";
|
|
47
|
+
export declare const textOnBrandOriginalHeavy = "var(--k-color-text-on-brand-original-heavy)";
|
|
48
|
+
export declare const textOnBrandOriginalPale = "var(--k-color-text-on-brand-original-pale)";
|
|
49
|
+
export declare const textOnBrandOriginalSoft = "var(--k-color-text-on-brand-original-soft)";
|
|
50
|
+
export declare const shapeBoldAccent = "var(--k-color-shape-bold-accent)";
|
|
51
|
+
export declare const shapeBoldAccentHover = "var(--k-color-shape-bold-accent-hover)";
|
|
52
|
+
export declare const shapeBoldAccentPressed = "var(--k-color-shape-bold-accent-pressed)";
|
|
53
|
+
export declare const shapeBoldBrandOriginal = "var(--k-color-shape-bold-brand-original)";
|
|
54
|
+
export declare const shapeBoldBrandOriginalHover = "var(--k-color-shape-bold-brand-original-hover)";
|
|
55
|
+
export declare const shapeBoldBrandOriginalPressed = "var(--k-color-shape-bold-brand-original-pressed)";
|
|
56
|
+
export declare const shapeBoldError = "var(--k-color-shape-bold-error)";
|
|
57
|
+
export declare const shapeBoldErrorHover = "var(--k-color-shape-bold-error-hover)";
|
|
58
|
+
export declare const shapeBoldErrorPressed = "var(--k-color-shape-bold-error-pressed)";
|
|
59
|
+
export declare const shapeBoldNeutral = "var(--k-color-shape-bold-neutral)";
|
|
60
|
+
export declare const shapeBoldNeutralHover = "var(--k-color-shape-bold-neutral-hover)";
|
|
61
|
+
export declare const shapeBoldNeutralPressed = "var(--k-color-shape-bold-neutral-pressed)";
|
|
62
|
+
export declare const shapeBoldSuccess = "var(--k-color-shape-bold-success)";
|
|
63
|
+
export declare const shapeBoldSuccessHover = "var(--k-color-shape-bold-success-hover)";
|
|
64
|
+
export declare const shapeBoldSuccessPressed = "var(--k-color-shape-bold-success-pressed)";
|
|
65
|
+
export declare const shapeBoldWarning = "var(--k-color-shape-bold-warning)";
|
|
66
|
+
export declare const shapeBoldWarningHover = "var(--k-color-shape-bold-warning-hover)";
|
|
67
|
+
export declare const shapeBoldWarningPressed = "var(--k-color-shape-bold-warning-pressed)";
|
|
68
|
+
export declare const shapeFaintAccent = "var(--k-color-shape-faint-accent)";
|
|
69
|
+
export declare const shapeFaintAccentHover = "var(--k-color-shape-faint-accent-hover)";
|
|
70
|
+
export declare const shapeFaintAccentPressed = "var(--k-color-shape-faint-accent-pressed)";
|
|
71
|
+
export declare const shapeFaintBrand = "var(--k-color-shape-faint-brand)";
|
|
72
|
+
export declare const shapeFaintBrandHover = "var(--k-color-shape-faint-brand-hover)";
|
|
73
|
+
export declare const shapeFaintBrandPressed = "var(--k-color-shape-faint-brand-pressed)";
|
|
74
|
+
export declare const shapeFaintError = "var(--k-color-shape-faint-error)";
|
|
75
|
+
export declare const shapeFaintErrorHover = "var(--k-color-shape-faint-error-hover)";
|
|
76
|
+
export declare const shapeFaintErrorPressed = "var(--k-color-shape-faint-error-pressed)";
|
|
77
|
+
export declare const shapeFaintNeutralAlpha = "var(--k-color-shape-faint-neutral-alpha)";
|
|
78
|
+
export declare const shapeFaintNeutralAlphaHover = "var(--k-color-shape-faint-neutral-alpha-hover)";
|
|
79
|
+
export declare const shapeFaintNeutralAlphaPressed = "var(--k-color-shape-faint-neutral-alpha-pressed)";
|
|
80
|
+
export declare const shapeFaintSuccess = "var(--k-color-shape-faint-success)";
|
|
81
|
+
export declare const shapeFaintSuccessHover = "var(--k-color-shape-faint-success-hover)";
|
|
82
|
+
export declare const shapeFaintSuccessPressed = "var(--k-color-shape-faint-success-pressed)";
|
|
83
|
+
export declare const shapeFaintWarning = "var(--k-color-shape-faint-warning)";
|
|
84
|
+
export declare const shapeFaintWarningHover = "var(--k-color-shape-faint-warning-hover)";
|
|
85
|
+
export declare const shapeFaintWarningPressed = "var(--k-color-shape-faint-warning-pressed)";
|
|
86
|
+
export declare const shapeHeavyError = "var(--k-color-shape-heavy-error)";
|
|
87
|
+
export declare const shapeHeavyNeutral = "var(--k-color-shape-heavy-neutral)";
|
|
88
|
+
export declare const shapeHeavySuccess = "var(--k-color-shape-heavy-success)";
|
|
89
|
+
export declare const shapeHeavyWarning = "var(--k-color-shape-heavy-warning)";
|
|
90
|
+
export declare const shapeOtherAccentBoldDisabled = "var(--k-color-shape-other-accent-bold-disabled)";
|
|
91
|
+
export declare const shapeOtherBacklessHover = "var(--k-color-shape-other-backless-hover)";
|
|
92
|
+
export declare const shapeOtherBacklessPressed = "var(--k-color-shape-other-backless-pressed)";
|
|
93
|
+
export declare const shapeOtherBase = "var(--k-color-shape-other-base)";
|
|
94
|
+
export declare const shapeOtherBaseHover = "var(--k-color-shape-other-base-hover)";
|
|
95
|
+
export declare const shapeOtherBasePressed = "var(--k-color-shape-other-base-pressed)";
|
|
96
|
+
export declare const shapeOtherDisabled = "var(--k-color-shape-other-disabled)";
|
|
97
|
+
export declare const shapeOtherField = "var(--k-color-shape-other-field)";
|
|
98
|
+
export declare const shapeOtherFieldHover = "var(--k-color-shape-other-field-hover)";
|
|
99
|
+
export declare const shapeOtherFieldPressed = "var(--k-color-shape-other-field-pressed)";
|
|
100
|
+
export declare const shapeOtherLow = "var(--k-color-shape-other-low)";
|
|
101
|
+
export declare const shapeOtherLowHover = "var(--k-color-shape-other-low-hover)";
|
|
102
|
+
export declare const shapeOtherLowPressed = "var(--k-color-shape-other-low-pressed)";
|
|
103
|
+
export declare const shapeOtherNeutralFaintSolid = "var(--k-color-shape-other-neutral-faint-solid)";
|
|
104
|
+
export declare const shapeOtherNeutralFaintSolidHover = "var(--k-color-shape-other-neutral-faint-solid-hover)";
|
|
105
|
+
export declare const shapeOtherNeutralFaintSolidPressed = "var(--k-color-shape-other-neutral-faint-solid-pressed)";
|
|
106
|
+
export declare const shapeOtherNeutralPaleSolid = "var(--k-color-shape-other-neutral-pale-solid)";
|
|
107
|
+
export declare const shapeOtherNeutralPaleSolidHover = "var(--k-color-shape-other-neutral-pale-solid-hover)";
|
|
108
|
+
export declare const shapeOtherNeutralPaleSolidPressed = "var(--k-color-shape-other-neutral-pale-solid-pressed)";
|
|
109
|
+
export declare const shapeOtherNeutralSoftSolid = "var(--k-color-shape-other-neutral-soft-solid)";
|
|
110
|
+
export declare const shapeOtherNeutralSoftSolidHover = "var(--k-color-shape-other-neutral-soft-solid-hover)";
|
|
111
|
+
export declare const shapeOtherNeutralSoftSolidPressed = "var(--k-color-shape-other-neutral-soft-solid-pressed)";
|
|
112
|
+
export declare const shapePaleAccent = "var(--k-color-shape-pale-accent)";
|
|
113
|
+
export declare const shapePaleAccentHover = "var(--k-color-shape-pale-accent-hover)";
|
|
114
|
+
export declare const shapePaleAccentPressed = "var(--k-color-shape-pale-accent-pressed)";
|
|
115
|
+
export declare const shapePaleBrand = "var(--k-color-shape-pale-brand)";
|
|
116
|
+
export declare const shapePaleBrandHover = "var(--k-color-shape-pale-brand-hover)";
|
|
117
|
+
export declare const shapePaleBrandPressed = "var(--k-color-shape-pale-brand-pressed)";
|
|
118
|
+
export declare const shapePaleError = "var(--k-color-shape-pale-error)";
|
|
119
|
+
export declare const shapePaleErrorHover = "var(--k-color-shape-pale-error-hover)";
|
|
120
|
+
export declare const shapePaleErrorPressed = "var(--k-color-shape-pale-error-pressed)";
|
|
121
|
+
export declare const shapePaleNeutralAlpha = "var(--k-color-shape-pale-neutral-alpha)";
|
|
122
|
+
export declare const shapePaleNeutralAlphaHover = "var(--k-color-shape-pale-neutral-alpha-hover)";
|
|
123
|
+
export declare const shapePaleNeutralAlphaPressed = "var(--k-color-shape-pale-neutral-alpha-pressed)";
|
|
124
|
+
export declare const shapePaleSuccess = "var(--k-color-shape-pale-success)";
|
|
125
|
+
export declare const shapePaleSuccessHover = "var(--k-color-shape-pale-success-hover)";
|
|
126
|
+
export declare const shapePaleSuccessPressed = "var(--k-color-shape-pale-success-pressed)";
|
|
127
|
+
export declare const shapePaleWarning = "var(--k-color-shape-pale-warning)";
|
|
128
|
+
export declare const shapePaleWarningHover = "var(--k-color-shape-pale-warning-hover)";
|
|
129
|
+
export declare const shapePaleWarningPressed = "var(--k-color-shape-pale-warning-pressed)";
|
|
130
|
+
export declare const shapeSoftAccent = "var(--k-color-shape-soft-accent)";
|
|
131
|
+
export declare const shapeSoftAccentHover = "var(--k-color-shape-soft-accent-hover)";
|
|
132
|
+
export declare const shapeSoftAccentPressed = "var(--k-color-shape-soft-accent-pressed)";
|
|
133
|
+
export declare const shapeSoftBrand = "var(--k-color-shape-soft-brand)";
|
|
134
|
+
export declare const shapeSoftBrandHover = "var(--k-color-shape-soft-brand-hover)";
|
|
135
|
+
export declare const shapeSoftBrandPressed = "var(--k-color-shape-soft-brand-pressed)";
|
|
136
|
+
export declare const shapeSoftError = "var(--k-color-shape-soft-error)";
|
|
137
|
+
export declare const shapeSoftErrorHover = "var(--k-color-shape-soft-error-hover)";
|
|
138
|
+
export declare const shapeSoftErrorPressed = "var(--k-color-shape-soft-error-pressed)";
|
|
139
|
+
export declare const shapeSoftNeutralAlpha = "var(--k-color-shape-soft-neutral-alpha)";
|
|
140
|
+
export declare const shapeSoftNeutralAlphaHover = "var(--k-color-shape-soft-neutral-alpha-hover)";
|
|
141
|
+
export declare const shapeSoftNeutralAlphaPressed = "var(--k-color-shape-soft-neutral-alpha-pressed)";
|
|
142
|
+
export declare const shapeSoftSuccess = "var(--k-color-shape-soft-success)";
|
|
143
|
+
export declare const shapeSoftSuccessHover = "var(--k-color-shape-soft-success-hover)";
|
|
144
|
+
export declare const shapeSoftSuccessPressed = "var(--k-color-shape-soft-success-pressed)";
|
|
145
|
+
export declare const shapeSoftWarning = "var(--k-color-shape-soft-warning)";
|
|
146
|
+
export declare const shapeSoftWarningHover = "var(--k-color-shape-soft-warning-hover)";
|
|
147
|
+
export declare const shapeSoftWarningPressed = "var(--k-color-shape-soft-warning-pressed)";
|
|
148
|
+
export declare const shapeInvertedBacklessHover = "var(--k-color-shape-inverted-backless-hover)";
|
|
149
|
+
export declare const shapeInvertedBacklessPressed = "var(--k-color-shape-inverted-backless-pressed)";
|
|
150
|
+
export declare const shapeInvertedDisabled = "var(--k-color-shape-inverted-disabled)";
|
|
151
|
+
export declare const shapeInvertedNeutralFaintAlpha = "var(--k-color-shape-inverted-neutral-faint-alpha)";
|
|
152
|
+
export declare const shapeInvertedNeutralFaintAlphaHover = "var(--k-color-shape-inverted-neutral-faint-alpha-hover)";
|
|
153
|
+
export declare const shapeInvertedNeutralFaintAlphaPressed = "var(--k-color-shape-inverted-neutral-faint-alpha-pressed)";
|
|
154
|
+
export declare const shapeInvertedNeutralHeavy = "var(--k-color-shape-inverted-neutral-heavy)";
|
|
155
|
+
export declare const shapeInvertedNeutralHeavyHover = "var(--k-color-shape-inverted-neutral-heavy-hover)";
|
|
156
|
+
export declare const shapeInvertedNeutralHeavyPressed = "var(--k-color-shape-inverted-neutral-heavy-pressed)";
|
|
157
|
+
export declare const shapeInvertedNeutralPaleAlpha = "var(--k-color-shape-inverted-neutral-pale-alpha)";
|
|
158
|
+
export declare const shapeInvertedNeutralPaleAlphaHover = "var(--k-color-shape-inverted-neutral-pale-alpha-hover)";
|
|
159
|
+
export declare const shapeInvertedNeutralPaleAlphaPressed = "var(--k-color-shape-inverted-neutral-pale-alpha-pressed)";
|
|
160
|
+
export declare const shapeInvertedNeutralSoftAlpha = "var(--k-color-shape-inverted-neutral-soft-alpha)";
|
|
161
|
+
export declare const shapeInvertedNeutralSoftAlphaHover = "var(--k-color-shape-inverted-neutral-soft-alpha-hover)";
|
|
162
|
+
export declare const shapeInvertedNeutralSoftAlphaPressed = "var(--k-color-shape-inverted-neutral-soft-alpha-pressed)";
|
|
163
|
+
export declare const shapeConstBacklessBlackHover = "var(--k-color-shape-const-backless-black-hover)";
|
|
164
|
+
export declare const shapeConstBacklessBlackPressed = "var(--k-color-shape-const-backless-black-pressed)";
|
|
165
|
+
export declare const shapeConstBacklessWhiteHover = "var(--k-color-shape-const-backless-white-hover)";
|
|
166
|
+
export declare const shapeConstBacklessWhitePressed = "var(--k-color-shape-const-backless-white-pressed)";
|
|
167
|
+
export declare const shapeConstDisabledBlack = "var(--k-color-shape-const-disabled-black)";
|
|
168
|
+
export declare const shapeConstDisabledWhite = "var(--k-color-shape-const-disabled-white)";
|
|
169
|
+
export declare const shapeConstFaintBlack = "var(--k-color-shape-const-faint-black)";
|
|
170
|
+
export declare const shapeConstFaintBlackHover = "var(--k-color-shape-const-faint-black-hover)";
|
|
171
|
+
export declare const shapeConstFaintBlackPressed = "var(--k-color-shape-const-faint-black-pressed)";
|
|
172
|
+
export declare const shapeConstFaintWhite = "var(--k-color-shape-const-faint-white)";
|
|
173
|
+
export declare const shapeConstFaintWhiteHover = "var(--k-color-shape-const-faint-white-hover)";
|
|
174
|
+
export declare const shapeConstFaintWhitePressed = "var(--k-color-shape-const-faint-white-pressed)";
|
|
175
|
+
export declare const shapeConstHeavyBlack = "var(--k-color-shape-const-heavy-black)";
|
|
176
|
+
export declare const shapeConstHeavyBlackHover = "var(--k-color-shape-const-heavy-black-hover)";
|
|
177
|
+
export declare const shapeConstHeavyBlackPressed = "var(--k-color-shape-const-heavy-black-pressed)";
|
|
178
|
+
export declare const shapeConstHeavyWhite = "var(--k-color-shape-const-heavy-white)";
|
|
179
|
+
export declare const shapeConstHeavyWhiteHover = "var(--k-color-shape-const-heavy-white-hover)";
|
|
180
|
+
export declare const shapeConstHeavyWhitePressed = "var(--k-color-shape-const-heavy-white-pressed)";
|
|
181
|
+
export declare const shapeConstPaleBlack = "var(--k-color-shape-const-pale-black)";
|
|
182
|
+
export declare const shapeConstPaleBlackHover = "var(--k-color-shape-const-pale-black-hover)";
|
|
183
|
+
export declare const shapeConstPaleBlackPressed = "var(--k-color-shape-const-pale-black-pressed)";
|
|
184
|
+
export declare const shapeConstPaleWhite = "var(--k-color-shape-const-pale-white)";
|
|
185
|
+
export declare const shapeConstPaleWhiteHover = "var(--k-color-shape-const-pale-white-hover)";
|
|
186
|
+
export declare const shapeConstPaleWhitePressed = "var(--k-color-shape-const-pale-white-pressed)";
|
|
187
|
+
export declare const shapeConstPromo = "var(--k-color-shape-const-promo)";
|
|
188
|
+
export declare const shapeConstSoftBlack = "var(--k-color-shape-const-soft-black)";
|
|
189
|
+
export declare const shapeConstSoftBlackHover = "var(--k-color-shape-const-soft-black-hover)";
|
|
190
|
+
export declare const shapeConstSoftBlackPressed = "var(--k-color-shape-const-soft-black-pressed)";
|
|
191
|
+
export declare const shapeConstSoftWhite = "var(--k-color-shape-const-soft-white)";
|
|
192
|
+
export declare const shapeConstSoftWhiteHover = "var(--k-color-shape-const-soft-white-hover)";
|
|
193
|
+
export declare const shapeConstSoftWhitePressed = "var(--k-color-shape-const-soft-white-pressed)";
|
|
194
|
+
export declare const lineAccentBold = "var(--k-color-line-accent-bold)";
|
|
195
|
+
export declare const lineAccentBoldHover = "var(--k-color-line-accent-bold-hover)";
|
|
196
|
+
export declare const lineAccentBoldPressed = "var(--k-color-line-accent-bold-pressed)";
|
|
197
|
+
export declare const lineAccentPale = "var(--k-color-line-accent-pale)";
|
|
198
|
+
export declare const lineAccentPaleHover = "var(--k-color-line-accent-pale-hover)";
|
|
199
|
+
export declare const lineAccentPalePressed = "var(--k-color-line-accent-pale-pressed)";
|
|
200
|
+
export declare const lineAccentSoft = "var(--k-color-line-accent-soft)";
|
|
201
|
+
export declare const lineAccentSoftHover = "var(--k-color-line-accent-soft-hover)";
|
|
202
|
+
export declare const lineAccentSoftPressed = "var(--k-color-line-accent-soft-pressed)";
|
|
203
|
+
export declare const lineBrandOriginal = "var(--k-color-line-brand-original)";
|
|
204
|
+
export declare const lineErrorBold = "var(--k-color-line-error-bold)";
|
|
205
|
+
export declare const lineErrorBoldHover = "var(--k-color-line-error-bold-hover)";
|
|
206
|
+
export declare const lineErrorBoldPressed = "var(--k-color-line-error-bold-pressed)";
|
|
207
|
+
export declare const lineNeutralFaint = "var(--k-color-line-neutral-faint)";
|
|
208
|
+
export declare const lineNeutralPale = "var(--k-color-line-neutral-pale)";
|
|
209
|
+
export declare const lineNeutralPaleHover = "var(--k-color-line-neutral-pale-hover)";
|
|
210
|
+
export declare const lineNeutralPalePressed = "var(--k-color-line-neutral-pale-pressed)";
|
|
211
|
+
export declare const lineOnAccentBoldFaint = "var(--k-color-line-on-accent-bold-faint)";
|
|
212
|
+
export declare const lineOnAccentBoldPale = "var(--k-color-line-on-accent-bold-pale)";
|
|
213
|
+
export declare const lineOnBrandOriginalFaint = "var(--k-color-line-on-brand-original-faint)";
|
|
214
|
+
export declare const lineOnBrandOriginalPale = "var(--k-color-line-on-brand-original-pale)";
|
|
215
|
+
export declare const lineSuccessBold = "var(--k-color-line-success-bold)";
|
|
216
|
+
export declare const lineSuccessBoldHover = "var(--k-color-line-success-bold-hover)";
|
|
217
|
+
export declare const lineSuccessBoldPressed = "var(--k-color-line-success-bold-pressed)";
|
|
218
|
+
export declare const lineWarningBold = "var(--k-color-line-warning-bold)";
|
|
219
|
+
export declare const lineWarningBoldHover = "var(--k-color-line-warning-bold-hover)";
|
|
220
|
+
export declare const lineWarningBoldPressed = "var(--k-color-line-warning-bold-pressed)";
|
|
221
|
+
export declare const lineInvertedAccentBold = "var(--k-color-line-inverted-accent-bold)";
|
|
222
|
+
export declare const lineInvertedAccentBoldHover = "var(--k-color-line-inverted-accent-bold-hover)";
|
|
223
|
+
export declare const lineInvertedAccentBoldPressed = "var(--k-color-line-inverted-accent-bold-pressed)";
|
|
224
|
+
export declare const lineInvertedAccentPale = "var(--k-color-line-inverted-accent-pale)";
|
|
225
|
+
export declare const lineInvertedAccentPaleHover = "var(--k-color-line-inverted-accent-pale-hover)";
|
|
226
|
+
export declare const lineInvertedAccentPalePressed = "var(--k-color-line-inverted-accent-pale-pressed)";
|
|
227
|
+
export declare const lineInvertedAccentSoft = "var(--k-color-line-inverted-accent-soft)";
|
|
228
|
+
export declare const lineInvertedAccentSoftHover = "var(--k-color-line-inverted-accent-soft-hover)";
|
|
229
|
+
export declare const lineInvertedAccentSoftPressed = "var(--k-color-line-inverted-accent-soft-pressed)";
|
|
230
|
+
export declare const lineInvertedErrorBold = "var(--k-color-line-inverted-error-bold)";
|
|
231
|
+
export declare const lineInvertedErrorBoldHover = "var(--k-color-line-inverted-error-bold-hover)";
|
|
232
|
+
export declare const lineInvertedErrorBoldPressed = "var(--k-color-line-inverted-error-bold-pressed)";
|
|
233
|
+
export declare const lineInvertedNeutralFaint = "var(--k-color-line-inverted-neutral-faint)";
|
|
234
|
+
export declare const lineInvertedNeutralPale = "var(--k-color-line-inverted-neutral-pale)";
|
|
235
|
+
export declare const lineInvertedNeutralPaleHover = "var(--k-color-line-inverted-neutral-pale-hover)";
|
|
236
|
+
export declare const lineInvertedNeutralPalePressed = "var(--k-color-line-inverted-neutral-pale-pressed)";
|
|
237
|
+
export declare const lineInvertedSuccessBold = "var(--k-color-line-inverted-success-bold)";
|
|
238
|
+
export declare const lineInvertedSuccessBoldHover = "var(--k-color-line-inverted-success-bold-hover)";
|
|
239
|
+
export declare const lineInvertedSuccessBoldPressed = "var(--k-color-line-inverted-success-bold-pressed)";
|
|
240
|
+
export declare const lineInvertedWarningBold = "var(--k-color-line-inverted-warning-bold)";
|
|
241
|
+
export declare const lineInvertedWarningBoldHover = "var(--k-color-line-inverted-warning-bold-hover)";
|
|
242
|
+
export declare const lineInvertedWarningBoldPressed = "var(--k-color-line-inverted-warning-bold-pressed)";
|
|
243
|
+
export declare const lineConstFaintBlack = "var(--k-color-line-const-faint-black)";
|
|
244
|
+
export declare const lineConstFaintWhite = "var(--k-color-line-const-faint-white)";
|
|
245
|
+
export declare const lineConstPaleBlack = "var(--k-color-line-const-pale-black)";
|
|
246
|
+
export declare const lineConstPaleBlackHover = "var(--k-color-line-const-pale-black-hover)";
|
|
247
|
+
export declare const lineConstPaleBlackPressed = "var(--k-color-line-const-pale-black-pressed)";
|
|
248
|
+
export declare const lineConstPaleWhite = "var(--k-color-line-const-pale-white)";
|
|
249
|
+
export declare const lineConstPaleWhiteHover = "var(--k-color-line-const-pale-white-hover)";
|
|
250
|
+
export declare const lineConstPaleWhitePressed = "var(--k-color-line-const-pale-white-pressed)";
|
|
251
|
+
export declare const surfaceBase = "var(--k-color-surface-base)";
|
|
252
|
+
export declare const surfaceHigh = "var(--k-color-surface-high)";
|
|
253
|
+
export declare const surfaceLow = "var(--k-color-surface-low)";
|
|
254
|
+
export declare const surfaceModalBackdrop = "var(--k-color-surface-modal-backdrop)";
|
|
255
|
+
export declare const illustrationBlack = "var(--k-color-illustration-black)";
|
|
256
|
+
export declare const illustrationBrand = "var(--k-color-illustration-brand)";
|
|
257
|
+
export declare const illustrationComplement = "var(--k-color-illustration-complement)";
|
|
258
|
+
export declare const illustrationInvertedNeutral = "var(--k-color-illustration-inverted-neutral)";
|
|
259
|
+
export declare const illustrationNeutral = "var(--k-color-illustration-neutral)";
|
|
260
|
+
export declare const illustrationOnBrand = "var(--k-color-illustration-on-brand)";
|
|
261
|
+
export declare const illustrationOnComplement = "var(--k-color-illustration-on-complement)";
|
|
262
|
+
export declare const illustrationPromo = "var(--k-color-illustration-promo)";
|
|
263
|
+
export declare const illustrationSymbol = "var(--k-color-illustration-symbol)";
|
|
264
|
+
export declare const illustrationWhite = "var(--k-color-illustration-white)";
|
|
265
|
+
export declare const customizableBoldBlack = "var(--k-color-customizable-bold-black)";
|
|
266
|
+
export declare const customizableBoldBlue = "var(--k-color-customizable-bold-blue)";
|
|
267
|
+
export declare const customizableBoldBlueDeep = "var(--k-color-customizable-bold-blue-deep)";
|
|
268
|
+
export declare const customizableBoldGray = "var(--k-color-customizable-bold-gray)";
|
|
269
|
+
export declare const customizableBoldGreen = "var(--k-color-customizable-bold-green)";
|
|
270
|
+
export declare const customizableBoldMint = "var(--k-color-customizable-bold-mint)";
|
|
271
|
+
export declare const customizableBoldOrange = "var(--k-color-customizable-bold-orange)";
|
|
272
|
+
export declare const customizableBoldPurple = "var(--k-color-customizable-bold-purple)";
|
|
273
|
+
export declare const customizableBoldRed = "var(--k-color-customizable-bold-red)";
|
|
274
|
+
export declare const customizableBoldViolet = "var(--k-color-customizable-bold-violet)";
|
|
275
|
+
export declare const customizableBoldYellow = "var(--k-color-customizable-bold-yellow)";
|
|
276
|
+
export declare const customizableFaintBlack = "var(--k-color-customizable-faint-black)";
|
|
277
|
+
export declare const customizableFaintBlue = "var(--k-color-customizable-faint-blue)";
|
|
278
|
+
export declare const customizableFaintBlueDeep = "var(--k-color-customizable-faint-blue-deep)";
|
|
279
|
+
export declare const customizableFaintGray = "var(--k-color-customizable-faint-gray)";
|
|
280
|
+
export declare const customizableFaintGreen = "var(--k-color-customizable-faint-green)";
|
|
281
|
+
export declare const customizableFaintMint = "var(--k-color-customizable-faint-mint)";
|
|
282
|
+
export declare const customizableFaintOrange = "var(--k-color-customizable-faint-orange)";
|
|
283
|
+
export declare const customizableFaintPurple = "var(--k-color-customizable-faint-purple)";
|
|
284
|
+
export declare const customizableFaintRed = "var(--k-color-customizable-faint-red)";
|
|
285
|
+
export declare const customizableFaintViolet = "var(--k-color-customizable-faint-violet)";
|
|
286
|
+
export declare const customizableFaintYellow = "var(--k-color-customizable-faint-yellow)";
|
|
287
|
+
export declare const customizableHeavyBlack = "var(--k-color-customizable-heavy-black)";
|
|
288
|
+
export declare const customizableHeavyBlue = "var(--k-color-customizable-heavy-blue)";
|
|
289
|
+
export declare const customizableHeavyBlueDeep = "var(--k-color-customizable-heavy-blue-deep)";
|
|
290
|
+
export declare const customizableHeavyGray = "var(--k-color-customizable-heavy-gray)";
|
|
291
|
+
export declare const customizableHeavyGreen = "var(--k-color-customizable-heavy-green)";
|
|
292
|
+
export declare const customizableHeavyMint = "var(--k-color-customizable-heavy-mint)";
|
|
293
|
+
export declare const customizableHeavyOrange = "var(--k-color-customizable-heavy-orange)";
|
|
294
|
+
export declare const customizableHeavyPurple = "var(--k-color-customizable-heavy-purple)";
|
|
295
|
+
export declare const customizableHeavyRed = "var(--k-color-customizable-heavy-red)";
|
|
296
|
+
export declare const customizableHeavyViolet = "var(--k-color-customizable-heavy-violet)";
|
|
297
|
+
export declare const customizableHeavyYellow = "var(--k-color-customizable-heavy-yellow)";
|
|
298
|
+
export declare const customizablePaleBlack = "var(--k-color-customizable-pale-black)";
|
|
299
|
+
export declare const customizablePaleBlue = "var(--k-color-customizable-pale-blue)";
|
|
300
|
+
export declare const customizablePaleBlueDeep = "var(--k-color-customizable-pale-blue-deep)";
|
|
301
|
+
export declare const customizablePaleGray = "var(--k-color-customizable-pale-gray)";
|
|
302
|
+
export declare const customizablePaleGreen = "var(--k-color-customizable-pale-green)";
|
|
303
|
+
export declare const customizablePaleMint = "var(--k-color-customizable-pale-mint)";
|
|
304
|
+
export declare const customizablePaleOrange = "var(--k-color-customizable-pale-orange)";
|
|
305
|
+
export declare const customizablePalePurple = "var(--k-color-customizable-pale-purple)";
|
|
306
|
+
export declare const customizablePaleRed = "var(--k-color-customizable-pale-red)";
|
|
307
|
+
export declare const customizablePaleViolet = "var(--k-color-customizable-pale-violet)";
|
|
308
|
+
export declare const customizablePaleYellow = "var(--k-color-customizable-pale-yellow)";
|
|
309
|
+
export declare const customizableSoftBlack = "var(--k-color-customizable-soft-black)";
|
|
310
|
+
export declare const customizableSoftBlue = "var(--k-color-customizable-soft-blue)";
|
|
311
|
+
export declare const customizableSoftBlueDeep = "var(--k-color-customizable-soft-blue-deep)";
|
|
312
|
+
export declare const customizableSoftGray = "var(--k-color-customizable-soft-gray)";
|
|
313
|
+
export declare const customizableSoftGreen = "var(--k-color-customizable-soft-green)";
|
|
314
|
+
export declare const customizableSoftMint = "var(--k-color-customizable-soft-mint)";
|
|
315
|
+
export declare const customizableSoftOrange = "var(--k-color-customizable-soft-orange)";
|
|
316
|
+
export declare const customizableSoftPurple = "var(--k-color-customizable-soft-purple)";
|
|
317
|
+
export declare const customizableSoftRed = "var(--k-color-customizable-soft-red)";
|
|
318
|
+
export declare const customizableSoftViolet = "var(--k-color-customizable-soft-violet)";
|
|
319
|
+
export declare const customizableSoftYellow = "var(--k-color-customizable-soft-yellow)";
|