@skbkontur/colors 0.5.1 → 1.0.0-alpha.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.
Files changed (124) hide show
  1. package/README.md +90 -48
  2. package/dist/cjs/constants/abney-correction.d.ts +2 -0
  3. package/dist/cjs/constants/abney-correction.js +1105 -0
  4. package/dist/cjs/constants/chroma-settings.d.ts +2 -0
  5. package/dist/cjs/constants/chroma-settings.js +105 -0
  6. package/dist/cjs/constants/default-swatch.d.ts +109 -0
  7. package/dist/cjs/constants/default-swatch.js +112 -0
  8. package/dist/cjs/constants/interaction-settings.d.ts +8 -0
  9. package/dist/cjs/constants/interaction-settings.js +19 -0
  10. package/dist/cjs/constants/logo-lightness.d.ts +1 -0
  11. package/dist/cjs/constants/logo-lightness.js +4 -0
  12. package/dist/cjs/constants/promo-hue-shift.d.ts +3 -0
  13. package/dist/cjs/constants/promo-hue-shift.js +14 -0
  14. package/dist/cjs/constants/warning-hue-patch.d.ts +3 -0
  15. package/dist/cjs/constants/warning-hue-patch.js +25 -0
  16. package/dist/cjs/get-base-tokens.d.ts +19 -0
  17. package/dist/cjs/get-base-tokens.js +199 -0
  18. package/dist/cjs/get-colors.d.ts +19 -0
  19. package/dist/cjs/get-colors.js +25 -0
  20. package/dist/cjs/get-default-tokens.d.ts +645 -0
  21. package/dist/cjs/get-default-tokens.js +996 -0
  22. package/dist/cjs/helpers/get-interactions.d.ts +7 -0
  23. package/dist/cjs/helpers/get-interactions.js +61 -0
  24. package/dist/cjs/helpers/get-logo.d.ts +6 -0
  25. package/dist/cjs/helpers/get-logo.js +32 -0
  26. package/dist/cjs/helpers/get-palette.d.ts +76 -0
  27. package/dist/cjs/helpers/get-palette.js +287 -0
  28. package/dist/cjs/helpers/get-promo.d.ts +12 -0
  29. package/dist/cjs/helpers/get-promo.js +56 -0
  30. package/dist/cjs/types/base-tokens.d.ts +125 -0
  31. package/dist/cjs/types/base-tokens.js +2 -0
  32. package/dist/cjs/types/generator-tokens.d.ts +43 -0
  33. package/dist/cjs/types/generator-tokens.js +2 -0
  34. package/dist/cjs/utils/format-variable.d.ts +2 -0
  35. package/dist/cjs/utils/format-variable.js +15 -0
  36. package/dist/colors.default-dark.js +325 -0
  37. package/dist/colors.default-light.js +326 -0
  38. package/dist/colors.js +319 -0
  39. package/dist/colors.less +319 -0
  40. package/dist/colors.scss +319 -0
  41. package/dist/esm/constants/abney-correction.d.ts +2 -0
  42. package/dist/esm/constants/abney-correction.js +1102 -0
  43. package/dist/esm/constants/chroma-settings.d.ts +2 -0
  44. package/dist/esm/constants/chroma-settings.js +102 -0
  45. package/dist/esm/constants/default-swatch.d.ts +109 -0
  46. package/dist/esm/constants/default-swatch.js +109 -0
  47. package/dist/esm/constants/interaction-settings.d.ts +8 -0
  48. package/dist/esm/constants/interaction-settings.js +8 -0
  49. package/dist/esm/constants/logo-lightness.d.ts +1 -0
  50. package/dist/esm/constants/logo-lightness.js +1 -0
  51. package/dist/esm/constants/promo-hue-shift.d.ts +3 -0
  52. package/dist/esm/constants/promo-hue-shift.js +11 -0
  53. package/dist/esm/constants/warning-hue-patch.d.ts +3 -0
  54. package/dist/esm/constants/warning-hue-patch.js +22 -0
  55. package/dist/esm/get-base-tokens.d.ts +19 -0
  56. package/dist/esm/get-base-tokens.js +147 -0
  57. package/dist/esm/get-colors.d.ts +19 -0
  58. package/dist/esm/get-colors.js +21 -0
  59. package/dist/esm/get-default-tokens.d.ts +645 -0
  60. package/dist/esm/get-default-tokens.js +992 -0
  61. package/dist/esm/helpers/get-interactions.d.ts +7 -0
  62. package/dist/esm/helpers/get-interactions.js +49 -0
  63. package/dist/esm/helpers/get-logo.d.ts +6 -0
  64. package/dist/esm/helpers/get-logo.js +28 -0
  65. package/dist/esm/helpers/get-palette.d.ts +76 -0
  66. package/dist/esm/helpers/get-palette.js +232 -0
  67. package/dist/esm/helpers/get-promo.d.ts +12 -0
  68. package/dist/esm/helpers/get-promo.js +51 -0
  69. package/dist/esm/types/base-tokens.d.ts +125 -0
  70. package/dist/esm/types/base-tokens.js +1 -0
  71. package/dist/esm/types/generator-tokens.d.ts +43 -0
  72. package/dist/esm/types/generator-tokens.js +1 -0
  73. package/dist/esm/utils/format-variable.d.ts +2 -0
  74. package/dist/esm/utils/format-variable.js +10 -0
  75. package/dist/tokens/brand-blue-deep_accent-brand.css +643 -0
  76. package/dist/tokens/brand-blue-deep_accent-gray.css +643 -0
  77. package/dist/tokens/brand-blue_accent-brand.css +643 -0
  78. package/dist/tokens/brand-blue_accent-gray.css +643 -0
  79. package/dist/tokens/brand-green_accent-brand.css +643 -0
  80. package/dist/tokens/brand-green_accent-gray.css +643 -0
  81. package/dist/tokens/brand-mint_accent-brand.css +643 -0
  82. package/dist/tokens/brand-mint_accent-gray.css +643 -0
  83. package/dist/tokens/brand-orange_accent-gray.css +643 -0
  84. package/dist/tokens/brand-purple_accent-brand.css +643 -0
  85. package/dist/tokens/brand-purple_accent-gray.css +643 -0
  86. package/dist/tokens/brand-red_accent-gray.css +643 -0
  87. package/dist/tokens/brand-violet_accent-brand.css +643 -0
  88. package/dist/tokens/brand-violet_accent-gray.css +643 -0
  89. package/dist/tokens-js/brand-blue-deep_accent-brand.js +644 -0
  90. package/dist/tokens-js/brand-blue-deep_accent-gray.js +644 -0
  91. package/dist/tokens-js/brand-blue_accent-brand.js +644 -0
  92. package/dist/tokens-js/brand-blue_accent-gray.js +644 -0
  93. package/dist/tokens-js/brand-green_accent-brand.js +644 -0
  94. package/dist/tokens-js/brand-green_accent-gray.js +644 -0
  95. package/dist/tokens-js/brand-mint_accent-brand.js +644 -0
  96. package/dist/tokens-js/brand-mint_accent-gray.js +644 -0
  97. package/dist/tokens-js/brand-orange_accent-gray.js +644 -0
  98. package/dist/tokens-js/brand-purple_accent-brand.js +644 -0
  99. package/dist/tokens-js/brand-purple_accent-gray.js +644 -0
  100. package/dist/tokens-js/brand-red_accent-gray.js +644 -0
  101. package/dist/tokens-js/brand-violet_accent-brand.js +644 -0
  102. package/dist/tokens-js/brand-violet_accent-gray.js +644 -0
  103. package/dist/tokens-mobile/brand-blue-deep_accent-brand.json +718 -0
  104. package/dist/tokens-mobile/brand-blue-deep_accent-gray.json +718 -0
  105. package/dist/tokens-mobile/brand-blue_accent-brand.json +718 -0
  106. package/dist/tokens-mobile/brand-blue_accent-gray.json +718 -0
  107. package/dist/tokens-mobile/brand-green_accent-brand.json +718 -0
  108. package/dist/tokens-mobile/brand-green_accent-gray.json +718 -0
  109. package/dist/tokens-mobile/brand-mint_accent-brand.json +718 -0
  110. package/dist/tokens-mobile/brand-mint_accent-gray.json +718 -0
  111. package/dist/tokens-mobile/brand-orange_accent-gray.json +718 -0
  112. package/dist/tokens-mobile/brand-purple_accent-brand.json +718 -0
  113. package/dist/tokens-mobile/brand-purple_accent-gray.json +718 -0
  114. package/dist/tokens-mobile/brand-red_accent-gray.json +718 -0
  115. package/dist/tokens-mobile/brand-violet_accent-brand.json +718 -0
  116. package/dist/tokens-mobile/brand-violet_accent-gray.json +718 -0
  117. package/package.json +15 -7
  118. package/CHANGELOG.md +0 -108
  119. package/colors.css +0 -160
  120. package/colors.less +0 -158
  121. package/dist/cjs/colors.d.ts +0 -161
  122. package/dist/cjs/colors.js +0 -163
  123. package/dist/esm/colors.d.ts +0 -161
  124. package/dist/esm/colors.js +0 -160
@@ -0,0 +1,644 @@
1
+ export const SEMANTIC_TOKENS = {
2
+ light: {
3
+ textAccentHeavy: 'rgba(0, 0, 0, 0.88)',
4
+ textAccentHeavyHover: 'rgba(0, 0, 0, 0.96)',
5
+ textAccentHeavyPressed: 'rgba(0, 0, 0, 0.96)',
6
+ textErrorHeavy: '#c50220',
7
+ textErrorHeavyHover: '#e62b34',
8
+ textErrorHeavyPressed: '#943e3b',
9
+ textInvertedAccentHeavy: 'rgba(255, 255, 255, 0.96)',
10
+ textInvertedAccentHeavyHover: '#ffffff',
11
+ textInvertedAccentHeavyPressed: '#ffffff',
12
+ textInvertedErrorHeavy: '#ff5352',
13
+ textInvertedErrorHeavyHover: '#ff726b',
14
+ textInvertedErrorHeavyPressed: '#dd5d58',
15
+ textInvertedNeutralFaint: 'rgba(255, 255, 255, 0.4)',
16
+ textInvertedNeutralHeavy: 'rgba(255, 255, 255, 0.96)',
17
+ textInvertedNeutralPale: 'rgba(255, 255, 255, 0.48)',
18
+ textInvertedNeutralSoft: 'rgba(255, 255, 255, 0.64)',
19
+ textInvertedSuccessHeavy: '#00c655',
20
+ textInvertedSuccessHeavyHover: '#4ede76',
21
+ textInvertedSuccessHeavyPressed: '#4fa161',
22
+ textInvertedWarningHeavy: '#f8ae00',
23
+ textInvertedWarningHeavyHover: '#ffbf0b',
24
+ textInvertedWarningHeavyPressed: '#cc9a51',
25
+ textLogo: '#FC7630',
26
+ textNeutralFaint: 'rgba(0, 0, 0, 0.32)',
27
+ textNeutralHeavy: 'rgba(0, 0, 0, 0.88)',
28
+ textNeutralPale: 'rgba(0, 0, 0, 0.4)',
29
+ textNeutralSoft: 'rgba(0, 0, 0, 0.56)',
30
+ textSuccessHeavy: '#007f34',
31
+ textSuccessHeavyHover: '#009b41',
32
+ textSuccessHeavyPressed: '#3a6a43',
33
+ textWarningHeavy: '#bc7d00',
34
+ textWarningHeavyHover: '#db9400',
35
+ textWarningHeavyPressed: '#a37736',
36
+ textConstFaintBlack: 'rgba(0, 0, 0, 0.32)',
37
+ textConstFaintWhite: 'rgba(255, 255, 255, 0.4)',
38
+ textConstHeavyBlack: 'rgba(0, 0, 0, 0.88)',
39
+ textConstHeavyWhite: 'rgba(255, 255, 255, 0.96)',
40
+ textConstPaleBlack: 'rgba(0, 0, 0, 0.4)',
41
+ textConstPaleWhite: 'rgba(255, 255, 255, 0.48)',
42
+ textConstSoftBlack: 'rgba(0, 0, 0, 0.56)',
43
+ textConstSoftWhite: 'rgba(255, 255, 255, 0.64)',
44
+ textOnAccentBoldFaint: 'rgba(255, 255, 255, 0.4)',
45
+ textOnAccentBoldHeavy: 'rgba(255, 255, 255, 0.96)',
46
+ textOnAccentBoldPale: 'rgba(255, 255, 255, 0.48)',
47
+ textOnAccentBoldSoft: 'rgba(255, 255, 255, 0.64)',
48
+ textOnBrandOriginalFaint: 'rgba(255, 255, 255, 0.4)',
49
+ textOnBrandOriginalHeavy: 'rgba(255, 255, 255, 0.96)',
50
+ textOnBrandOriginalPale: 'rgba(255, 255, 255, 0.48)',
51
+ textOnBrandOriginalSoft: 'rgba(255, 255, 255, 0.64)',
52
+ shapeBoldAccent: '#3d3d3d',
53
+ shapeBoldAccentHover: '#292929',
54
+ shapeBoldAccentPressed: '#161616',
55
+ shapeBoldBrandOriginal: '#FC7630',
56
+ shapeBoldBrandOriginalHover: '#ee691d',
57
+ shapeBoldBrandOriginalPressed: '#d36731',
58
+ shapeBoldError: '#f63b40',
59
+ shapeBoldErrorHover: '#e62b34',
60
+ shapeBoldErrorPressed: '#cd3235',
61
+ shapeBoldNeutral: '#525252',
62
+ shapeBoldNeutralHover: '#3d3d3d',
63
+ shapeBoldNeutralPressed: 'rgba(0, 0, 0, 0.56)',
64
+ shapeBoldSuccess: '#00a948',
65
+ shapeBoldSuccessHover: '#009b41',
66
+ shapeBoldSuccessPressed: '#178b3f',
67
+ shapeBoldWarning: '#ffbf0b',
68
+ shapeBoldWarningHover: '#f8ae00',
69
+ shapeBoldWarningPressed: '#e5a331',
70
+ shapeFaintAccent: 'rgba(0, 0, 0, 0.12)',
71
+ shapeFaintAccentHover: 'rgba(0, 0, 0, 0.16)',
72
+ shapeFaintAccentPressed: 'rgba(0, 0, 0, 0.24)',
73
+ shapeFaintBrand: '#ffeee1',
74
+ shapeFaintBrandHover: '#fcdec9',
75
+ shapeFaintBrandPressed: '#f5e0d2',
76
+ shapeFaintError: '#ffedef',
77
+ shapeFaintErrorHover: '#ffdadd',
78
+ shapeFaintErrorPressed: '#f5dee0',
79
+ shapeFaintNeutralAlpha: 'rgba(0, 0, 0, 0.06)',
80
+ shapeFaintNeutralAlphaHover: 'rgba(0, 0, 0, 0.08)',
81
+ shapeFaintNeutralAlphaPressed: 'rgba(0, 0, 0, 0.12)',
82
+ shapeFaintSuccess: '#defbe2',
83
+ shapeFaintSuccessHover: '#c3f3ca',
84
+ shapeFaintSuccessPressed: '#d1edd5',
85
+ shapeFaintWarning: '#fff3bd',
86
+ shapeFaintWarningHover: '#f4e5ad',
87
+ shapeFaintWarningPressed: '#ede5c4',
88
+ shapeHeavyError: '#6b1f1e',
89
+ shapeHeavyNeutral: '#292929',
90
+ shapeHeavySuccess: '#0b4a1f',
91
+ shapeHeavyWarning: '#543600',
92
+ shapeOtherAccentBoldDisabled: 'rgba(0, 0, 0, 0.32)',
93
+ shapeOtherBacklessHover: 'rgba(0, 0, 0, 0.06)',
94
+ shapeOtherBacklessPressed: 'rgba(0, 0, 0, 0.08)',
95
+ shapeOtherBase: '#ffffff',
96
+ shapeOtherBaseHover: '#f2f2f2',
97
+ shapeOtherBasePressed: '#e4e4e4',
98
+ shapeOtherDisabled: 'rgba(0, 0, 0, 0.06)',
99
+ shapeOtherField: '#ffffff',
100
+ shapeOtherFieldHover: '#f2f2f2',
101
+ shapeOtherFieldPressed: '#e4e4e4',
102
+ shapeOtherLow: 'rgba(0, 0, 0, 0.06)',
103
+ shapeOtherLowHover: 'rgba(0, 0, 0, 0.08)',
104
+ shapeOtherLowPressed: 'rgba(0, 0, 0, 0.12)',
105
+ shapeOtherNeutralFaintSolid: '#f2f2f2',
106
+ shapeOtherNeutralFaintSolidHover: '#e4e4e4',
107
+ shapeOtherNeutralFaintSolidPressed: '#d7d7d7',
108
+ shapeOtherNeutralPaleSolid: '#e4e4e4',
109
+ shapeOtherNeutralPaleSolidHover: '#d7d7d7',
110
+ shapeOtherNeutralPaleSolidPressed: '#cacaca',
111
+ shapeOtherNeutralSoftSolid: '#cacaca',
112
+ shapeOtherNeutralSoftSolidHover: '#bebebe',
113
+ shapeOtherNeutralSoftSolidPressed: '#b1b1b1',
114
+ shapePaleAccent: 'rgba(0, 0, 0, 0.16)',
115
+ shapePaleAccentHover: 'rgba(0, 0, 0, 0.24)',
116
+ shapePaleAccentPressed: 'rgba(0, 0, 0, 0.32)',
117
+ shapePaleBrand: '#ffddc6',
118
+ shapePaleBrandHover: '#fbcdae',
119
+ shapePaleBrandPressed: '#f1d0ba',
120
+ shapePaleError: '#ffdadd',
121
+ shapePaleErrorHover: '#ffc7c7',
122
+ shapePaleErrorPressed: '#f2cdcd',
123
+ shapePaleNeutralAlpha: 'rgba(0, 0, 0, 0.08)',
124
+ shapePaleNeutralAlphaHover: 'rgba(0, 0, 0, 0.12)',
125
+ shapePaleNeutralAlphaPressed: 'rgba(0, 0, 0, 0.16)',
126
+ shapePaleSuccess: '#c3f3ca',
127
+ shapePaleSuccessHover: '#a7ebb2',
128
+ shapePaleSuccessPressed: '#bae4c0',
129
+ shapePaleWarning: '#fbe48d',
130
+ shapePaleWarningHover: '#f2d585',
131
+ shapePaleWarningPressed: '#e9d6a5',
132
+ shapeSoftAccent: 'rgba(0, 0, 0, 0.32)',
133
+ shapeSoftAccentHover: 'rgba(0, 0, 0, 0.4)',
134
+ shapeSoftAccentPressed: 'rgba(0, 0, 0, 0.48)',
135
+ shapeSoftBrand: '#f8a97a',
136
+ shapeSoftBrandHover: '#f8945b',
137
+ shapeSoftBrandPressed: '#e88856',
138
+ shapeSoftError: '#fea09c',
139
+ shapeSoftErrorHover: '#f98e88',
140
+ shapeSoftErrorPressed: '#e8847c',
141
+ shapeSoftNeutralAlpha: 'rgba(0, 0, 0, 0.16)',
142
+ shapeSoftNeutralAlphaHover: 'rgba(0, 0, 0, 0.24)',
143
+ shapeSoftNeutralAlphaPressed: 'rgba(0, 0, 0, 0.32)',
144
+ shapeSoftSuccess: '#6cd984',
145
+ shapeSoftSuccessHover: '#4ecf70',
146
+ shapeSoftSuccessPressed: '#58be6f',
147
+ shapeSoftWarning: '#fcd35d',
148
+ shapeSoftWarningHover: '#f4c359',
149
+ shapeSoftWarningPressed: '#e5b566',
150
+ shapeInvertedBacklessHover: 'rgba(255, 255, 255, 0.06)',
151
+ shapeInvertedBacklessPressed: 'rgba(255, 255, 255, 0.04)',
152
+ shapeInvertedDisabled: 'rgba(255, 255, 255, 0.06)',
153
+ shapeInvertedNeutralFaintAlpha: 'rgba(255, 255, 255, 0.06)',
154
+ shapeInvertedNeutralFaintAlphaHover: 'rgba(255, 255, 255, 0.08)',
155
+ shapeInvertedNeutralFaintAlphaPressed: 'rgba(255, 255, 255, 0.04)',
156
+ shapeInvertedNeutralHeavy: '#ffffff',
157
+ shapeInvertedNeutralHeavyHover: 'rgba(255, 255, 255, 0.88)',
158
+ shapeInvertedNeutralHeavyPressed: 'rgba(255, 255, 255, 0.72)',
159
+ shapeInvertedNeutralPaleAlpha: 'rgba(255, 255, 255, 0.08)',
160
+ shapeInvertedNeutralPaleAlphaHover: 'rgba(255, 255, 255, 0.12)',
161
+ shapeInvertedNeutralPaleAlphaPressed: 'rgba(255, 255, 255, 0.06)',
162
+ shapeInvertedNeutralSoftAlpha: 'rgba(255, 255, 255, 0.16)',
163
+ shapeInvertedNeutralSoftAlphaHover: 'rgba(255, 255, 255, 0.24)',
164
+ shapeInvertedNeutralSoftAlphaPressed: 'rgba(255, 255, 255, 0.12)',
165
+ shapeConstBacklessBlackHover: 'rgba(0, 0, 0, 0.12)',
166
+ shapeConstBacklessBlackPressed: 'rgba(0, 0, 0, 0.16)',
167
+ shapeConstBacklessWhiteHover: 'rgba(255, 255, 255, 0.12)',
168
+ shapeConstBacklessWhitePressed: 'rgba(255, 255, 255, 0.06)',
169
+ shapeConstDisabledBlack: 'rgba(0, 0, 0, 0.06)',
170
+ shapeConstDisabledWhite: 'rgba(255, 255, 255, 0.06)',
171
+ shapeConstFaintBlack: 'rgba(0, 0, 0, 0.12)',
172
+ shapeConstFaintBlackHover: 'rgba(0, 0, 0, 0.16)',
173
+ shapeConstFaintBlackPressed: 'rgba(0, 0, 0, 0.24)',
174
+ shapeConstFaintWhite: 'rgba(255, 255, 255, 0.12)',
175
+ shapeConstFaintWhiteHover: 'rgba(255, 255, 255, 0.16)',
176
+ shapeConstFaintWhitePressed: 'rgba(255, 255, 255, 0.08)',
177
+ shapeConstHeavyBlack: 'rgba(0, 0, 0, 0.8)',
178
+ shapeConstHeavyBlackHover: 'rgba(0, 0, 0, 0.88)',
179
+ shapeConstHeavyBlackPressed: 'rgba(0, 0, 0, 0.64)',
180
+ shapeConstHeavyWhite: 'rgba(255, 255, 255, 0.96)',
181
+ shapeConstHeavyWhiteHover: '#ffffff',
182
+ shapeConstHeavyWhitePressed: 'rgba(255, 255, 255, 0.64)',
183
+ shapeConstPaleBlack: 'rgba(0, 0, 0, 0.16)',
184
+ shapeConstPaleBlackHover: 'rgba(0, 0, 0, 0.24)',
185
+ shapeConstPaleBlackPressed: 'rgba(0, 0, 0, 0.32)',
186
+ shapeConstPaleWhite: 'rgba(255, 255, 255, 0.16)',
187
+ shapeConstPaleWhiteHover: 'rgba(255, 255, 255, 0.24)',
188
+ shapeConstPaleWhitePressed: 'rgba(255, 255, 255, 0.12)',
189
+ shapeConstPromo: '#601c2c',
190
+ shapeConstSoftBlack: 'rgba(0, 0, 0, 0.24)',
191
+ shapeConstSoftBlackHover: 'rgba(0, 0, 0, 0.32)',
192
+ shapeConstSoftBlackPressed: 'rgba(0, 0, 0, 0.4)',
193
+ shapeConstSoftWhite: 'rgba(255, 255, 255, 0.24)',
194
+ shapeConstSoftWhiteHover: 'rgba(255, 255, 255, 0.32)',
195
+ shapeConstSoftWhitePressed: 'rgba(255, 255, 255, 0.24)',
196
+ lineAccentBold: '#484848',
197
+ lineAccentBoldHover: '#161616',
198
+ lineAccentBoldPressed: 'rgba(0, 0, 0, 0.64)',
199
+ lineAccentPale: 'rgba(0, 0, 0, 0.24)',
200
+ lineAccentPaleHover: 'rgba(0, 0, 0, 0.32)',
201
+ lineAccentPalePressed: 'rgba(0, 0, 0, 0.4)',
202
+ lineAccentSoft: 'rgba(0, 0, 0, 0.48)',
203
+ lineAccentSoftHover: 'rgba(0, 0, 0, 0.96)',
204
+ lineAccentSoftPressed: 'rgba(0, 0, 0, 0.96)',
205
+ lineBrandOriginal: '#FC7630',
206
+ lineErrorBold: '#d6192a',
207
+ lineErrorBoldHover: '#f63b40',
208
+ lineErrorBoldPressed: '#a74541',
209
+ lineNeutralFaint: 'rgba(0, 0, 0, 0.08)',
210
+ lineNeutralPale: 'rgba(0, 0, 0, 0.16)',
211
+ lineNeutralPaleHover: 'rgba(0, 0, 0, 0.24)',
212
+ lineNeutralPalePressed: 'rgba(0, 0, 0, 0.4)',
213
+ lineOnAccentBoldFaint: 'rgba(255, 255, 255, 0.12)',
214
+ lineOnAccentBoldPale: 'rgba(255, 255, 255, 0.24)',
215
+ lineOnBrandOriginalFaint: 'rgba(255, 255, 255, 0.12)',
216
+ lineOnBrandOriginalPale: 'rgba(255, 255, 255, 0.24)',
217
+ lineSuccessBold: '#008d3a',
218
+ lineSuccessBoldHover: '#00b74e',
219
+ lineSuccessBoldPressed: '#458552',
220
+ lineWarningBold: '#f8ae00',
221
+ lineWarningBoldHover: '#db9400',
222
+ lineWarningBoldPressed: '#bd8f4d',
223
+ lineInvertedAccentBold: '#d7d7d7',
224
+ lineInvertedAccentBoldHover: '#ffffff',
225
+ lineInvertedAccentBoldPressed: 'rgba(255, 255, 255, 0.64)',
226
+ lineInvertedAccentPale: 'rgba(255, 255, 255, 0.24)',
227
+ lineInvertedAccentPaleHover: 'rgba(255, 255, 255, 0.32)',
228
+ lineInvertedAccentPalePressed: 'rgba(255, 255, 255, 0.16)',
229
+ lineInvertedAccentSoft: 'rgba(255, 255, 255, 0.48)',
230
+ lineInvertedAccentSoftHover: '#ffffff',
231
+ lineInvertedAccentSoftPressed: '#ffffff',
232
+ lineInvertedErrorBold: '#e62b34',
233
+ lineInvertedErrorBoldHover: '#ff5352',
234
+ lineInvertedErrorBoldPressed: '#ba4b47',
235
+ lineInvertedNeutralFaint: 'rgba(255, 255, 255, 0.08)',
236
+ lineInvertedNeutralPale: 'rgba(255, 255, 255, 0.16)',
237
+ lineInvertedNeutralPaleHover: 'rgba(255, 255, 255, 0.24)',
238
+ lineInvertedNeutralPalePressed: 'rgba(255, 255, 255, 0.12)',
239
+ lineInvertedSuccessBold: '#009b41',
240
+ lineInvertedSuccessBoldHover: '#00b74e',
241
+ lineInvertedSuccessBoldPressed: '#458552',
242
+ lineInvertedWarningBold: '#f8ae00',
243
+ lineInvertedWarningBoldHover: '#ffbf0b',
244
+ lineInvertedWarningBoldPressed: '#cc9a51',
245
+ lineConstFaintBlack: 'rgba(0, 0, 0, 0.12)',
246
+ lineConstFaintWhite: 'rgba(255, 255, 255, 0.12)',
247
+ lineConstPaleBlack: 'rgba(0, 0, 0, 0.24)',
248
+ lineConstPaleBlackHover: 'rgba(0, 0, 0, 0.32)',
249
+ lineConstPaleBlackPressed: 'rgba(0, 0, 0, 0.16)',
250
+ lineConstPaleWhite: 'rgba(255, 255, 255, 0.24)',
251
+ lineConstPaleWhiteHover: 'rgba(255, 255, 255, 0.32)',
252
+ lineConstPaleWhitePressed: 'rgba(255, 255, 255, 0.16)',
253
+ surfaceBase: '#ffffff',
254
+ surfaceHigh: '#ffffff',
255
+ surfaceLow: '#f2f2f2',
256
+ surfaceModalBackdrop: 'rgba(0, 0, 0, 0.24)',
257
+ illustrationBlack: '#0d0d0d',
258
+ illustrationBrand: '#FC7630',
259
+ illustrationComplement: '#601c2c',
260
+ illustrationInvertedNeutral: '#ffffff',
261
+ illustrationNeutral: '#000000',
262
+ illustrationOnBrand: 'rgba(255, 255, 255, 1)',
263
+ illustrationOnComplement: '#ffffff',
264
+ illustrationPromo: '#601c2c',
265
+ illustrationSymbol: '#f8a97a',
266
+ illustrationWhite: '#ffffff',
267
+ customizableBoldBlack: '#696969',
268
+ customizableBoldBlue: '#369bff',
269
+ customizableBoldBlueDeep: '#6592ff',
270
+ customizableBoldGray: '#a4a4a4',
271
+ customizableBoldGreen: '#00b74e',
272
+ customizableBoldMint: '#01b197',
273
+ customizableBoldOrange: '#f56600',
274
+ customizableBoldPurple: '#cf60ec',
275
+ customizableBoldRed: '#ff5352',
276
+ customizableBoldViolet: '#a17bff',
277
+ customizableBoldYellow: '#dfa700',
278
+ customizableFaintBlack: '#e4e4e4',
279
+ customizableFaintBlue: '#e2f5ff',
280
+ customizableFaintBlueDeep: '#e8f3ff',
281
+ customizableFaintGray: '#f2f2f2',
282
+ customizableFaintGreen: '#d4ffda',
283
+ customizableFaintMint: '#c8fff7',
284
+ customizableFaintOrange: '#ffeee1',
285
+ customizableFaintPurple: '#ffeaff',
286
+ customizableFaintRed: '#ffedef',
287
+ customizableFaintViolet: '#f1f0ff',
288
+ customizableFaintYellow: '#faf5be',
289
+ customizableHeavyBlack: '#3d3d3d',
290
+ customizableHeavyBlue: '#005dae',
291
+ customizableHeavyBlueDeep: '#234ece',
292
+ customizableHeavyGray: '#747474',
293
+ customizableHeavyGreen: '#00722d',
294
+ customizableHeavyMint: '#027b68',
295
+ customizableHeavyOrange: '#9a3d00',
296
+ customizableHeavyPurple: '#8b22a4',
297
+ customizableHeavyRed: '#c50220',
298
+ customizableHeavyViolet: '#6936c2',
299
+ customizableHeavyYellow: '#966c01',
300
+ customizablePaleBlack: '#d7d7d7',
301
+ customizablePaleBlue: '#c7ebff',
302
+ customizablePaleBlueDeep: '#d2e7ff',
303
+ customizablePaleGray: '#e4e4e4',
304
+ customizablePaleGreen: '#b0fabd',
305
+ customizablePaleMint: '#88fdeb',
306
+ customizablePaleOrange: '#ffddc6',
307
+ customizablePalePurple: '#fbd6ff',
308
+ customizablePaleRed: '#ffdadd',
309
+ customizablePaleViolet: '#e4e0ff',
310
+ customizablePaleYellow: '#f5e78f',
311
+ customizableSoftBlack: '#b1b1b1',
312
+ customizableSoftBlue: '#80c5ff',
313
+ customizableSoftBlueDeep: '#99bfff',
314
+ customizableSoftGray: '#d7d7d7',
315
+ customizableSoftGreen: '#6cd984',
316
+ customizableSoftMint: '#4fe6cc',
317
+ customizableSoftOrange: '#ffa56f',
318
+ customizableSoftPurple: '#ea9aff',
319
+ customizableSoftRed: '#ffa09b',
320
+ customizableSoftViolet: '#c1b0ff',
321
+ customizableSoftYellow: '#f6d65e',
322
+ },
323
+ dark: {
324
+ textAccentHeavy: 'rgba(255, 255, 255, 0.96)',
325
+ textAccentHeavyHover: '#ffffff',
326
+ textAccentHeavyPressed: '#ffffff',
327
+ textErrorHeavy: '#ff5352',
328
+ textErrorHeavyHover: '#ff726b',
329
+ textErrorHeavyPressed: '#dd5d58',
330
+ textInvertedAccentHeavy: 'rgba(0, 0, 0, 0.88)',
331
+ textInvertedAccentHeavyHover: 'rgba(0, 0, 0, 0.96)',
332
+ textInvertedAccentHeavyPressed: 'rgba(0, 0, 0, 0.96)',
333
+ textInvertedErrorHeavy: '#c50220',
334
+ textInvertedErrorHeavyHover: '#e62b34',
335
+ textInvertedErrorHeavyPressed: '#943e3b',
336
+ textInvertedNeutralFaint: 'rgba(0, 0, 0, 0.32)',
337
+ textInvertedNeutralHeavy: 'rgba(0, 0, 0, 0.88)',
338
+ textInvertedNeutralPale: 'rgba(0, 0, 0, 0.4)',
339
+ textInvertedNeutralSoft: 'rgba(0, 0, 0, 0.56)',
340
+ textInvertedSuccessHeavy: '#007f34',
341
+ textInvertedSuccessHeavyHover: '#009b41',
342
+ textInvertedSuccessHeavyPressed: '#3a6a43',
343
+ textInvertedWarningHeavy: '#bc7d00',
344
+ textInvertedWarningHeavyHover: '#db9400',
345
+ textInvertedWarningHeavyPressed: '#956c30',
346
+ textLogo: '#fc762f',
347
+ textNeutralFaint: 'rgba(255, 255, 255, 0.4)',
348
+ textNeutralHeavy: 'rgba(255, 255, 255, 0.96)',
349
+ textNeutralPale: 'rgba(255, 255, 255, 0.48)',
350
+ textNeutralSoft: 'rgba(255, 255, 255, 0.64)',
351
+ textSuccessHeavy: '#00c655',
352
+ textSuccessHeavyHover: '#4ede76',
353
+ textSuccessHeavyPressed: '#4fa161',
354
+ textWarningHeavy: '#f8ae00',
355
+ textWarningHeavyHover: '#ffbf0b',
356
+ textWarningHeavyPressed: '#cc9a51',
357
+ textConstFaintBlack: 'rgba(0, 0, 0, 0.32)',
358
+ textConstFaintWhite: 'rgba(255, 255, 255, 0.4)',
359
+ textConstHeavyBlack: 'rgba(0, 0, 0, 0.88)',
360
+ textConstHeavyWhite: 'rgba(255, 255, 255, 0.96)',
361
+ textConstPaleBlack: 'rgba(0, 0, 0, 0.4)',
362
+ textConstPaleWhite: 'rgba(255, 255, 255, 0.48)',
363
+ textConstSoftBlack: 'rgba(0, 0, 0, 0.56)',
364
+ textConstSoftWhite: 'rgba(255, 255, 255, 0.64)',
365
+ textOnAccentBoldFaint: 'rgba(0, 0, 0, 0.32)',
366
+ textOnAccentBoldHeavy: 'rgba(0, 0, 0, 0.88)',
367
+ textOnAccentBoldPale: 'rgba(0, 0, 0, 0.4)',
368
+ textOnAccentBoldSoft: 'rgba(0, 0, 0, 0.56)',
369
+ textOnBrandOriginalFaint: 'rgba(255, 255, 255, 0.4)',
370
+ textOnBrandOriginalHeavy: 'rgba(255, 255, 255, 0.96)',
371
+ textOnBrandOriginalPale: 'rgba(255, 255, 255, 0.48)',
372
+ textOnBrandOriginalSoft: 'rgba(255, 255, 255, 0.64)',
373
+ shapeBoldAccent: '#f2f2f2',
374
+ shapeBoldAccentHover: '#ffffff',
375
+ shapeBoldAccentPressed: '#cacaca',
376
+ shapeBoldBrandOriginal: '#FC7630',
377
+ shapeBoldBrandOriginalHover: '#ff833e',
378
+ shapeBoldBrandOriginalPressed: '#d36731',
379
+ shapeBoldError: '#de3c3e',
380
+ shapeBoldErrorHover: '#ee4948',
381
+ shapeBoldErrorPressed: '#a74541',
382
+ shapeBoldNeutral: '#bebebe',
383
+ shapeBoldNeutralHover: '#d7d7d7',
384
+ shapeBoldNeutralPressed: 'rgba(255, 255, 255, 0.56)',
385
+ shapeBoldSuccess: '#1d9946',
386
+ shapeBoldSuccessHover: '#2ca651',
387
+ shapeBoldSuccessPressed: '#3f784b',
388
+ shapeBoldWarning: '#f1b03b',
389
+ shapeBoldWarningHover: '#f4c359',
390
+ shapeBoldWarningPressed: '#cc9a51',
391
+ shapeFaintAccent: 'rgba(255, 255, 255, 0.12)',
392
+ shapeFaintAccentHover: 'rgba(255, 255, 255, 0.16)',
393
+ shapeFaintAccentPressed: 'rgba(255, 255, 255, 0.08)',
394
+ shapeFaintBrand: '#472b1e',
395
+ shapeFaintBrandHover: '#563324',
396
+ shapeFaintBrandPressed: '#392218',
397
+ shapeFaintError: '#502421',
398
+ shapeFaintErrorHover: '#602a27',
399
+ shapeFaintErrorPressed: '#411c1a',
400
+ shapeFaintNeutralAlpha: 'rgba(255, 255, 255, 0.06)',
401
+ shapeFaintNeutralAlphaHover: 'rgba(255, 255, 255, 0.08)',
402
+ shapeFaintNeutralAlphaPressed: 'rgba(255, 255, 255, 0.04)',
403
+ shapeFaintSuccess: '#213a25',
404
+ shapeFaintSuccessHover: '#27452d',
405
+ shapeFaintSuccessPressed: '#1a2e1e',
406
+ shapeFaintWarning: '#402f18',
407
+ shapeFaintWarningHover: '#4d391c',
408
+ shapeFaintWarningPressed: '#342614',
409
+ shapeHeavyError: '#ffdadd',
410
+ shapeHeavyNeutral: '#f2f2f2',
411
+ shapeHeavySuccess: '#c3f3ca',
412
+ shapeHeavyWarning: '#fbe48d',
413
+ shapeOtherAccentBoldDisabled: 'rgba(255, 255, 255, 0.32)',
414
+ shapeOtherBacklessHover: 'rgba(255, 255, 255, 0.06)',
415
+ shapeOtherBacklessPressed: 'rgba(255, 255, 255, 0.04)',
416
+ shapeOtherBase: 'rgba(255, 255, 255, 0.06)',
417
+ shapeOtherBaseHover: 'rgba(255, 255, 255, 0.08)',
418
+ shapeOtherBasePressed: 'rgba(255, 255, 255, 0.04)',
419
+ shapeOtherDisabled: 'rgba(255, 255, 255, 0.06)',
420
+ shapeOtherField: 'rgba(0, 0, 0, 0.16)',
421
+ shapeOtherFieldHover: 'rgba(0, 0, 0, 0.04)',
422
+ shapeOtherFieldPressed: 'rgba(0, 0, 0, 0.12)',
423
+ shapeOtherLow: 'rgba(0, 0, 0, 0.24)',
424
+ shapeOtherLowHover: 'rgba(0, 0, 0, 0.16)',
425
+ shapeOtherLowPressed: 'rgba(0, 0, 0, 0.32)',
426
+ shapeOtherNeutralFaintSolid: '#333333',
427
+ shapeOtherNeutralFaintSolidHover: '#3d3d3d',
428
+ shapeOtherNeutralFaintSolidPressed: '#292929',
429
+ shapeOtherNeutralPaleSolid: '#3d3d3d',
430
+ shapeOtherNeutralPaleSolidHover: '#484848',
431
+ shapeOtherNeutralPaleSolidPressed: '#333333',
432
+ shapeOtherNeutralSoftSolid: '#525252',
433
+ shapeOtherNeutralSoftSolidHover: '#5d5d5d',
434
+ shapeOtherNeutralSoftSolidPressed: '#484848',
435
+ shapePaleAccent: 'rgba(255, 255, 255, 0.16)',
436
+ shapePaleAccentHover: 'rgba(255, 255, 255, 0.24)',
437
+ shapePaleAccentPressed: 'rgba(255, 255, 255, 0.12)',
438
+ shapePaleBrand: '#563324',
439
+ shapePaleBrandHover: '#643c2a',
440
+ shapePaleBrandPressed: '#472b1e',
441
+ shapePaleError: '#602a27',
442
+ shapePaleErrorHover: '#71312e',
443
+ shapePaleErrorPressed: '#502421',
444
+ shapePaleNeutralAlpha: 'rgba(255, 255, 255, 0.08)',
445
+ shapePaleNeutralAlphaHover: 'rgba(255, 255, 255, 0.12)',
446
+ shapePaleNeutralAlphaPressed: 'rgba(255, 255, 255, 0.06)',
447
+ shapePaleSuccess: '#27452d',
448
+ shapePaleSuccessHover: '#2d5134',
449
+ shapePaleSuccessPressed: '#213a25',
450
+ shapePaleWarning: '#4d391c',
451
+ shapePaleWarningHover: '#5b4320',
452
+ shapePaleWarningPressed: '#402f18',
453
+ shapeSoftAccent: 'rgba(255, 255, 255, 0.32)',
454
+ shapeSoftAccentHover: 'rgba(255, 255, 255, 0.4)',
455
+ shapeSoftAccentPressed: 'rgba(255, 255, 255, 0.24)',
456
+ shapeSoftBrand: '#844d34',
457
+ shapeSoftBrandHover: '#955639',
458
+ shapeSoftBrandPressed: '#74452f',
459
+ shapeSoftError: '#943e3b',
460
+ shapeSoftErrorHover: '#a74541',
461
+ shapeSoftErrorPressed: '#823835',
462
+ shapeSoftNeutralAlpha: 'rgba(255, 255, 255, 0.16)',
463
+ shapeSoftNeutralAlphaHover: 'rgba(255, 255, 255, 0.24)',
464
+ shapeSoftNeutralAlphaPressed: 'rgba(255, 255, 255, 0.12)',
465
+ shapeSoftSuccess: '#3a6a43',
466
+ shapeSoftSuccessHover: '#3f784b',
467
+ shapeSoftSuccessPressed: '#345e3c',
468
+ shapeSoftWarning: '#86612c',
469
+ shapeSoftWarningHover: '#956c30',
470
+ shapeSoftWarningPressed: '#775728',
471
+ shapeInvertedBacklessHover: 'rgba(0, 0, 0, 0.06)',
472
+ shapeInvertedBacklessPressed: 'rgba(0, 0, 0, 0.08)',
473
+ shapeInvertedDisabled: 'rgba(0, 0, 0, 0.06)',
474
+ shapeInvertedNeutralFaintAlpha: 'rgba(0, 0, 0, 0.06)',
475
+ shapeInvertedNeutralFaintAlphaHover: 'rgba(0, 0, 0, 0.08)',
476
+ shapeInvertedNeutralFaintAlphaPressed: 'rgba(0, 0, 0, 0.12)',
477
+ shapeInvertedNeutralHeavy: 'rgba(0, 0, 0, 0.8)',
478
+ shapeInvertedNeutralHeavyHover: 'rgba(0, 0, 0, 0.88)',
479
+ shapeInvertedNeutralHeavyPressed: 'rgba(0, 0, 0, 0.72)',
480
+ shapeInvertedNeutralPaleAlpha: 'rgba(0, 0, 0, 0.08)',
481
+ shapeInvertedNeutralPaleAlphaHover: 'rgba(0, 0, 0, 0.12)',
482
+ shapeInvertedNeutralPaleAlphaPressed: 'rgba(0, 0, 0, 0.16)',
483
+ shapeInvertedNeutralSoftAlpha: 'rgba(0, 0, 0, 0.16)',
484
+ shapeInvertedNeutralSoftAlphaHover: 'rgba(0, 0, 0, 0.24)',
485
+ shapeInvertedNeutralSoftAlphaPressed: 'rgba(0, 0, 0, 0.32)',
486
+ shapeConstBacklessBlackHover: 'rgba(0, 0, 0, 0.12)',
487
+ shapeConstBacklessBlackPressed: 'rgba(0, 0, 0, 0.16)',
488
+ shapeConstBacklessWhiteHover: 'rgba(255, 255, 255, 0.12)',
489
+ shapeConstBacklessWhitePressed: 'rgba(255, 255, 255, 0.06)',
490
+ shapeConstDisabledBlack: 'rgba(0, 0, 0, 0.06)',
491
+ shapeConstDisabledWhite: 'rgba(255, 255, 255, 0.06)',
492
+ shapeConstFaintBlack: 'rgba(0, 0, 0, 0.12)',
493
+ shapeConstFaintBlackHover: 'rgba(0, 0, 0, 0.16)',
494
+ shapeConstFaintBlackPressed: 'rgba(0, 0, 0, 0.24)',
495
+ shapeConstFaintWhite: 'rgba(255, 255, 255, 0.12)',
496
+ shapeConstFaintWhiteHover: 'rgba(255, 255, 255, 0.16)',
497
+ shapeConstFaintWhitePressed: 'rgba(255, 255, 255, 0.08)',
498
+ shapeConstHeavyBlack: 'rgba(0, 0, 0, 0.8)',
499
+ shapeConstHeavyBlackHover: 'rgba(0, 0, 0, 0.88)',
500
+ shapeConstHeavyBlackPressed: 'rgba(0, 0, 0, 0.64)',
501
+ shapeConstHeavyWhite: 'rgba(255, 255, 255, 0.96)',
502
+ shapeConstHeavyWhiteHover: '#ffffff',
503
+ shapeConstHeavyWhitePressed: 'rgba(255, 255, 255, 0.64)',
504
+ shapeConstPaleBlack: 'rgba(0, 0, 0, 0.16)',
505
+ shapeConstPaleBlackHover: 'rgba(0, 0, 0, 0.24)',
506
+ shapeConstPaleBlackPressed: 'rgba(0, 0, 0, 0.32)',
507
+ shapeConstPaleWhite: 'rgba(255, 255, 255, 0.16)',
508
+ shapeConstPaleWhiteHover: 'rgba(255, 255, 255, 0.24)',
509
+ shapeConstPaleWhitePressed: 'rgba(255, 255, 255, 0.12)',
510
+ shapeConstPromo: '#601c2c',
511
+ shapeConstSoftBlack: 'rgba(0, 0, 0, 0.24)',
512
+ shapeConstSoftBlackHover: 'rgba(0, 0, 0, 0.32)',
513
+ shapeConstSoftBlackPressed: 'rgba(0, 0, 0, 0.4)',
514
+ shapeConstSoftWhite: 'rgba(255, 255, 255, 0.24)',
515
+ shapeConstSoftWhiteHover: 'rgba(255, 255, 255, 0.32)',
516
+ shapeConstSoftWhitePressed: 'rgba(255, 255, 255, 0.24)',
517
+ lineAccentBold: '#d7d7d7',
518
+ lineAccentBoldHover: '#ffffff',
519
+ lineAccentBoldPressed: 'rgba(255, 255, 255, 0.64)',
520
+ lineAccentPale: 'rgba(255, 255, 255, 0.24)',
521
+ lineAccentPaleHover: 'rgba(255, 255, 255, 0.32)',
522
+ lineAccentPalePressed: 'rgba(255, 255, 255, 0.16)',
523
+ lineAccentSoft: 'rgba(255, 255, 255, 0.48)',
524
+ lineAccentSoftHover: '#ffffff',
525
+ lineAccentSoftPressed: '#ffffff',
526
+ lineBrandOriginal: '#FC7630',
527
+ lineErrorBold: '#e62b34',
528
+ lineErrorBoldHover: '#ff5352',
529
+ lineErrorBoldPressed: '#ba4b47',
530
+ lineNeutralFaint: 'rgba(255, 255, 255, 0.08)',
531
+ lineNeutralPale: 'rgba(255, 255, 255, 0.16)',
532
+ lineNeutralPaleHover: 'rgba(255, 255, 255, 0.24)',
533
+ lineNeutralPalePressed: 'rgba(255, 255, 255, 0.12)',
534
+ lineOnAccentBoldFaint: 'rgba(0, 0, 0, 0.12)',
535
+ lineOnAccentBoldPale: 'rgba(0, 0, 0, 0.24)',
536
+ lineOnBrandOriginalFaint: 'rgba(255, 255, 255, 0.12)',
537
+ lineOnBrandOriginalPale: 'rgba(255, 255, 255, 0.24)',
538
+ lineSuccessBold: '#009b41',
539
+ lineSuccessBoldHover: '#00b74e',
540
+ lineSuccessBoldPressed: '#458552',
541
+ lineWarningBold: '#f8ae00',
542
+ lineWarningBoldHover: '#ffbf0b',
543
+ lineWarningBoldPressed: '#cc9a51',
544
+ lineInvertedAccentBold: '#525252',
545
+ lineInvertedAccentBoldHover: '#161616',
546
+ lineInvertedAccentBoldPressed: 'rgba(0, 0, 0, 0.64)',
547
+ lineInvertedAccentPale: 'rgba(0, 0, 0, 0.24)',
548
+ lineInvertedAccentPaleHover: 'rgba(0, 0, 0, 0.32)',
549
+ lineInvertedAccentPalePressed: 'rgba(0, 0, 0, 0.4)',
550
+ lineInvertedAccentSoft: 'rgba(0, 0, 0, 0.48)',
551
+ lineInvertedAccentSoftHover: 'rgba(0, 0, 0, 0.96)',
552
+ lineInvertedAccentSoftPressed: 'rgba(0, 0, 0, 0.96)',
553
+ lineInvertedErrorBold: '#d6192a',
554
+ lineInvertedErrorBoldHover: '#f63b40',
555
+ lineInvertedErrorBoldPressed: '#a74541',
556
+ lineInvertedNeutralFaint: 'rgba(0, 0, 0, 0.08)',
557
+ lineInvertedNeutralPale: 'rgba(0, 0, 0, 0.16)',
558
+ lineInvertedNeutralPaleHover: 'rgba(0, 0, 0, 0.24)',
559
+ lineInvertedNeutralPalePressed: 'rgba(0, 0, 0, 0.32)',
560
+ lineInvertedSuccessBold: '#008d3a',
561
+ lineInvertedSuccessBoldHover: '#00b74e',
562
+ lineInvertedSuccessBoldPressed: '#458552',
563
+ lineInvertedWarningBold: '#f8ae00',
564
+ lineInvertedWarningBoldHover: '#db9400',
565
+ lineInvertedWarningBoldPressed: '#bd8f4d',
566
+ lineConstFaintBlack: 'rgba(0, 0, 0, 0.12)',
567
+ lineConstFaintWhite: 'rgba(255, 255, 255, 0.12)',
568
+ lineConstPaleBlack: 'rgba(0, 0, 0, 0.24)',
569
+ lineConstPaleBlackHover: 'rgba(0, 0, 0, 0.32)',
570
+ lineConstPaleBlackPressed: 'rgba(0, 0, 0, 0.16)',
571
+ lineConstPaleWhite: 'rgba(255, 255, 255, 0.24)',
572
+ lineConstPaleWhiteHover: 'rgba(255, 255, 255, 0.32)',
573
+ lineConstPaleWhitePressed: 'rgba(255, 255, 255, 0.16)',
574
+ surfaceBase: '#292929',
575
+ surfaceHigh: '#333333',
576
+ surfaceLow: '#1f1f1f',
577
+ surfaceModalBackdrop: 'rgba(0, 0, 0, 0.4)',
578
+ illustrationBlack: '#0d0d0d',
579
+ illustrationBrand: '#FC7630',
580
+ illustrationComplement: '#ffffff',
581
+ illustrationInvertedNeutral: '#000000',
582
+ illustrationNeutral: '#ffffff',
583
+ illustrationOnBrand: 'rgba(255, 255, 255, 1)',
584
+ illustrationOnComplement: '#601c2c',
585
+ illustrationPromo: '#601c2c',
586
+ illustrationSymbol: '#f8a97a',
587
+ illustrationWhite: '#ffffff',
588
+ customizableBoldBlack: '#b1b1b1',
589
+ customizableBoldBlue: '#2b8df2',
590
+ customizableBoldBlueDeep: '#5183ff',
591
+ customizableBoldGray: '#696969',
592
+ customizableBoldGreen: '#2ca651',
593
+ customizableBoldMint: '#00a38b',
594
+ customizableBoldOrange: '#d96528',
595
+ customizableBoldPurple: '#be5ad8',
596
+ customizableBoldRed: '#ee4948',
597
+ customizableBoldViolet: '#956ef2',
598
+ customizableBoldYellow: '#d19a00',
599
+ customizableFaintBlack: '#484848',
600
+ customizableFaintBlue: '#1f344d',
601
+ customizableFaintBlueDeep: '#1e305c',
602
+ customizableFaintGray: '#333333',
603
+ customizableFaintGreen: '#213a25',
604
+ customizableFaintMint: '#163a32',
605
+ customizableFaintOrange: '#472b1e',
606
+ customizableFaintPurple: '#44244c',
607
+ customizableFaintRed: '#502421',
608
+ customizableFaintViolet: '#362958',
609
+ customizableFaintYellow: '#3e3117',
610
+ customizableHeavyBlack: '#f2f2f2',
611
+ customizableHeavyBlue: '#80c5ff',
612
+ customizableHeavyBlueDeep: '#88b0ff',
613
+ customizableHeavyGray: '#808080',
614
+ customizableHeavyGreen: '#6fe98b',
615
+ customizableHeavyMint: '#4af6dd',
616
+ customizableHeavyOrange: '#ff8f4f',
617
+ customizableHeavyPurple: '#ea9aff',
618
+ customizableHeavyRed: '#ff8a84',
619
+ customizableHeavyViolet: '#b69fff',
620
+ customizableHeavyYellow: '#f6c405',
621
+ customizablePaleBlack: '#525252',
622
+ customizablePaleBlue: '#253f5c',
623
+ customizablePaleBlueDeep: '#243a6e',
624
+ customizablePaleGray: '#3d3d3d',
625
+ customizablePaleGreen: '#27452d',
626
+ customizablePaleMint: '#19463d',
627
+ customizablePaleOrange: '#563324',
628
+ customizablePalePurple: '#522a5c',
629
+ customizablePaleRed: '#602a27',
630
+ customizablePaleViolet: '#413169',
631
+ customizablePaleYellow: '#4b3a1b',
632
+ customizableSoftBlack: '#747474',
633
+ customizableSoftBlue: '#37608e',
634
+ customizableSoftBlueDeep: '#3959a5',
635
+ customizableSoftGray: '#525252',
636
+ customizableSoftGreen: '#3a6a43',
637
+ customizableSoftMint: '#216c5d',
638
+ customizableSoftOrange: '#844d34',
639
+ customizableSoftPurple: '#7c428b',
640
+ customizableSoftRed: '#943e3b',
641
+ customizableSoftViolet: '#634c9e',
642
+ customizableSoftYellow: '#81642a',
643
+ },
644
+ };