@skbkontur/colors 2.0.0-alpha.2 → 2.0.0-alpha.4

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.
Files changed (174) hide show
  1. package/README.md +104 -171
  2. package/colors.less +319 -0
  3. package/colors.scss +319 -0
  4. package/lib/consts/default-swatch.d.ts +108 -0
  5. package/lib/consts/default-swatch.js +108 -0
  6. package/{dist/esm/constants/default-swatch.js → lib/consts/default-swatch.ts} +11 -7
  7. package/lib/consts/params/abney-correction.d.ts +2 -0
  8. package/lib/consts/params/abney-correction.js +1102 -0
  9. package/{dist/cjs/constants/abney-correction.js → lib/consts/params/abney-correction.ts} +3 -4
  10. package/lib/consts/params/chroma-params.d.ts +2 -0
  11. package/lib/consts/params/chroma-params.js +102 -0
  12. package/{dist/esm/constants/chroma-settings.js → lib/consts/params/chroma-params.ts} +3 -1
  13. package/lib/consts/params/interactions.ts +9 -0
  14. package/lib/consts/params/logo-lightness.d.ts +1 -0
  15. package/lib/consts/params/logo-lightness.js +1 -0
  16. package/lib/consts/params/logo-lightness.ts +1 -0
  17. package/{dist/cjs/constants → lib/consts/params}/promo-hue-shift.d.ts +1 -1
  18. package/lib/consts/params/promo-hue-shift.js +11 -0
  19. package/{dist/esm/constants/promo-hue-shift.js → lib/consts/params/promo-hue-shift.ts} +1 -1
  20. package/{dist/cjs/constants → lib/consts/params}/warning-hue-patch.d.ts +1 -1
  21. package/lib/consts/params/warning-hue-patch.js +22 -0
  22. package/{dist/esm/constants/warning-hue-patch.js → lib/consts/params/warning-hue-patch.ts} +1 -1
  23. package/lib/get-colors-base.d.ts +11 -0
  24. package/lib/get-colors-base.js +78 -0
  25. package/lib/get-colors-base.ts +99 -0
  26. package/lib/get-colors-default-tokens.d.ts +645 -0
  27. package/lib/get-colors-default-tokens.js +647 -0
  28. package/lib/get-colors-default-tokens.ts +646 -0
  29. package/lib/get-colors.d.ts +40 -0
  30. package/lib/get-colors.js +28 -0
  31. package/lib/get-colors.ts +65 -0
  32. package/{dist/cjs → lib}/helpers/get-interactions.d.ts +2 -2
  33. package/lib/helpers/get-interactions.js +35 -0
  34. package/lib/helpers/get-interactions.ts +64 -0
  35. package/{dist/cjs → lib}/helpers/get-logo.d.ts +2 -2
  36. package/lib/helpers/get-logo.js +25 -0
  37. package/lib/helpers/get-logo.ts +40 -0
  38. package/lib/helpers/get-palette.d.ts +51 -0
  39. package/lib/helpers/get-palette.js +204 -0
  40. package/lib/helpers/get-palette.ts +261 -0
  41. package/lib/helpers/get-promo.d.ts +6 -0
  42. package/lib/helpers/get-promo.js +47 -0
  43. package/lib/helpers/get-promo.ts +55 -0
  44. package/lib/types/tokens-base-generator.d.ts +43 -0
  45. package/{dist/cjs/types/generator-tokens.d.ts → lib/types/tokens-base-generator.ts} +12 -17
  46. package/lib/types/tokens-base.d.ts +55 -0
  47. package/{dist/esm/types/base-tokens.d.ts → lib/types/tokens-base.ts} +7 -2
  48. package/lib/types/tokens.d.ts +12 -0
  49. package/lib/types/tokens.js +1 -0
  50. package/lib/types/tokens.ts +18 -0
  51. package/lib/utils/convert-color.d.ts +3 -0
  52. package/lib/utils/convert-color.js +144 -0
  53. package/lib/utils/convert-color.ts +163 -0
  54. package/lib/utils/format-variable.js +6 -0
  55. package/lib/utils/format-variable.ts +7 -0
  56. package/package.json +44 -19
  57. package/{dist/tokens → tokens}/brand-blue-deep_accent-brand.css +33 -33
  58. package/{dist/tokens → tokens}/brand-blue-deep_accent-gray.css +33 -33
  59. package/{dist/tokens → tokens}/brand-blue_accent-brand.css +33 -33
  60. package/{dist/tokens → tokens}/brand-blue_accent-gray.css +33 -33
  61. package/{dist/tokens → tokens}/brand-green_accent-brand.css +33 -33
  62. package/{dist/tokens → tokens}/brand-green_accent-gray.css +33 -33
  63. package/{dist/tokens → tokens}/brand-mint_accent-brand.css +33 -33
  64. package/{dist/tokens → tokens}/brand-mint_accent-gray.css +33 -33
  65. package/{dist/tokens → tokens}/brand-orange_accent-gray.css +33 -33
  66. package/{dist/tokens → tokens}/brand-purple_accent-brand.css +33 -33
  67. package/{dist/tokens → tokens}/brand-purple_accent-gray.css +33 -33
  68. package/{dist/tokens → tokens}/brand-red_accent-gray.css +33 -33
  69. package/{dist/tokens → tokens}/brand-violet_accent-brand.css +33 -33
  70. package/{dist/tokens → tokens}/brand-violet_accent-gray.css +33 -33
  71. package/tokens-mobile/brand-blue-deep_accent-brand.json +718 -0
  72. package/tokens-mobile/brand-blue-deep_accent-gray.json +718 -0
  73. package/tokens-mobile/brand-blue_accent-brand.json +718 -0
  74. package/tokens-mobile/brand-blue_accent-gray.json +718 -0
  75. package/tokens-mobile/brand-green_accent-brand.json +718 -0
  76. package/tokens-mobile/brand-green_accent-gray.json +718 -0
  77. package/tokens-mobile/brand-mint_accent-brand.json +718 -0
  78. package/tokens-mobile/brand-mint_accent-gray.json +718 -0
  79. package/tokens-mobile/brand-orange_accent-gray.json +718 -0
  80. package/tokens-mobile/brand-purple_accent-brand.json +718 -0
  81. package/tokens-mobile/brand-purple_accent-gray.json +718 -0
  82. package/tokens-mobile/brand-red_accent-gray.json +718 -0
  83. package/tokens-mobile/brand-violet_accent-brand.json +718 -0
  84. package/tokens-mobile/brand-violet_accent-gray.json +718 -0
  85. package/dist/cjs/constants/abney-correction.d.ts +0 -2
  86. package/dist/cjs/constants/chroma-settings.d.ts +0 -2
  87. package/dist/cjs/constants/chroma-settings.js +0 -105
  88. package/dist/cjs/constants/default-swatch.d.ts +0 -109
  89. package/dist/cjs/constants/default-swatch.js +0 -112
  90. package/dist/cjs/constants/interaction-settings.js +0 -19
  91. package/dist/cjs/constants/logo-lightness.d.ts +0 -1
  92. package/dist/cjs/constants/logo-lightness.js +0 -4
  93. package/dist/cjs/constants/promo-hue-shift.js +0 -14
  94. package/dist/cjs/constants/warning-hue-patch.js +0 -25
  95. package/dist/cjs/get-base-tokens.d.ts +0 -26
  96. package/dist/cjs/get-base-tokens.js +0 -319
  97. package/dist/cjs/get-colors.d.ts +0 -20
  98. package/dist/cjs/get-colors.js +0 -20
  99. package/dist/cjs/get-default-tokens.d.ts +0 -645
  100. package/dist/cjs/get-default-tokens.js +0 -996
  101. package/dist/cjs/helpers/get-interactions.js +0 -61
  102. package/dist/cjs/helpers/get-logo.js +0 -32
  103. package/dist/cjs/helpers/get-palette.d.ts +0 -76
  104. package/dist/cjs/helpers/get-palette.js +0 -287
  105. package/dist/cjs/helpers/get-promo.d.ts +0 -12
  106. package/dist/cjs/helpers/get-promo.js +0 -56
  107. package/dist/cjs/types/base-tokens.d.ts +0 -125
  108. package/dist/cjs/types/base-tokens.js +0 -2
  109. package/dist/cjs/types/generator-tokens.js +0 -2
  110. package/dist/cjs/utils/format-variable.js +0 -15
  111. package/dist/colors.default-dark.js +0 -332
  112. package/dist/colors.default-light.js +0 -336
  113. package/dist/colors.less +0 -319
  114. package/dist/colors.scss +0 -319
  115. package/dist/esm/constants/abney-correction.d.ts +0 -2
  116. package/dist/esm/constants/abney-correction.js +0 -1102
  117. package/dist/esm/constants/chroma-settings.d.ts +0 -2
  118. package/dist/esm/constants/default-swatch.d.ts +0 -109
  119. package/dist/esm/constants/interaction-settings.d.ts +0 -8
  120. package/dist/esm/constants/logo-lightness.d.ts +0 -1
  121. package/dist/esm/constants/logo-lightness.js +0 -1
  122. package/dist/esm/constants/promo-hue-shift.d.ts +0 -3
  123. package/dist/esm/constants/warning-hue-patch.d.ts +0 -3
  124. package/dist/esm/get-base-tokens.d.ts +0 -26
  125. package/dist/esm/get-base-tokens.js +0 -257
  126. package/dist/esm/get-colors.d.ts +0 -20
  127. package/dist/esm/get-colors.js +0 -16
  128. package/dist/esm/get-default-tokens.d.ts +0 -645
  129. package/dist/esm/get-default-tokens.js +0 -992
  130. package/dist/esm/helpers/get-interactions.d.ts +0 -7
  131. package/dist/esm/helpers/get-interactions.js +0 -49
  132. package/dist/esm/helpers/get-logo.d.ts +0 -6
  133. package/dist/esm/helpers/get-logo.js +0 -28
  134. package/dist/esm/helpers/get-palette.d.ts +0 -76
  135. package/dist/esm/helpers/get-palette.js +0 -232
  136. package/dist/esm/helpers/get-promo.d.ts +0 -12
  137. package/dist/esm/helpers/get-promo.js +0 -51
  138. package/dist/esm/types/generator-tokens.d.ts +0 -43
  139. package/dist/esm/utils/format-variable.d.ts +0 -2
  140. package/dist/esm/utils/format-variable.js +0 -10
  141. package/dist/tokens-js/brand-blue-deep_accent-brand.js +0 -644
  142. package/dist/tokens-js/brand-blue-deep_accent-gray.js +0 -644
  143. package/dist/tokens-js/brand-blue_accent-brand.js +0 -644
  144. package/dist/tokens-js/brand-blue_accent-gray.js +0 -644
  145. package/dist/tokens-js/brand-green_accent-brand.js +0 -644
  146. package/dist/tokens-js/brand-green_accent-gray.js +0 -644
  147. package/dist/tokens-js/brand-mint_accent-brand.js +0 -644
  148. package/dist/tokens-js/brand-mint_accent-gray.js +0 -644
  149. package/dist/tokens-js/brand-orange_accent-gray.js +0 -644
  150. package/dist/tokens-js/brand-purple_accent-brand.js +0 -644
  151. package/dist/tokens-js/brand-purple_accent-gray.js +0 -644
  152. package/dist/tokens-js/brand-red_accent-gray.js +0 -644
  153. package/dist/tokens-js/brand-violet_accent-brand.js +0 -644
  154. package/dist/tokens-js/brand-violet_accent-gray.js +0 -644
  155. package/dist/tokens-mobile/brand-blue-deep_accent-brand.json +0 -718
  156. package/dist/tokens-mobile/brand-blue-deep_accent-gray.json +0 -718
  157. package/dist/tokens-mobile/brand-blue_accent-brand.json +0 -718
  158. package/dist/tokens-mobile/brand-blue_accent-gray.json +0 -718
  159. package/dist/tokens-mobile/brand-green_accent-brand.json +0 -718
  160. package/dist/tokens-mobile/brand-green_accent-gray.json +0 -718
  161. package/dist/tokens-mobile/brand-mint_accent-brand.json +0 -718
  162. package/dist/tokens-mobile/brand-mint_accent-gray.json +0 -718
  163. package/dist/tokens-mobile/brand-orange_accent-gray.json +0 -718
  164. package/dist/tokens-mobile/brand-purple_accent-brand.json +0 -718
  165. package/dist/tokens-mobile/brand-purple_accent-gray.json +0 -718
  166. package/dist/tokens-mobile/brand-red_accent-gray.json +0 -718
  167. package/dist/tokens-mobile/brand-violet_accent-brand.json +0 -718
  168. package/dist/tokens-mobile/brand-violet_accent-gray.json +0 -718
  169. /package/{dist/colors.js → colors.js} +0 -0
  170. /package/{dist/cjs/constants/interaction-settings.d.ts → lib/consts/params/interactions.d.ts} +0 -0
  171. /package/{dist/esm/constants/interaction-settings.js → lib/consts/params/interactions.js} +0 -0
  172. /package/{dist/esm/types/base-tokens.js → lib/types/tokens-base-generator.js} +0 -0
  173. /package/{dist/esm/types/generator-tokens.js → lib/types/tokens-base.js} +0 -0
  174. /package/{dist/cjs → lib}/utils/format-variable.d.ts +0 -0
@@ -1,718 +0,0 @@
1
- {
2
- "textAccentHeavy": {
3
- "light": "#e0000000",
4
- "dark": "#f5ffffff"
5
- },
6
- "textErrorHeavy": {
7
- "light": "#c50220",
8
- "dark": "#ff5352"
9
- },
10
- "textInvertedAccentHeavy": {
11
- "light": "#f5ffffff",
12
- "dark": "#e0000000"
13
- },
14
- "textInvertedErrorHeavy": {
15
- "light": "#ff5352",
16
- "dark": "#c50220"
17
- },
18
- "textInvertedNeutralFaint": {
19
- "light": "#66ffffff",
20
- "dark": "#52000000"
21
- },
22
- "textInvertedNeutralHeavy": {
23
- "light": "#f5ffffff",
24
- "dark": "#e0000000"
25
- },
26
- "textInvertedNeutralPale": {
27
- "light": "#7affffff",
28
- "dark": "#66000000"
29
- },
30
- "textInvertedNeutralSoft": {
31
- "light": "#a3ffffff",
32
- "dark": "#8f000000"
33
- },
34
- "textInvertedSuccessHeavy": {
35
- "light": "#00c655",
36
- "dark": "#007f34"
37
- },
38
- "textInvertedWarningHeavy": {
39
- "light": "#f8ae00",
40
- "dark": "#bc7d00"
41
- },
42
- "textLogo": {
43
- "light": "#844BEC",
44
- "dark": "#9864ff"
45
- },
46
- "textNeutralFaint": {
47
- "light": "#52000000",
48
- "dark": "#66ffffff"
49
- },
50
- "textNeutralHeavy": {
51
- "light": "#e0000000",
52
- "dark": "#f5ffffff"
53
- },
54
- "textNeutralPale": {
55
- "light": "#66000000",
56
- "dark": "#7affffff"
57
- },
58
- "textNeutralSoft": {
59
- "light": "#8f000000",
60
- "dark": "#a3ffffff"
61
- },
62
- "textSuccessHeavy": {
63
- "light": "#007f34",
64
- "dark": "#00c655"
65
- },
66
- "textWarningHeavy": {
67
- "light": "#bc7d00",
68
- "dark": "#f8ae00"
69
- },
70
- "textConstFaintBlack": {
71
- "light": "#52000000",
72
- "dark": "#52000000"
73
- },
74
- "textConstFaintWhite": {
75
- "light": "#66ffffff",
76
- "dark": "#66ffffff"
77
- },
78
- "textConstHeavyBlack": {
79
- "light": "#e0000000",
80
- "dark": "#e0000000"
81
- },
82
- "textConstHeavyWhite": {
83
- "light": "#f5ffffff",
84
- "dark": "#f5ffffff"
85
- },
86
- "textConstPaleBlack": {
87
- "light": "#66000000",
88
- "dark": "#66000000"
89
- },
90
- "textConstPaleWhite": {
91
- "light": "#7affffff",
92
- "dark": "#7affffff"
93
- },
94
- "textConstSoftBlack": {
95
- "light": "#8f000000",
96
- "dark": "#8f000000"
97
- },
98
- "textConstSoftWhite": {
99
- "light": "#a3ffffff",
100
- "dark": "#a3ffffff"
101
- },
102
- "textOnAccentBoldFaint": {
103
- "light": "#66ffffff",
104
- "dark": "#52000000"
105
- },
106
- "textOnAccentBoldHeavy": {
107
- "light": "#f5ffffff",
108
- "dark": "#e0000000"
109
- },
110
- "textOnAccentBoldPale": {
111
- "light": "#7affffff",
112
- "dark": "#66000000"
113
- },
114
- "textOnAccentBoldSoft": {
115
- "light": "#a3ffffff",
116
- "dark": "#8f000000"
117
- },
118
- "textOnBrandOriginalFaint": {
119
- "light": "#66ffffff",
120
- "dark": "#66ffffff"
121
- },
122
- "textOnBrandOriginalHeavy": {
123
- "light": "#f5ffffff",
124
- "dark": "#f5ffffff"
125
- },
126
- "textOnBrandOriginalPale": {
127
- "light": "#7affffff",
128
- "dark": "#7affffff"
129
- },
130
- "textOnBrandOriginalSoft": {
131
- "light": "#a3ffffff",
132
- "dark": "#a3ffffff"
133
- },
134
- "shapeBoldAccent": {
135
- "light": "#3d3d3d",
136
- "dark": "#f2f2f2"
137
- },
138
- "shapeBoldBrandOriginal": {
139
- "light": "#844BEC",
140
- "dark": "#844BEC"
141
- },
142
- "shapeBoldError": {
143
- "light": "#f63b40",
144
- "dark": "#de3c3e"
145
- },
146
- "shapeBoldNeutral": {
147
- "light": "#525252",
148
- "dark": "#bebebe"
149
- },
150
- "shapeBoldSuccess": {
151
- "light": "#00a948",
152
- "dark": "#1d9946"
153
- },
154
- "shapeBoldWarning": {
155
- "light": "#ffbf0b",
156
- "dark": "#f1b03b"
157
- },
158
- "shapeFaintAccent": {
159
- "light": "#1f000000",
160
- "dark": "#1fffffff"
161
- },
162
- "shapeFaintBrand": {
163
- "light": "#f1f0ff",
164
- "dark": "#362958"
165
- },
166
- "shapeFaintError": {
167
- "light": "#ffedef",
168
- "dark": "#502421"
169
- },
170
- "shapeFaintNeutralAlpha": {
171
- "light": "#0f000000",
172
- "dark": "#0fffffff"
173
- },
174
- "shapeFaintSuccess": {
175
- "light": "#defbe2",
176
- "dark": "#213a25"
177
- },
178
- "shapeFaintWarning": {
179
- "light": "#fff3bd",
180
- "dark": "#402f18"
181
- },
182
- "shapeHeavyError": {
183
- "light": "#6b1f1e",
184
- "dark": "#ffdadd"
185
- },
186
- "shapeHeavyNeutral": {
187
- "light": "#292929",
188
- "dark": "#f2f2f2"
189
- },
190
- "shapeHeavySuccess": {
191
- "light": "#0b4a1f",
192
- "dark": "#c3f3ca"
193
- },
194
- "shapeHeavyWarning": {
195
- "light": "#543600",
196
- "dark": "#fbe48d"
197
- },
198
- "shapeOtherAccentBoldDisabled": {
199
- "light": "#52000000",
200
- "dark": "#52ffffff"
201
- },
202
- "shapeOtherBase": {
203
- "light": "#ffffff",
204
- "dark": "#0fffffff"
205
- },
206
- "shapeOtherDisabled": {
207
- "light": "#0f000000",
208
- "dark": "#0fffffff"
209
- },
210
- "shapeOtherField": {
211
- "light": "#ffffff",
212
- "dark": "#29000000"
213
- },
214
- "shapeOtherLow": {
215
- "light": "#0f000000",
216
- "dark": "#3d000000"
217
- },
218
- "shapeOtherNeutralFaintSolid": {
219
- "light": "#f2f2f2",
220
- "dark": "#333333"
221
- },
222
- "shapeOtherNeutralPaleSolid": {
223
- "light": "#e4e4e4",
224
- "dark": "#3d3d3d"
225
- },
226
- "shapeOtherNeutralSoftSolid": {
227
- "light": "#cacaca",
228
- "dark": "#525252"
229
- },
230
- "shapePaleAccent": {
231
- "light": "#29000000",
232
- "dark": "#29ffffff"
233
- },
234
- "shapePaleBrand": {
235
- "light": "#e4e0ff",
236
- "dark": "#413169"
237
- },
238
- "shapePaleError": {
239
- "light": "#ffdadd",
240
- "dark": "#602a27"
241
- },
242
- "shapePaleNeutralAlpha": {
243
- "light": "#14000000",
244
- "dark": "#14ffffff"
245
- },
246
- "shapePaleSuccess": {
247
- "light": "#c3f3ca",
248
- "dark": "#27452d"
249
- },
250
- "shapePaleWarning": {
251
- "light": "#fbe48d",
252
- "dark": "#4d391c"
253
- },
254
- "shapeSoftAccent": {
255
- "light": "#52000000",
256
- "dark": "#52ffffff"
257
- },
258
- "shapeSoftBrand": {
259
- "light": "#c1b0ff",
260
- "dark": "#634c9e"
261
- },
262
- "shapeSoftError": {
263
- "light": "#fea09c",
264
- "dark": "#943e3b"
265
- },
266
- "shapeSoftNeutralAlpha": {
267
- "light": "#29000000",
268
- "dark": "#29ffffff"
269
- },
270
- "shapeSoftSuccess": {
271
- "light": "#6cd984",
272
- "dark": "#3a6a43"
273
- },
274
- "shapeSoftWarning": {
275
- "light": "#fcd35d",
276
- "dark": "#86612c"
277
- },
278
- "shapeInvertedDisabled": {
279
- "light": "#0fffffff",
280
- "dark": "#0f000000"
281
- },
282
- "shapeInvertedNeutralFaintAlpha": {
283
- "light": "#0fffffff",
284
- "dark": "#0f000000"
285
- },
286
- "shapeInvertedNeutralHeavy": {
287
- "light": "#ffffff",
288
- "dark": "#cc000000"
289
- },
290
- "shapeInvertedNeutralPaleAlpha": {
291
- "light": "#14ffffff",
292
- "dark": "#14000000"
293
- },
294
- "shapeInvertedNeutralSoftAlpha": {
295
- "light": "#29ffffff",
296
- "dark": "#29000000"
297
- },
298
- "shapeConstDisabledBlack": {
299
- "light": "#0f000000",
300
- "dark": "#0f000000"
301
- },
302
- "shapeConstDisabledWhite": {
303
- "light": "#0fffffff",
304
- "dark": "#0fffffff"
305
- },
306
- "shapeConstFaintBlack": {
307
- "light": "#1f000000",
308
- "dark": "#1f000000"
309
- },
310
- "shapeConstFaintWhite": {
311
- "light": "#1fffffff",
312
- "dark": "#1fffffff"
313
- },
314
- "shapeConstHeavyBlack": {
315
- "light": "#cc000000",
316
- "dark": "#cc000000"
317
- },
318
- "shapeConstHeavyWhite": {
319
- "light": "#f5ffffff",
320
- "dark": "#f5ffffff"
321
- },
322
- "shapeConstPaleBlack": {
323
- "light": "#29000000",
324
- "dark": "#29000000"
325
- },
326
- "shapeConstPaleWhite": {
327
- "light": "#29ffffff",
328
- "dark": "#29ffffff"
329
- },
330
- "shapeConstPromo": {
331
- "light": "#32205a",
332
- "dark": "#32205a"
333
- },
334
- "shapeConstSoftBlack": {
335
- "light": "#3d000000",
336
- "dark": "#3d000000"
337
- },
338
- "shapeConstSoftWhite": {
339
- "light": "#3dffffff",
340
- "dark": "#3dffffff"
341
- },
342
- "lineAccentBold": {
343
- "light": "#484848",
344
- "dark": "#d7d7d7"
345
- },
346
- "lineAccentPale": {
347
- "light": "#3d000000",
348
- "dark": "#3dffffff"
349
- },
350
- "lineAccentSoft": {
351
- "light": "#7a000000",
352
- "dark": "#7affffff"
353
- },
354
- "lineBrandOriginal": {
355
- "light": "#844BEC",
356
- "dark": "#844BEC"
357
- },
358
- "lineErrorBold": {
359
- "light": "#d6192a",
360
- "dark": "#e62b34"
361
- },
362
- "lineNeutralFaint": {
363
- "light": "#14000000",
364
- "dark": "#14ffffff"
365
- },
366
- "lineNeutralPale": {
367
- "light": "#29000000",
368
- "dark": "#29ffffff"
369
- },
370
- "lineOnAccentBoldFaint": {
371
- "light": "#1fffffff",
372
- "dark": "#1f000000"
373
- },
374
- "lineOnAccentBoldPale": {
375
- "light": "#3dffffff",
376
- "dark": "#3d000000"
377
- },
378
- "lineOnBrandOriginalFaint": {
379
- "light": "#1fffffff",
380
- "dark": "#1fffffff"
381
- },
382
- "lineOnBrandOriginalPale": {
383
- "light": "#3dffffff",
384
- "dark": "#3dffffff"
385
- },
386
- "lineSuccessBold": {
387
- "light": "#008d3a",
388
- "dark": "#009b41"
389
- },
390
- "lineWarningBold": {
391
- "light": "#f8ae00",
392
- "dark": "#f8ae00"
393
- },
394
- "lineInvertedAccentBold": {
395
- "light": "#d7d7d7",
396
- "dark": "#525252"
397
- },
398
- "lineInvertedAccentPale": {
399
- "light": "#3dffffff",
400
- "dark": "#3d000000"
401
- },
402
- "lineInvertedAccentSoft": {
403
- "light": "#7affffff",
404
- "dark": "#7a000000"
405
- },
406
- "lineInvertedErrorBold": {
407
- "light": "#e62b34",
408
- "dark": "#d6192a"
409
- },
410
- "lineInvertedNeutralFaint": {
411
- "light": "#14ffffff",
412
- "dark": "#14000000"
413
- },
414
- "lineInvertedNeutralPale": {
415
- "light": "#29ffffff",
416
- "dark": "#29000000"
417
- },
418
- "lineInvertedSuccessBold": {
419
- "light": "#009b41",
420
- "dark": "#008d3a"
421
- },
422
- "lineInvertedWarningBold": {
423
- "light": "#f8ae00",
424
- "dark": "#f8ae00"
425
- },
426
- "lineConstFaintBlack": {
427
- "light": "#1f000000",
428
- "dark": "#1f000000"
429
- },
430
- "lineConstFaintWhite": {
431
- "light": "#1fffffff",
432
- "dark": "#1fffffff"
433
- },
434
- "lineConstPaleBlack": {
435
- "light": "#3d000000",
436
- "dark": "#3d000000"
437
- },
438
- "lineConstPaleWhite": {
439
- "light": "#3dffffff",
440
- "dark": "#3dffffff"
441
- },
442
- "surfaceBase": {
443
- "light": "#ffffff",
444
- "dark": "#292929"
445
- },
446
- "surfaceHigh": {
447
- "light": "#ffffff",
448
- "dark": "#333333"
449
- },
450
- "surfaceLow": {
451
- "light": "#f2f2f2",
452
- "dark": "#1f1f1f"
453
- },
454
- "surfaceModalBackdrop": {
455
- "light": "#3d000000",
456
- "dark": "#66000000"
457
- },
458
- "illustrationBlack": {
459
- "light": "#0d0d0d",
460
- "dark": "#0d0d0d"
461
- },
462
- "illustrationBrand": {
463
- "light": "#844BEC",
464
- "dark": "#844BEC"
465
- },
466
- "illustrationComplement": {
467
- "light": "#32205a",
468
- "dark": "#ffffff"
469
- },
470
- "illustrationInvertedNeutral": {
471
- "light": "#ffffff",
472
- "dark": "#000000"
473
- },
474
- "illustrationNeutral": {
475
- "light": "#000000",
476
- "dark": "#ffffff"
477
- },
478
- "illustrationOnBrand": {
479
- "light": "#ffffffff",
480
- "dark": "#ffffffff"
481
- },
482
- "illustrationOnComplement": {
483
- "light": "#ffffff",
484
- "dark": "#32205a"
485
- },
486
- "illustrationPromo": {
487
- "light": "#32205a",
488
- "dark": "#32205a"
489
- },
490
- "illustrationSymbol": {
491
- "light": "#c1b0ff",
492
- "dark": "#c1b0ff"
493
- },
494
- "illustrationWhite": {
495
- "light": "#ffffff",
496
- "dark": "#ffffff"
497
- },
498
- "customizableBoldBlack": {
499
- "light": "#696969",
500
- "dark": "#b1b1b1"
501
- },
502
- "customizableBoldBlue": {
503
- "light": "#369bff",
504
- "dark": "#2b8df2"
505
- },
506
- "customizableBoldBlueDeep": {
507
- "light": "#6592ff",
508
- "dark": "#5183ff"
509
- },
510
- "customizableBoldGray": {
511
- "light": "#a4a4a4",
512
- "dark": "#696969"
513
- },
514
- "customizableBoldGreen": {
515
- "light": "#00b74e",
516
- "dark": "#2ca651"
517
- },
518
- "customizableBoldMint": {
519
- "light": "#01b197",
520
- "dark": "#00a38b"
521
- },
522
- "customizableBoldOrange": {
523
- "light": "#f56600",
524
- "dark": "#d96528"
525
- },
526
- "customizableBoldPurple": {
527
- "light": "#cf60ec",
528
- "dark": "#be5ad8"
529
- },
530
- "customizableBoldRed": {
531
- "light": "#ff5352",
532
- "dark": "#ee4948"
533
- },
534
- "customizableBoldViolet": {
535
- "light": "#a17bff",
536
- "dark": "#956ef2"
537
- },
538
- "customizableBoldYellow": {
539
- "light": "#dfa700",
540
- "dark": "#d19a00"
541
- },
542
- "customizableFaintBlack": {
543
- "light": "#e4e4e4",
544
- "dark": "#484848"
545
- },
546
- "customizableFaintBlue": {
547
- "light": "#e2f5ff",
548
- "dark": "#1f344d"
549
- },
550
- "customizableFaintBlueDeep": {
551
- "light": "#e8f3ff",
552
- "dark": "#1e305c"
553
- },
554
- "customizableFaintGray": {
555
- "light": "#f2f2f2",
556
- "dark": "#333333"
557
- },
558
- "customizableFaintGreen": {
559
- "light": "#d4ffda",
560
- "dark": "#213a25"
561
- },
562
- "customizableFaintMint": {
563
- "light": "#c8fff7",
564
- "dark": "#163a32"
565
- },
566
- "customizableFaintOrange": {
567
- "light": "#ffeee1",
568
- "dark": "#472b1e"
569
- },
570
- "customizableFaintPurple": {
571
- "light": "#ffeaff",
572
- "dark": "#44244c"
573
- },
574
- "customizableFaintRed": {
575
- "light": "#ffedef",
576
- "dark": "#502421"
577
- },
578
- "customizableFaintViolet": {
579
- "light": "#f1f0ff",
580
- "dark": "#362958"
581
- },
582
- "customizableFaintYellow": {
583
- "light": "#faf5be",
584
- "dark": "#3e3117"
585
- },
586
- "customizableHeavyBlack": {
587
- "light": "#3d3d3d",
588
- "dark": "#f2f2f2"
589
- },
590
- "customizableHeavyBlue": {
591
- "light": "#005dae",
592
- "dark": "#80c5ff"
593
- },
594
- "customizableHeavyBlueDeep": {
595
- "light": "#234ece",
596
- "dark": "#88b0ff"
597
- },
598
- "customizableHeavyGray": {
599
- "light": "#747474",
600
- "dark": "#808080"
601
- },
602
- "customizableHeavyGreen": {
603
- "light": "#00722d",
604
- "dark": "#6fe98b"
605
- },
606
- "customizableHeavyMint": {
607
- "light": "#027b68",
608
- "dark": "#4af6dd"
609
- },
610
- "customizableHeavyOrange": {
611
- "light": "#9a3d00",
612
- "dark": "#ff8f4f"
613
- },
614
- "customizableHeavyPurple": {
615
- "light": "#8b22a4",
616
- "dark": "#ea9aff"
617
- },
618
- "customizableHeavyRed": {
619
- "light": "#c50220",
620
- "dark": "#ff8a84"
621
- },
622
- "customizableHeavyViolet": {
623
- "light": "#6936c2",
624
- "dark": "#b69fff"
625
- },
626
- "customizableHeavyYellow": {
627
- "light": "#966c01",
628
- "dark": "#f6c405"
629
- },
630
- "customizablePaleBlack": {
631
- "light": "#d7d7d7",
632
- "dark": "#525252"
633
- },
634
- "customizablePaleBlue": {
635
- "light": "#c7ebff",
636
- "dark": "#253f5c"
637
- },
638
- "customizablePaleBlueDeep": {
639
- "light": "#d2e7ff",
640
- "dark": "#243a6e"
641
- },
642
- "customizablePaleGray": {
643
- "light": "#e4e4e4",
644
- "dark": "#3d3d3d"
645
- },
646
- "customizablePaleGreen": {
647
- "light": "#b0fabd",
648
- "dark": "#27452d"
649
- },
650
- "customizablePaleMint": {
651
- "light": "#88fdeb",
652
- "dark": "#19463d"
653
- },
654
- "customizablePaleOrange": {
655
- "light": "#ffddc6",
656
- "dark": "#563324"
657
- },
658
- "customizablePalePurple": {
659
- "light": "#fbd6ff",
660
- "dark": "#522a5c"
661
- },
662
- "customizablePaleRed": {
663
- "light": "#ffdadd",
664
- "dark": "#602a27"
665
- },
666
- "customizablePaleViolet": {
667
- "light": "#e4e0ff",
668
- "dark": "#413169"
669
- },
670
- "customizablePaleYellow": {
671
- "light": "#f5e78f",
672
- "dark": "#4b3a1b"
673
- },
674
- "customizableSoftBlack": {
675
- "light": "#b1b1b1",
676
- "dark": "#747474"
677
- },
678
- "customizableSoftBlue": {
679
- "light": "#80c5ff",
680
- "dark": "#37608e"
681
- },
682
- "customizableSoftBlueDeep": {
683
- "light": "#99bfff",
684
- "dark": "#3959a5"
685
- },
686
- "customizableSoftGray": {
687
- "light": "#d7d7d7",
688
- "dark": "#525252"
689
- },
690
- "customizableSoftGreen": {
691
- "light": "#6cd984",
692
- "dark": "#3a6a43"
693
- },
694
- "customizableSoftMint": {
695
- "light": "#4fe6cc",
696
- "dark": "#216c5d"
697
- },
698
- "customizableSoftOrange": {
699
- "light": "#ffa56f",
700
- "dark": "#844d34"
701
- },
702
- "customizableSoftPurple": {
703
- "light": "#ea9aff",
704
- "dark": "#7c428b"
705
- },
706
- "customizableSoftRed": {
707
- "light": "#ffa09b",
708
- "dark": "#943e3b"
709
- },
710
- "customizableSoftViolet": {
711
- "light": "#c1b0ff",
712
- "dark": "#634c9e"
713
- },
714
- "customizableSoftYellow": {
715
- "light": "#f6d65e",
716
- "dark": "#81642a"
717
- }
718
- }
File without changes