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