@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,644 +0,0 @@
1
- export const SEMANTIC_TOKENS = {
2
- light: {
3
- textAccentHeavy: '#007f34',
4
- textAccentHeavyHover: '#009b41',
5
- textAccentHeavyPressed: '#3a6a43',
6
- textErrorHeavy: '#c50220',
7
- textErrorHeavyHover: '#e62b34',
8
- textErrorHeavyPressed: '#943e3b',
9
- textInvertedAccentHeavy: '#00c655',
10
- textInvertedAccentHeavyHover: '#4ede76',
11
- textInvertedAccentHeavyPressed: '#4fa161',
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: '#26AD50',
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: '#26AD50',
53
- shapeBoldAccentHover: '#00a044',
54
- shapeBoldAccentPressed: '#289046',
55
- shapeBoldBrandOriginal: '#26AD50',
56
- shapeBoldBrandOriginalHover: '#00a044',
57
- shapeBoldBrandOriginalPressed: '#289046',
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: '#defbe2',
71
- shapeFaintAccentHover: '#c3f3ca',
72
- shapeFaintAccentPressed: '#bae4c0',
73
- shapeFaintBrand: '#d4ffda',
74
- shapeFaintBrandHover: '#c3f3ca',
75
- shapeFaintBrandPressed: '#d1edd5',
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: '#b0fabd',
115
- shapePaleAccentHover: '#a7ebb2',
116
- shapePaleAccentPressed: '#a1dbab',
117
- shapePaleBrand: '#b0fabd',
118
- shapePaleBrandHover: '#a7ebb2',
119
- shapePaleBrandPressed: '#bae4c0',
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: '#6cd984',
133
- shapeSoftAccentHover: '#4ecf70',
134
- shapeSoftAccentPressed: '#58be6f',
135
- shapeSoftBrand: '#6cd984',
136
- shapeSoftBrandHover: '#4ecf70',
137
- shapeSoftBrandPressed: '#58be6f',
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: '#00413e',
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: '#26AD50',
197
- lineAccentBoldHover: '#00a044',
198
- lineAccentBoldPressed: '#289046',
199
- lineAccentPale: '#a7ebb2',
200
- lineAccentPaleHover: '#89e39a',
201
- lineAccentPalePressed: '#89d296',
202
- lineAccentSoft: '#71c882',
203
- lineAccentSoftHover: '#009b41',
204
- lineAccentSoftPressed: '#3a6a43',
205
- lineBrandOriginal: '#26AD50',
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: '#26AD50',
224
- lineInvertedAccentBoldHover: '#36ba5d',
225
- lineInvertedAccentBoldPressed: '#379c52',
226
- lineInvertedAccentPale: '#345e3c',
227
- lineInvertedAccentPaleHover: '#3a6a43',
228
- lineInvertedAccentPalePressed: '#2d5134',
229
- lineInvertedAccentSoft: '#3a6a43',
230
- lineInvertedAccentSoftHover: '#4ede76',
231
- lineInvertedAccentSoftPressed: '#2ca651',
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: '#26AD50',
259
- illustrationComplement: '#00413e',
260
- illustrationInvertedNeutral: '#ffffff',
261
- illustrationNeutral: '#000000',
262
- illustrationOnBrand: 'rgba(255, 255, 255, 1)',
263
- illustrationOnComplement: '#ffffff',
264
- illustrationPromo: '#00413e',
265
- illustrationSymbol: '#6cd984',
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: '#00c655',
325
- textAccentHeavyHover: '#4ede76',
326
- textAccentHeavyPressed: '#4fa161',
327
- textErrorHeavy: '#ff5352',
328
- textErrorHeavyHover: '#ff726b',
329
- textErrorHeavyPressed: '#dd5d58',
330
- textInvertedAccentHeavy: '#007f34',
331
- textInvertedAccentHeavyHover: '#009b41',
332
- textInvertedAccentHeavyPressed: '#3a6a43',
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: '#22ad51',
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(255, 255, 255, 0.32)',
366
- textOnAccentBoldHeavy: 'rgba(255, 255, 255, 0.96)',
367
- textOnAccentBoldPale: 'rgba(255, 255, 255, 0.4)',
368
- textOnAccentBoldSoft: 'rgba(255, 255, 255, 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: '#26AD50',
374
- shapeBoldAccentHover: '#36ba5d',
375
- shapeBoldAccentPressed: '#379c52',
376
- shapeBoldBrandOriginal: '#26AD50',
377
- shapeBoldBrandOriginalHover: '#36ba5d',
378
- shapeBoldBrandOriginalPressed: '#289046',
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: '#213a25',
392
- shapeFaintAccentHover: '#27452d',
393
- shapeFaintAccentPressed: '#1a2e1e',
394
- shapeFaintBrand: '#213a25',
395
- shapeFaintBrandHover: '#27452d',
396
- shapeFaintBrandPressed: '#1a2e1e',
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: '#27452d',
436
- shapePaleAccentHover: '#2d5134',
437
- shapePaleAccentPressed: '#213a25',
438
- shapePaleBrand: '#27452d',
439
- shapePaleBrandHover: '#2d5134',
440
- shapePaleBrandPressed: '#213a25',
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: '#3a6a43',
454
- shapeSoftAccentHover: '#3f784b',
455
- shapeSoftAccentPressed: '#345e3c',
456
- shapeSoftBrand: '#3a6a43',
457
- shapeSoftBrandHover: '#3f784b',
458
- shapeSoftBrandPressed: '#345e3c',
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: '#00413e',
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: '#26AD50',
518
- lineAccentBoldHover: '#36ba5d',
519
- lineAccentBoldPressed: '#379c52',
520
- lineAccentPale: '#2d5134',
521
- lineAccentPaleHover: '#345e3c',
522
- lineAccentPalePressed: '#27452d',
523
- lineAccentSoft: '#3a6a43',
524
- lineAccentSoftHover: '#4ede76',
525
- lineAccentSoftPressed: '#4fa161',
526
- lineBrandOriginal: '#26AD50',
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(255, 255, 255, 0.12)',
535
- lineOnAccentBoldPale: 'rgba(255, 255, 255, 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: '#26AD50',
545
- lineInvertedAccentBoldHover: '#00a044',
546
- lineInvertedAccentBoldPressed: '#289046',
547
- lineInvertedAccentPale: '#89e39a',
548
- lineInvertedAccentPaleHover: '#6cd984',
549
- lineInvertedAccentPalePressed: '#71c882',
550
- lineInvertedAccentSoft: '#71c882',
551
- lineInvertedAccentSoftHover: '#009b41',
552
- lineInvertedAccentSoftPressed: '#3a6a43',
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: '#26AD50',
580
- illustrationComplement: '#ffffff',
581
- illustrationInvertedNeutral: '#000000',
582
- illustrationNeutral: '#ffffff',
583
- illustrationOnBrand: 'rgba(255, 255, 255, 1)',
584
- illustrationOnComplement: '#00413e',
585
- illustrationPromo: '#00413e',
586
- illustrationSymbol: '#6cd984',
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
- };