@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
@@ -0,0 +1,647 @@
1
+ export var getColorsDefaultTokens = function (base) {
2
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, _65, _66, _67, _68, _69, _70, _71, _72, _73, _74, _75, _76, _77, _78, _79, _80, _81, _82, _83, _84, _85, _86, _87, _88, _89, _90, _91, _92, _93, _94, _95, _96, _97, _98, _99, _100, _101, _102, _103, _104, _105, _106, _107, _108, _109, _110, _111, _112, _113, _114, _115, _116, _117, _118, _119, _120, _121, _122, _123, _124, _125, _126, _127, _128, _129, _130, _131, _132, _133;
3
+ return ({
4
+ light: {
5
+ textAccentHeavy: ((_b = (_a = base.accent) === null || _a === void 0 ? void 0 : _a.palette) === null || _b === void 0 ? void 0 : _b.vivid[52]) || base.blackAlpha[88],
6
+ textAccentHeavyHover: ((_d = (_c = base.accent) === null || _c === void 0 ? void 0 : _c.palette) === null || _d === void 0 ? void 0 : _d.vivid[60]) || base.blackAlpha[96],
7
+ textAccentHeavyPressed: ((_f = (_e = base.accent) === null || _e === void 0 ? void 0 : _e.palette) === null || _f === void 0 ? void 0 : _f.dim[48]) || base.blackAlpha[96],
8
+ textErrorHeavy: base.customizable.red.vivid[52],
9
+ textErrorHeavyHover: base.customizable.red.vivid[60],
10
+ textErrorHeavyPressed: base.customizable.red.dim[48],
11
+ textInvertedAccentHeavy: ((_h = (_g = base.accent) === null || _g === void 0 ? void 0 : _g.palette) === null || _h === void 0 ? void 0 : _h.vivid[72]) || base.whiteAlpha[96],
12
+ textInvertedAccentHeavyHover: ((_k = (_j = base.accent) === null || _j === void 0 ? void 0 : _j.palette) === null || _k === void 0 ? void 0 : _k.vivid[80]) || base.gray[100],
13
+ textInvertedAccentHeavyPressed: ((_m = (_l = base.accent) === null || _l === void 0 ? void 0 : _l.palette) === null || _m === void 0 ? void 0 : _m.dim[64]) || base.gray[100],
14
+ textInvertedErrorHeavy: base.customizable.red.vivid[68],
15
+ textInvertedErrorHeavyHover: base.customizable.red.vivid[72],
16
+ textInvertedErrorHeavyPressed: base.customizable.red.dim[64],
17
+ textInvertedNeutralFaint: base.whiteAlpha[40],
18
+ textInvertedNeutralHeavy: base.whiteAlpha[96],
19
+ textInvertedNeutralPale: base.whiteAlpha[48],
20
+ textInvertedNeutralSoft: base.whiteAlpha[64],
21
+ textInvertedSuccessHeavy: base.customizable.green.vivid[72],
22
+ textInvertedSuccessHeavyHover: base.customizable.green.vivid[80],
23
+ textInvertedSuccessHeavyPressed: base.customizable.green.dim[64],
24
+ textInvertedWarningHeavy: base.warning.vivid[80],
25
+ textInvertedWarningHeavyHover: base.warning.vivid[84],
26
+ textInvertedWarningHeavyPressed: base.warning.dim[72],
27
+ textLogo: base.brand.logo.light,
28
+ textNeutralFaint: base.blackAlpha[32],
29
+ textNeutralHeavy: base.blackAlpha[88],
30
+ textNeutralPale: base.blackAlpha[40],
31
+ textNeutralSoft: base.blackAlpha[56],
32
+ textSuccessHeavy: base.customizable.green.vivid[52],
33
+ textSuccessHeavyHover: base.customizable.green.vivid[60],
34
+ textSuccessHeavyPressed: base.customizable.green.dim[48],
35
+ textWarningHeavy: base.warning.vivid[64],
36
+ textWarningHeavyHover: base.warning.vivid[72],
37
+ textWarningHeavyPressed: base.warning.dim[60],
38
+ textConstFaintBlack: base.blackAlpha[32],
39
+ textConstFaintWhite: base.whiteAlpha[40],
40
+ textConstHeavyBlack: base.blackAlpha[88],
41
+ textConstHeavyWhite: base.whiteAlpha[96],
42
+ textConstPaleBlack: base.blackAlpha[40],
43
+ textConstPaleWhite: base.whiteAlpha[48],
44
+ textConstSoftBlack: base.blackAlpha[56],
45
+ textConstSoftWhite: base.whiteAlpha[64],
46
+ textOnAccentBoldFaint: ((_o = base.onAccent) === null || _o === void 0 ? void 0 : _o[40]) || base.whiteAlpha[40],
47
+ textOnAccentBoldHeavy: ((_p = base.onAccent) === null || _p === void 0 ? void 0 : _p[96]) || base.whiteAlpha[96],
48
+ textOnAccentBoldPale: ((_q = base.onAccent) === null || _q === void 0 ? void 0 : _q[48]) || base.whiteAlpha[48],
49
+ textOnAccentBoldSoft: ((_r = base.onAccent) === null || _r === void 0 ? void 0 : _r[64]) || base.whiteAlpha[64],
50
+ textOnBrandOriginalFaint: base.onBrand[40],
51
+ textOnBrandOriginalHeavy: base.onBrand[96],
52
+ textOnBrandOriginalPale: base.onBrand[48],
53
+ textOnBrandOriginalSoft: base.onBrand[64],
54
+ shapeBoldAccent: ((_s = base.accent) === null || _s === void 0 ? void 0 : _s.original.light) || base.gray[36],
55
+ shapeBoldAccentHover: ((_t = base.accent) === null || _t === void 0 ? void 0 : _t.interactions.hover.light) || base.gray[28],
56
+ shapeBoldAccentPressed: ((_u = base.accent) === null || _u === void 0 ? void 0 : _u.interactions.pressed.light) || base.gray[20],
57
+ shapeBoldBrandOriginal: base.brand.original,
58
+ shapeBoldBrandOriginalHover: base.brand.interactions.hover.light,
59
+ shapeBoldBrandOriginalPressed: base.brand.interactions.pressed.light,
60
+ shapeBoldError: base.customizable.red.vivid[64],
61
+ shapeBoldErrorHover: base.customizable.red.vivid[60],
62
+ shapeBoldErrorPressed: base.customizable.red.normal[56],
63
+ shapeBoldNeutral: base.gray[44],
64
+ shapeBoldNeutralHover: base.gray[36],
65
+ shapeBoldNeutralPressed: base.blackAlpha[56],
66
+ shapeBoldSuccess: base.customizable.green.vivid[64],
67
+ shapeBoldSuccessHover: base.customizable.green.vivid[60],
68
+ shapeBoldSuccessPressed: base.customizable.green.normal[56],
69
+ shapeBoldWarning: base.warning.vivid[84],
70
+ shapeBoldWarningHover: base.warning.vivid[80],
71
+ shapeBoldWarningPressed: base.warning.normal[76],
72
+ shapeFaintAccent: ((_w = (_v = base.accent) === null || _v === void 0 ? void 0 : _v.palette) === null || _w === void 0 ? void 0 : _w.normal[96]) || base.blackAlpha[12],
73
+ shapeFaintAccentHover: ((_y = (_x = base.accent) === null || _x === void 0 ? void 0 : _x.palette) === null || _y === void 0 ? void 0 : _y.normal[92]) || base.blackAlpha[16],
74
+ shapeFaintAccentPressed: ((_0 = (_z = base.accent) === null || _z === void 0 ? void 0 : _z.palette) === null || _0 === void 0 ? void 0 : _0.dim[88]) || base.blackAlpha[24],
75
+ shapeFaintBrand: (_1 = base.brand.palette) === null || _1 === void 0 ? void 0 : _1.vivid[96],
76
+ shapeFaintBrandHover: (_2 = base.brand.palette) === null || _2 === void 0 ? void 0 : _2.normal[92],
77
+ shapeFaintBrandPressed: (_3 = base.brand.palette) === null || _3 === void 0 ? void 0 : _3.dim[92],
78
+ shapeFaintError: base.customizable.red.vivid[96],
79
+ shapeFaintErrorHover: base.customizable.red.normal[92],
80
+ shapeFaintErrorPressed: base.customizable.red.dim[92],
81
+ shapeFaintNeutralAlpha: base.blackAlpha[6],
82
+ shapeFaintNeutralAlphaHover: base.blackAlpha[12],
83
+ shapeFaintNeutralAlphaPressed: base.blackAlpha[16],
84
+ shapeFaintSuccess: base.customizable.green.normal[96],
85
+ shapeFaintSuccessHover: base.customizable.green.normal[92],
86
+ shapeFaintSuccessPressed: base.customizable.green.dim[92],
87
+ shapeFaintWarning: base.warning.vivid[96],
88
+ shapeFaintWarningHover: base.warning.normal[92],
89
+ shapeFaintWarningPressed: base.warning.dim[92],
90
+ shapeHeavyError: base.customizable.red.normal[36],
91
+ shapeHeavyNeutral: base.gray[28],
92
+ shapeHeavySuccess: base.customizable.green.normal[36],
93
+ shapeHeavyWarning: base.warning.vivid[36],
94
+ shapeOtherAccentBoldDisabled: base.blackAlpha[32],
95
+ shapeOtherBacklessHover: base.blackAlpha[6],
96
+ shapeOtherBacklessPressed: base.blackAlpha[16],
97
+ shapeOtherBase: base.gray[100],
98
+ shapeOtherBaseHover: base.gray[96],
99
+ shapeOtherBasePressed: base.gray[92],
100
+ shapeOtherDisabled: base.blackAlpha[6],
101
+ shapeOtherField: base.gray[100],
102
+ shapeOtherFieldHover: base.gray[96],
103
+ shapeOtherFieldPressed: base.gray[92],
104
+ shapeOtherLow: base.blackAlpha[6],
105
+ shapeOtherLowHover: base.blackAlpha[8],
106
+ shapeOtherLowPressed: base.blackAlpha[12],
107
+ shapeOtherNeutralFaintSolid: base.gray[96],
108
+ shapeOtherNeutralFaintSolidHover: base.gray[92],
109
+ shapeOtherNeutralFaintSolidPressed: base.gray[88],
110
+ shapeOtherNeutralPaleSolid: base.gray[92],
111
+ shapeOtherNeutralPaleSolidHover: base.gray[88],
112
+ shapeOtherNeutralPaleSolidPressed: base.gray[84],
113
+ shapeOtherNeutralSoftSolid: base.gray[88],
114
+ shapeOtherNeutralSoftSolidHover: base.gray[80],
115
+ shapeOtherNeutralSoftSolidPressed: base.gray[76],
116
+ shapePaleAccent: ((_5 = (_4 = base.accent) === null || _4 === void 0 ? void 0 : _4.palette) === null || _5 === void 0 ? void 0 : _5.vivid[92]) || base.blackAlpha[16],
117
+ shapePaleAccentHover: ((_7 = (_6 = base.accent) === null || _6 === void 0 ? void 0 : _6.palette) === null || _7 === void 0 ? void 0 : _7.normal[88]) || base.blackAlpha[24],
118
+ shapePaleAccentPressed: ((_9 = (_8 = base.accent) === null || _8 === void 0 ? void 0 : _8.palette) === null || _9 === void 0 ? void 0 : _9.dim[84]) || base.blackAlpha[32],
119
+ shapePaleBrand: (_10 = base.brand.palette) === null || _10 === void 0 ? void 0 : _10.vivid[92],
120
+ shapePaleBrandHover: (_11 = base.brand.palette) === null || _11 === void 0 ? void 0 : _11.normal[88],
121
+ shapePaleBrandPressed: (_12 = base.brand.palette) === null || _12 === void 0 ? void 0 : _12.dim[88],
122
+ shapePaleError: base.customizable.red.vivid[92],
123
+ shapePaleErrorHover: base.customizable.red.normal[88],
124
+ shapePaleErrorPressed: base.customizable.red.dim[88],
125
+ shapePaleNeutralAlpha: base.blackAlpha[12],
126
+ shapePaleNeutralAlphaHover: base.blackAlpha[16],
127
+ shapePaleNeutralAlphaPressed: base.blackAlpha[24],
128
+ shapePaleSuccess: base.customizable.green.normal[92],
129
+ shapePaleSuccessHover: base.customizable.green.normal[88],
130
+ shapePaleSuccessPressed: base.customizable.green.dim[88],
131
+ shapePaleWarning: base.warning.vivid[92],
132
+ shapePaleWarningHover: base.warning.normal[88],
133
+ shapePaleWarningPressed: base.warning.dim[88],
134
+ shapeSoftAccent: ((_14 = (_13 = base.accent) === null || _13 === void 0 ? void 0 : _13.palette) === null || _14 === void 0 ? void 0 : _14.normal[80]) || base.blackAlpha[32],
135
+ shapeSoftAccentHover: ((_16 = (_15 = base.accent) === null || _15 === void 0 ? void 0 : _15.palette) === null || _16 === void 0 ? void 0 : _16.normal[76]) || base.blackAlpha[40],
136
+ shapeSoftAccentPressed: ((_18 = (_17 = base.accent) === null || _17 === void 0 ? void 0 : _17.palette) === null || _18 === void 0 ? void 0 : _18.dim[72]) || base.blackAlpha[48],
137
+ shapeSoftBrand: (_19 = base.brand.palette) === null || _19 === void 0 ? void 0 : _19.normal[80],
138
+ shapeSoftBrandHover: (_20 = base.brand.palette) === null || _20 === void 0 ? void 0 : _20.normal[76],
139
+ shapeSoftBrandPressed: (_21 = base.brand.palette) === null || _21 === void 0 ? void 0 : _21.dim[72],
140
+ shapeSoftError: base.customizable.red.normal[80],
141
+ shapeSoftErrorHover: base.customizable.red.normal[76],
142
+ shapeSoftErrorPressed: base.customizable.red.dim[72],
143
+ shapeSoftNeutralAlpha: base.blackAlpha[16],
144
+ shapeSoftNeutralAlphaHover: base.blackAlpha[24],
145
+ shapeSoftNeutralAlphaPressed: base.blackAlpha[32],
146
+ shapeSoftSuccess: base.customizable.green.normal[80],
147
+ shapeSoftSuccessHover: base.customizable.green.normal[76],
148
+ shapeSoftSuccessPressed: base.customizable.green.dim[72],
149
+ shapeSoftWarning: base.warning.vivid[88],
150
+ shapeSoftWarningHover: base.warning.normal[84],
151
+ shapeSoftWarningPressed: base.warning.dim[80],
152
+ shapeInvertedBacklessHover: base.whiteAlpha[6],
153
+ shapeInvertedBacklessPressed: base.whiteAlpha[4],
154
+ shapeInvertedDisabled: base.whiteAlpha[6],
155
+ shapeInvertedNeutralFaintAlpha: base.whiteAlpha[6],
156
+ shapeInvertedNeutralFaintAlphaHover: base.whiteAlpha[8],
157
+ shapeInvertedNeutralFaintAlphaPressed: base.whiteAlpha[4],
158
+ shapeInvertedNeutralHeavy: base.gray[100],
159
+ shapeInvertedNeutralHeavyHover: base.whiteAlpha[88],
160
+ shapeInvertedNeutralHeavyPressed: base.whiteAlpha[72],
161
+ shapeInvertedNeutralPaleAlpha: base.whiteAlpha[12],
162
+ shapeInvertedNeutralPaleAlphaHover: base.whiteAlpha[16],
163
+ shapeInvertedNeutralPaleAlphaPressed: base.whiteAlpha[6],
164
+ shapeInvertedNeutralSoftAlpha: base.whiteAlpha[16],
165
+ shapeInvertedNeutralSoftAlphaHover: base.whiteAlpha[24],
166
+ shapeInvertedNeutralSoftAlphaPressed: base.whiteAlpha[8],
167
+ shapeConstBacklessBlackHover: base.blackAlpha[12],
168
+ shapeConstBacklessBlackPressed: base.blackAlpha[16],
169
+ shapeConstBacklessWhiteHover: base.whiteAlpha[12],
170
+ shapeConstBacklessWhitePressed: base.whiteAlpha[6],
171
+ shapeConstDisabledBlack: base.blackAlpha[6],
172
+ shapeConstDisabledWhite: base.whiteAlpha[6],
173
+ shapeConstFaintBlack: base.blackAlpha[12],
174
+ shapeConstFaintBlackHover: base.blackAlpha[16],
175
+ shapeConstFaintBlackPressed: base.blackAlpha[24],
176
+ shapeConstFaintWhite: base.whiteAlpha[12],
177
+ shapeConstFaintWhiteHover: base.whiteAlpha[16],
178
+ shapeConstFaintWhitePressed: base.whiteAlpha[8],
179
+ shapeConstHeavyBlack: base.blackAlpha[80],
180
+ shapeConstHeavyBlackHover: base.blackAlpha[88],
181
+ shapeConstHeavyBlackPressed: base.blackAlpha[64],
182
+ shapeConstHeavyWhite: base.whiteAlpha[96],
183
+ shapeConstHeavyWhiteHover: base.gray[100],
184
+ shapeConstHeavyWhitePressed: base.whiteAlpha[64],
185
+ shapeConstPaleBlack: base.blackAlpha[16],
186
+ shapeConstPaleBlackHover: base.blackAlpha[24],
187
+ shapeConstPaleBlackPressed: base.blackAlpha[32],
188
+ shapeConstPaleWhite: base.whiteAlpha[16],
189
+ shapeConstPaleWhiteHover: base.whiteAlpha[24],
190
+ shapeConstPaleWhitePressed: base.whiteAlpha[12],
191
+ shapeConstPromo: base.brand.promo,
192
+ shapeConstSoftBlack: base.blackAlpha[24],
193
+ shapeConstSoftBlackHover: base.blackAlpha[32],
194
+ shapeConstSoftBlackPressed: base.blackAlpha[40],
195
+ shapeConstSoftWhite: base.whiteAlpha[24],
196
+ shapeConstSoftWhiteHover: base.whiteAlpha[32],
197
+ shapeConstSoftWhitePressed: base.whiteAlpha[24],
198
+ lineAccentBold: ((_22 = base.accent) === null || _22 === void 0 ? void 0 : _22.original.light) || base.gray[40],
199
+ lineAccentBoldHover: ((_23 = base.accent) === null || _23 === void 0 ? void 0 : _23.interactions.hover.light) || base.gray[20],
200
+ lineAccentBoldPressed: ((_24 = base.accent) === null || _24 === void 0 ? void 0 : _24.interactions.pressed.light) || base.blackAlpha[64],
201
+ lineAccentPale: ((_26 = (_25 = base.accent) === null || _25 === void 0 ? void 0 : _25.palette) === null || _26 === void 0 ? void 0 : _26.normal[88]) || base.blackAlpha[24],
202
+ lineAccentPaleHover: ((_28 = (_27 = base.accent) === null || _27 === void 0 ? void 0 : _27.palette) === null || _28 === void 0 ? void 0 : _28.normal[84]) || base.blackAlpha[32],
203
+ lineAccentPalePressed: ((_30 = (_29 = base.accent) === null || _29 === void 0 ? void 0 : _29.palette) === null || _30 === void 0 ? void 0 : _30.dim[80]) || base.blackAlpha[40],
204
+ lineAccentSoft: ((_32 = (_31 = base.accent) === null || _31 === void 0 ? void 0 : _31.palette) === null || _32 === void 0 ? void 0 : _32.dim[76]) || base.blackAlpha[48],
205
+ lineAccentSoftHover: ((_34 = (_33 = base.accent) === null || _33 === void 0 ? void 0 : _33.palette) === null || _34 === void 0 ? void 0 : _34.vivid[60]) || base.blackAlpha[96],
206
+ lineAccentSoftPressed: ((_36 = (_35 = base.accent) === null || _35 === void 0 ? void 0 : _35.palette) === null || _36 === void 0 ? void 0 : _36.dim[48]) || base.blackAlpha[96],
207
+ lineBrandOriginal: base.brand.original,
208
+ lineErrorBold: base.customizable.red.vivid[56],
209
+ lineErrorBoldHover: base.customizable.red.vivid[64],
210
+ lineErrorBoldPressed: base.customizable.red.dim[52],
211
+ lineNeutralFaint: base.blackAlpha[8],
212
+ lineNeutralPale: base.blackAlpha[16],
213
+ lineNeutralPaleHover: base.blackAlpha[24],
214
+ lineNeutralPalePressed: base.blackAlpha[40],
215
+ lineOnAccentBoldFaint: ((_37 = base.onAccent) === null || _37 === void 0 ? void 0 : _37[12]) || base.whiteAlpha[12],
216
+ lineOnAccentBoldPale: ((_38 = base.onAccent) === null || _38 === void 0 ? void 0 : _38[24]) || base.whiteAlpha[24],
217
+ lineOnBrandOriginalFaint: base.onBrand[12],
218
+ lineOnBrandOriginalPale: base.onBrand[24],
219
+ lineSuccessBold: base.customizable.green.vivid[56],
220
+ lineSuccessBoldHover: base.customizable.green.vivid[68],
221
+ lineSuccessBoldPressed: base.customizable.green.dim[56],
222
+ lineWarningBold: base.warning.vivid[80],
223
+ lineWarningBoldHover: base.warning.vivid[72],
224
+ lineWarningBoldPressed: base.warning.dim[68],
225
+ lineInvertedAccentBold: ((_39 = base.accent) === null || _39 === void 0 ? void 0 : _39.original.dark) || base.gray[88],
226
+ lineInvertedAccentBoldHover: ((_40 = base.accent) === null || _40 === void 0 ? void 0 : _40.interactions.hover.dark) || base.gray[100],
227
+ lineInvertedAccentBoldPressed: ((_41 = base.accent) === null || _41 === void 0 ? void 0 : _41.interactions.pressed.dark) || base.whiteAlpha[64],
228
+ lineInvertedAccentPale: ((_43 = (_42 = base.accent) === null || _42 === void 0 ? void 0 : _42.palette) === null || _43 === void 0 ? void 0 : _43.dim[44]) || base.whiteAlpha[24],
229
+ lineInvertedAccentPaleHover: ((_45 = (_44 = base.accent) === null || _44 === void 0 ? void 0 : _44.palette) === null || _45 === void 0 ? void 0 : _45.dim[48]) || base.whiteAlpha[32],
230
+ lineInvertedAccentPalePressed: ((_47 = (_46 = base.accent) === null || _46 === void 0 ? void 0 : _46.palette) === null || _47 === void 0 ? void 0 : _47.dim[40]) || base.whiteAlpha[16],
231
+ lineInvertedAccentSoft: ((_49 = (_48 = base.accent) === null || _48 === void 0 ? void 0 : _48.palette) === null || _49 === void 0 ? void 0 : _49.dim[48]) || base.whiteAlpha[48],
232
+ lineInvertedAccentSoftHover: ((_51 = (_50 = base.accent) === null || _50 === void 0 ? void 0 : _50.palette) === null || _51 === void 0 ? void 0 : _51.vivid[80]) || base.gray[100],
233
+ lineInvertedAccentSoftPressed: ((_53 = (_52 = base.accent) === null || _52 === void 0 ? void 0 : _52.palette) === null || _53 === void 0 ? void 0 : _53.normal[64]) || base.gray[100],
234
+ lineInvertedErrorBold: base.customizable.red.vivid[60],
235
+ lineInvertedErrorBoldHover: base.customizable.red.vivid[68],
236
+ lineInvertedErrorBoldPressed: base.customizable.red.dim[56],
237
+ lineInvertedNeutralFaint: base.whiteAlpha[8],
238
+ lineInvertedNeutralPale: base.whiteAlpha[16],
239
+ lineInvertedNeutralPaleHover: base.whiteAlpha[24],
240
+ lineInvertedNeutralPalePressed: base.whiteAlpha[12],
241
+ lineInvertedSuccessBold: base.customizable.green.vivid[60],
242
+ lineInvertedSuccessBoldHover: base.customizable.green.vivid[68],
243
+ lineInvertedSuccessBoldPressed: base.customizable.green.dim[56],
244
+ lineInvertedWarningBold: base.warning.vivid[80],
245
+ lineInvertedWarningBoldHover: base.warning.vivid[84],
246
+ lineInvertedWarningBoldPressed: base.warning.dim[72],
247
+ lineConstFaintBlack: base.blackAlpha[12],
248
+ lineConstFaintWhite: base.whiteAlpha[12],
249
+ lineConstPaleBlack: base.blackAlpha[24],
250
+ lineConstPaleBlackHover: base.blackAlpha[32],
251
+ lineConstPaleBlackPressed: base.blackAlpha[16],
252
+ lineConstPaleWhite: base.whiteAlpha[24],
253
+ lineConstPaleWhiteHover: base.whiteAlpha[32],
254
+ lineConstPaleWhitePressed: base.whiteAlpha[16],
255
+ surfaceBase: base.gray[100],
256
+ surfaceHigh: base.gray[100],
257
+ surfaceLow: base.gray[96],
258
+ surfaceModalBackdrop: base.blackAlpha[24],
259
+ illustrationBlack: base.gray[16],
260
+ illustrationBrand: base.brand.original,
261
+ illustrationComplement: base.brand.promo,
262
+ illustrationInvertedNeutral: base.gray[100],
263
+ illustrationNeutral: base.gray[0],
264
+ illustrationOnBrand: base.onBrand[100],
265
+ illustrationOnComplement: base.gray[100],
266
+ illustrationPromo: base.brand.promo,
267
+ illustrationSymbol: (_54 = base.brand.palette) === null || _54 === void 0 ? void 0 : _54.normal[80],
268
+ illustrationWhite: base.gray[100],
269
+ customizableBoldBlack: base.gray[52],
270
+ customizableBoldBlue: base.customizable.blue.vivid[68],
271
+ customizableBoldBlueDeep: base.customizable.blueDeep.vivid[64],
272
+ customizableBoldGray: base.gray[72],
273
+ customizableBoldGreen: base.customizable.green.vivid[68],
274
+ customizableBoldMint: base.customizable.mint.vivid[72],
275
+ customizableBoldOrange: base.customizable.orange.vivid[68],
276
+ customizableBoldPurple: base.customizable.purple.vivid[68],
277
+ customizableBoldRed: base.customizable.red.vivid[68],
278
+ customizableBoldViolet: base.customizable.violet.vivid[68],
279
+ customizableBoldYellow: base.customizable.yellow.vivid[80],
280
+ customizableFaintBlack: base.gray[92],
281
+ customizableFaintBlue: base.customizable.blue.vivid[96],
282
+ customizableFaintBlueDeep: base.customizable.blueDeep.vivid[96],
283
+ customizableFaintGray: base.gray[96],
284
+ customizableFaintGreen: base.customizable.green.normal[96],
285
+ customizableFaintMint: base.customizable.mint.normal[96],
286
+ customizableFaintOrange: base.customizable.orange.vivid[96],
287
+ customizableFaintPurple: base.customizable.purple.vivid[96],
288
+ customizableFaintRed: base.customizable.red.vivid[96],
289
+ customizableFaintViolet: base.customizable.violet.vivid[96],
290
+ customizableFaintYellow: base.customizable.yellow.vivid[96],
291
+ customizableHeavyBlack: base.gray[36],
292
+ customizableHeavyBlue: base.customizable.blue.vivid[48],
293
+ customizableHeavyBlueDeep: base.customizable.blueDeep.vivid[48],
294
+ customizableHeavyGray: base.gray[56],
295
+ customizableHeavyGreen: base.customizable.green.vivid[48],
296
+ customizableHeavyMint: base.customizable.mint.vivid[52],
297
+ customizableHeavyOrange: base.customizable.orange.vivid[48],
298
+ customizableHeavyPurple: base.customizable.purple.vivid[48],
299
+ customizableHeavyRed: base.customizable.red.vivid[52],
300
+ customizableHeavyViolet: base.customizable.violet.vivid[48],
301
+ customizableHeavyYellow: base.customizable.yellow.vivid[56],
302
+ customizablePaleBlack: base.gray[88],
303
+ customizablePaleBlue: base.customizable.blue.vivid[92],
304
+ customizablePaleBlueDeep: base.customizable.blueDeep.vivid[92],
305
+ customizablePaleGray: base.gray[92],
306
+ customizablePaleGreen: base.customizable.green.normal[92],
307
+ customizablePaleMint: base.customizable.mint.normal[92],
308
+ customizablePaleOrange: base.customizable.orange.vivid[92],
309
+ customizablePalePurple: base.customizable.purple.vivid[92],
310
+ customizablePaleRed: base.customizable.red.vivid[92],
311
+ customizablePaleViolet: base.customizable.violet.vivid[92],
312
+ customizablePaleYellow: base.customizable.yellow.vivid[92],
313
+ customizableSoftBlack: base.gray[76],
314
+ customizableSoftBlue: base.customizable.blue.vivid[80],
315
+ customizableSoftBlueDeep: base.customizable.blueDeep.vivid[80],
316
+ customizableSoftGray: base.gray[88],
317
+ customizableSoftGreen: base.customizable.green.normal[80],
318
+ customizableSoftMint: base.customizable.mint.normal[84],
319
+ customizableSoftOrange: base.customizable.orange.vivid[80],
320
+ customizableSoftPurple: base.customizable.purple.vivid[80],
321
+ customizableSoftRed: base.customizable.red.vivid[80],
322
+ customizableSoftViolet: base.customizable.violet.vivid[80],
323
+ customizableSoftYellow: base.customizable.yellow.vivid[88],
324
+ },
325
+ dark: {
326
+ textAccentHeavy: ((_56 = (_55 = base.accent) === null || _55 === void 0 ? void 0 : _55.palette) === null || _56 === void 0 ? void 0 : _56.vivid[72]) || base.whiteAlpha[96],
327
+ textAccentHeavyHover: ((_58 = (_57 = base.accent) === null || _57 === void 0 ? void 0 : _57.palette) === null || _58 === void 0 ? void 0 : _58.vivid[80]) || base.gray[100],
328
+ textAccentHeavyPressed: ((_60 = (_59 = base.accent) === null || _59 === void 0 ? void 0 : _59.palette) === null || _60 === void 0 ? void 0 : _60.dim[64]) || base.gray[100],
329
+ textErrorHeavy: base.customizable.red.vivid[68],
330
+ textErrorHeavyHover: base.customizable.red.vivid[72],
331
+ textErrorHeavyPressed: base.customizable.red.dim[64],
332
+ textInvertedAccentHeavy: ((_62 = (_61 = base.accent) === null || _61 === void 0 ? void 0 : _61.palette) === null || _62 === void 0 ? void 0 : _62.vivid[52]) || base.blackAlpha[88],
333
+ textInvertedAccentHeavyHover: ((_64 = (_63 = base.accent) === null || _63 === void 0 ? void 0 : _63.palette) === null || _64 === void 0 ? void 0 : _64.vivid[60]) || base.blackAlpha[96],
334
+ textInvertedAccentHeavyPressed: ((_66 = (_65 = base.accent) === null || _65 === void 0 ? void 0 : _65.palette) === null || _66 === void 0 ? void 0 : _66.dim[48]) || base.blackAlpha[96],
335
+ textInvertedErrorHeavy: base.customizable.red.vivid[52],
336
+ textInvertedErrorHeavyHover: base.customizable.red.vivid[60],
337
+ textInvertedErrorHeavyPressed: base.customizable.red.dim[48],
338
+ textInvertedNeutralFaint: base.blackAlpha[32],
339
+ textInvertedNeutralHeavy: base.blackAlpha[88],
340
+ textInvertedNeutralPale: base.blackAlpha[40],
341
+ textInvertedNeutralSoft: base.blackAlpha[56],
342
+ textInvertedSuccessHeavy: base.customizable.green.vivid[52],
343
+ textInvertedSuccessHeavyHover: base.customizable.green.vivid[60],
344
+ textInvertedSuccessHeavyPressed: base.customizable.green.dim[48],
345
+ textInvertedWarningHeavy: base.warning.vivid[64],
346
+ textInvertedWarningHeavyHover: base.warning.vivid[72],
347
+ textInvertedWarningHeavyPressed: base.warning.dim[56],
348
+ textLogo: base.brand.logo.dark,
349
+ textNeutralFaint: base.whiteAlpha[40],
350
+ textNeutralHeavy: base.whiteAlpha[96],
351
+ textNeutralPale: base.whiteAlpha[48],
352
+ textNeutralSoft: base.whiteAlpha[64],
353
+ textSuccessHeavy: base.customizable.green.vivid[72],
354
+ textSuccessHeavyHover: base.customizable.green.vivid[80],
355
+ textSuccessHeavyPressed: base.customizable.green.dim[64],
356
+ textWarningHeavy: base.warning.vivid[80],
357
+ textWarningHeavyHover: base.warning.vivid[84],
358
+ textWarningHeavyPressed: base.warning.dim[72],
359
+ textConstFaintBlack: base.blackAlpha[32],
360
+ textConstFaintWhite: base.whiteAlpha[40],
361
+ textConstHeavyBlack: base.blackAlpha[88],
362
+ textConstHeavyWhite: base.whiteAlpha[96],
363
+ textConstPaleBlack: base.blackAlpha[40],
364
+ textConstPaleWhite: base.whiteAlpha[48],
365
+ textConstSoftBlack: base.blackAlpha[56],
366
+ textConstSoftWhite: base.whiteAlpha[64],
367
+ textOnAccentBoldFaint: ((_67 = base.onAccent) === null || _67 === void 0 ? void 0 : _67[32]) || base.blackAlpha[32],
368
+ textOnAccentBoldHeavy: ((_68 = base.onAccent) === null || _68 === void 0 ? void 0 : _68[96]) || base.blackAlpha[88],
369
+ textOnAccentBoldPale: ((_69 = base.onAccent) === null || _69 === void 0 ? void 0 : _69[40]) || base.blackAlpha[40],
370
+ textOnAccentBoldSoft: ((_70 = base.onAccent) === null || _70 === void 0 ? void 0 : _70[56]) || base.blackAlpha[56],
371
+ textOnBrandOriginalFaint: base.onBrand[40],
372
+ textOnBrandOriginalHeavy: base.onBrand[96],
373
+ textOnBrandOriginalPale: base.onBrand[48],
374
+ textOnBrandOriginalSoft: base.onBrand[64],
375
+ shapeBoldAccent: ((_71 = base.accent) === null || _71 === void 0 ? void 0 : _71.original.dark) || base.gray[96],
376
+ shapeBoldAccentHover: ((_72 = base.accent) === null || _72 === void 0 ? void 0 : _72.interactions.hover.dark) || base.gray[100],
377
+ shapeBoldAccentPressed: ((_73 = base.accent) === null || _73 === void 0 ? void 0 : _73.interactions.pressed.dark) || base.gray[84],
378
+ shapeBoldBrandOriginal: base.brand.original,
379
+ shapeBoldBrandOriginalHover: base.brand.interactions.hover.dark,
380
+ shapeBoldBrandOriginalPressed: base.brand.interactions.pressed.light,
381
+ shapeBoldError: base.customizable.red.normal[60],
382
+ shapeBoldErrorHover: base.customizable.red.normal[64],
383
+ shapeBoldErrorPressed: base.customizable.red.dim[52],
384
+ shapeBoldNeutral: base.gray[80],
385
+ shapeBoldNeutralHover: base.gray[88],
386
+ shapeBoldNeutralPressed: base.whiteAlpha[56],
387
+ shapeBoldSuccess: base.customizable.green.normal[60],
388
+ shapeBoldSuccessHover: base.customizable.green.normal[64],
389
+ shapeBoldSuccessPressed: base.customizable.green.dim[52],
390
+ shapeBoldWarning: base.warning.normal[80],
391
+ shapeBoldWarningHover: base.warning.normal[84],
392
+ shapeBoldWarningPressed: base.warning.dim[72],
393
+ shapeFaintAccent: ((_75 = (_74 = base.accent) === null || _74 === void 0 ? void 0 : _74.palette) === null || _75 === void 0 ? void 0 : _75.dim[32]) || base.whiteAlpha[12],
394
+ shapeFaintAccentHover: ((_77 = (_76 = base.accent) === null || _76 === void 0 ? void 0 : _76.palette) === null || _77 === void 0 ? void 0 : _77.dim[36]) || base.whiteAlpha[16],
395
+ shapeFaintAccentPressed: ((_79 = (_78 = base.accent) === null || _78 === void 0 ? void 0 : _78.palette) === null || _79 === void 0 ? void 0 : _79.dim[28]) || base.whiteAlpha[8],
396
+ shapeFaintBrand: (_80 = base.brand.palette) === null || _80 === void 0 ? void 0 : _80.dim[32],
397
+ shapeFaintBrandHover: (_81 = base.brand.palette) === null || _81 === void 0 ? void 0 : _81.dim[36],
398
+ shapeFaintBrandPressed: (_82 = base.brand.palette) === null || _82 === void 0 ? void 0 : _82.dim[28],
399
+ shapeFaintError: base.customizable.red.dim[32],
400
+ shapeFaintErrorHover: base.customizable.red.dim[36],
401
+ shapeFaintErrorPressed: base.customizable.red.dim[28],
402
+ shapeFaintNeutralAlpha: base.whiteAlpha[6],
403
+ shapeFaintNeutralAlphaHover: base.whiteAlpha[8],
404
+ shapeFaintNeutralAlphaPressed: base.whiteAlpha[4],
405
+ shapeFaintSuccess: base.customizable.green.dim[32],
406
+ shapeFaintSuccessHover: base.customizable.green.dim[36],
407
+ shapeFaintSuccessPressed: base.customizable.green.dim[28],
408
+ shapeFaintWarning: base.warning.dim[32],
409
+ shapeFaintWarningHover: base.warning.dim[36],
410
+ shapeFaintWarningPressed: base.warning.dim[28],
411
+ shapeHeavyError: base.customizable.red.vivid[92],
412
+ shapeHeavyNeutral: base.gray[96],
413
+ shapeHeavySuccess: base.customizable.green.normal[92],
414
+ shapeHeavyWarning: base.warning.vivid[92],
415
+ shapeOtherAccentBoldDisabled: base.whiteAlpha[32],
416
+ shapeOtherBacklessHover: base.whiteAlpha[6],
417
+ shapeOtherBacklessPressed: base.whiteAlpha[4],
418
+ shapeOtherBase: base.whiteAlpha[6],
419
+ shapeOtherBaseHover: base.whiteAlpha[8],
420
+ shapeOtherBasePressed: base.whiteAlpha[4],
421
+ shapeOtherDisabled: base.whiteAlpha[6],
422
+ shapeOtherField: base.blackAlpha[16],
423
+ shapeOtherFieldHover: base.blackAlpha[4],
424
+ shapeOtherFieldPressed: base.blackAlpha[12],
425
+ shapeOtherLow: base.blackAlpha[24],
426
+ shapeOtherLowHover: base.blackAlpha[16],
427
+ shapeOtherLowPressed: base.blackAlpha[32],
428
+ shapeOtherNeutralFaintSolid: base.gray[32],
429
+ shapeOtherNeutralFaintSolidHover: base.gray[36],
430
+ shapeOtherNeutralFaintSolidPressed: base.gray[32],
431
+ shapeOtherNeutralPaleSolid: base.gray[36],
432
+ shapeOtherNeutralPaleSolidHover: base.gray[40],
433
+ shapeOtherNeutralPaleSolidPressed: base.gray[32],
434
+ shapeOtherNeutralSoftSolid: base.gray[40],
435
+ shapeOtherNeutralSoftSolidHover: base.gray[48],
436
+ shapeOtherNeutralSoftSolidPressed: base.gray[36],
437
+ shapePaleAccent: ((_84 = (_83 = base.accent) === null || _83 === void 0 ? void 0 : _83.palette) === null || _84 === void 0 ? void 0 : _84.dim[36]) || base.whiteAlpha[16],
438
+ shapePaleAccentHover: ((_86 = (_85 = base.accent) === null || _85 === void 0 ? void 0 : _85.palette) === null || _86 === void 0 ? void 0 : _86.dim[40]) || base.whiteAlpha[24],
439
+ shapePaleAccentPressed: ((_88 = (_87 = base.accent) === null || _87 === void 0 ? void 0 : _87.palette) === null || _88 === void 0 ? void 0 : _88.dim[32]) || base.whiteAlpha[12],
440
+ shapePaleBrand: (_89 = base.brand.palette) === null || _89 === void 0 ? void 0 : _89.dim[36],
441
+ shapePaleBrandHover: (_90 = base.brand.palette) === null || _90 === void 0 ? void 0 : _90.dim[40],
442
+ shapePaleBrandPressed: (_91 = base.brand.palette) === null || _91 === void 0 ? void 0 : _91.dim[32],
443
+ shapePaleError: base.customizable.red.dim[36],
444
+ shapePaleErrorHover: base.customizable.red.dim[40],
445
+ shapePaleErrorPressed: base.customizable.red.dim[32],
446
+ shapePaleNeutralAlpha: base.whiteAlpha[12],
447
+ shapePaleNeutralAlphaHover: base.whiteAlpha[16],
448
+ shapePaleNeutralAlphaPressed: base.whiteAlpha[6],
449
+ shapePaleSuccess: base.customizable.green.dim[36],
450
+ shapePaleSuccessHover: base.customizable.green.dim[40],
451
+ shapePaleSuccessPressed: base.customizable.green.dim[32],
452
+ shapePaleWarning: base.warning.dim[36],
453
+ shapePaleWarningHover: base.warning.dim[40],
454
+ shapePaleWarningPressed: base.warning.dim[32],
455
+ shapeSoftAccent: ((_93 = (_92 = base.accent) === null || _92 === void 0 ? void 0 : _92.palette) === null || _93 === void 0 ? void 0 : _93.dim[48]) || base.whiteAlpha[32],
456
+ shapeSoftAccentHover: ((_95 = (_94 = base.accent) === null || _94 === void 0 ? void 0 : _94.palette) === null || _95 === void 0 ? void 0 : _95.dim[52]) || base.whiteAlpha[40],
457
+ shapeSoftAccentPressed: ((_97 = (_96 = base.accent) === null || _96 === void 0 ? void 0 : _96.palette) === null || _97 === void 0 ? void 0 : _97.dim[44]) || base.whiteAlpha[24],
458
+ shapeSoftBrand: (_98 = base.brand.palette) === null || _98 === void 0 ? void 0 : _98.dim[48],
459
+ shapeSoftBrandHover: (_99 = base.brand.palette) === null || _99 === void 0 ? void 0 : _99.dim[52],
460
+ shapeSoftBrandPressed: (_100 = base.brand.palette) === null || _100 === void 0 ? void 0 : _100.dim[44],
461
+ shapeSoftError: base.customizable.red.dim[48],
462
+ shapeSoftErrorHover: base.customizable.red.dim[52],
463
+ shapeSoftErrorPressed: base.customizable.red.dim[44],
464
+ shapeSoftNeutralAlpha: base.whiteAlpha[16],
465
+ shapeSoftNeutralAlphaHover: base.whiteAlpha[24],
466
+ shapeSoftNeutralAlphaPressed: base.whiteAlpha[8],
467
+ shapeSoftSuccess: base.customizable.green.dim[48],
468
+ shapeSoftSuccessHover: base.customizable.green.dim[52],
469
+ shapeSoftSuccessPressed: base.customizable.green.dim[44],
470
+ shapeSoftWarning: base.warning.dim[52],
471
+ shapeSoftWarningHover: base.warning.dim[56],
472
+ shapeSoftWarningPressed: base.warning.dim[48],
473
+ shapeInvertedBacklessHover: base.blackAlpha[6],
474
+ shapeInvertedBacklessPressed: base.blackAlpha[16],
475
+ shapeInvertedDisabled: base.blackAlpha[6],
476
+ shapeInvertedNeutralFaintAlpha: base.blackAlpha[6],
477
+ shapeInvertedNeutralFaintAlphaHover: base.blackAlpha[12],
478
+ shapeInvertedNeutralFaintAlphaPressed: base.blackAlpha[16],
479
+ shapeInvertedNeutralHeavy: base.blackAlpha[80],
480
+ shapeInvertedNeutralHeavyHover: base.blackAlpha[88],
481
+ shapeInvertedNeutralHeavyPressed: base.blackAlpha[72],
482
+ shapeInvertedNeutralPaleAlpha: base.blackAlpha[12],
483
+ shapeInvertedNeutralPaleAlphaHover: base.blackAlpha[16],
484
+ shapeInvertedNeutralPaleAlphaPressed: base.blackAlpha[24],
485
+ shapeInvertedNeutralSoftAlpha: base.blackAlpha[16],
486
+ shapeInvertedNeutralSoftAlphaHover: base.blackAlpha[24],
487
+ shapeInvertedNeutralSoftAlphaPressed: base.blackAlpha[32],
488
+ shapeConstBacklessBlackHover: base.blackAlpha[12],
489
+ shapeConstBacklessBlackPressed: base.blackAlpha[16],
490
+ shapeConstBacklessWhiteHover: base.whiteAlpha[12],
491
+ shapeConstBacklessWhitePressed: base.whiteAlpha[6],
492
+ shapeConstDisabledBlack: base.blackAlpha[6],
493
+ shapeConstDisabledWhite: base.whiteAlpha[6],
494
+ shapeConstFaintBlack: base.blackAlpha[12],
495
+ shapeConstFaintBlackHover: base.blackAlpha[16],
496
+ shapeConstFaintBlackPressed: base.blackAlpha[24],
497
+ shapeConstFaintWhite: base.whiteAlpha[12],
498
+ shapeConstFaintWhiteHover: base.whiteAlpha[16],
499
+ shapeConstFaintWhitePressed: base.whiteAlpha[8],
500
+ shapeConstHeavyBlack: base.blackAlpha[80],
501
+ shapeConstHeavyBlackHover: base.blackAlpha[88],
502
+ shapeConstHeavyBlackPressed: base.blackAlpha[64],
503
+ shapeConstHeavyWhite: base.whiteAlpha[96],
504
+ shapeConstHeavyWhiteHover: base.gray[100],
505
+ shapeConstHeavyWhitePressed: base.whiteAlpha[64],
506
+ shapeConstPaleBlack: base.blackAlpha[16],
507
+ shapeConstPaleBlackHover: base.blackAlpha[24],
508
+ shapeConstPaleBlackPressed: base.blackAlpha[32],
509
+ shapeConstPaleWhite: base.whiteAlpha[16],
510
+ shapeConstPaleWhiteHover: base.whiteAlpha[24],
511
+ shapeConstPaleWhitePressed: base.whiteAlpha[12],
512
+ shapeConstPromo: base.brand.promo,
513
+ shapeConstSoftBlack: base.blackAlpha[24],
514
+ shapeConstSoftBlackHover: base.blackAlpha[32],
515
+ shapeConstSoftBlackPressed: base.blackAlpha[40],
516
+ shapeConstSoftWhite: base.whiteAlpha[24],
517
+ shapeConstSoftWhiteHover: base.whiteAlpha[32],
518
+ shapeConstSoftWhitePressed: base.whiteAlpha[24],
519
+ lineAccentBold: ((_101 = base.accent) === null || _101 === void 0 ? void 0 : _101.original.dark) || base.gray[88],
520
+ lineAccentBoldHover: ((_102 = base.accent) === null || _102 === void 0 ? void 0 : _102.interactions.hover.dark) || base.gray[100],
521
+ lineAccentBoldPressed: ((_103 = base.accent) === null || _103 === void 0 ? void 0 : _103.interactions.pressed.dark) || base.whiteAlpha[64],
522
+ lineAccentPale: ((_105 = (_104 = base.accent) === null || _104 === void 0 ? void 0 : _104.palette) === null || _105 === void 0 ? void 0 : _105.dim[40]) || base.whiteAlpha[24],
523
+ lineAccentPaleHover: ((_107 = (_106 = base.accent) === null || _106 === void 0 ? void 0 : _106.palette) === null || _107 === void 0 ? void 0 : _107.dim[44]) || base.whiteAlpha[32],
524
+ lineAccentPalePressed: ((_109 = (_108 = base.accent) === null || _108 === void 0 ? void 0 : _108.palette) === null || _109 === void 0 ? void 0 : _109.dim[36]) || base.whiteAlpha[16],
525
+ lineAccentSoft: ((_111 = (_110 = base.accent) === null || _110 === void 0 ? void 0 : _110.palette) === null || _111 === void 0 ? void 0 : _111.dim[48]) || base.whiteAlpha[48],
526
+ lineAccentSoftHover: ((_113 = (_112 = base.accent) === null || _112 === void 0 ? void 0 : _112.palette) === null || _113 === void 0 ? void 0 : _113.vivid[80]) || base.gray[100],
527
+ lineAccentSoftPressed: ((_115 = (_114 = base.accent) === null || _114 === void 0 ? void 0 : _114.palette) === null || _115 === void 0 ? void 0 : _115.dim[64]) || base.gray[100],
528
+ lineBrandOriginal: base.brand.original,
529
+ lineErrorBold: base.customizable.red.vivid[60],
530
+ lineErrorBoldHover: base.customizable.red.vivid[68],
531
+ lineErrorBoldPressed: base.customizable.red.dim[56],
532
+ lineNeutralFaint: base.whiteAlpha[8],
533
+ lineNeutralPale: base.whiteAlpha[16],
534
+ lineNeutralPaleHover: base.whiteAlpha[24],
535
+ lineNeutralPalePressed: base.whiteAlpha[12],
536
+ lineOnAccentBoldFaint: ((_116 = base.onAccent) === null || _116 === void 0 ? void 0 : _116[12]) || base.blackAlpha[12],
537
+ lineOnAccentBoldPale: ((_117 = base.onAccent) === null || _117 === void 0 ? void 0 : _117[24]) || base.blackAlpha[24],
538
+ lineOnBrandOriginalFaint: base.onBrand[12],
539
+ lineOnBrandOriginalPale: base.onBrand[24],
540
+ lineSuccessBold: base.customizable.green.vivid[60],
541
+ lineSuccessBoldHover: base.customizable.green.vivid[68],
542
+ lineSuccessBoldPressed: base.customizable.green.dim[56],
543
+ lineWarningBold: base.warning.vivid[80],
544
+ lineWarningBoldHover: base.warning.vivid[84],
545
+ lineWarningBoldPressed: base.warning.dim[72],
546
+ lineInvertedAccentBold: ((_118 = base.accent) === null || _118 === void 0 ? void 0 : _118.original.light) || base.gray[44],
547
+ lineInvertedAccentBoldHover: ((_119 = base.accent) === null || _119 === void 0 ? void 0 : _119.interactions.hover.light) || base.gray[20],
548
+ lineInvertedAccentBoldPressed: ((_120 = base.accent) === null || _120 === void 0 ? void 0 : _120.interactions.pressed.light) || base.blackAlpha[64],
549
+ lineInvertedAccentPale: ((_122 = (_121 = base.accent) === null || _121 === void 0 ? void 0 : _121.palette) === null || _122 === void 0 ? void 0 : _122.normal[84]) || base.blackAlpha[24],
550
+ lineInvertedAccentPaleHover: ((_124 = (_123 = base.accent) === null || _123 === void 0 ? void 0 : _123.palette) === null || _124 === void 0 ? void 0 : _124.normal[80]) || base.blackAlpha[32],
551
+ lineInvertedAccentPalePressed: ((_126 = (_125 = base.accent) === null || _125 === void 0 ? void 0 : _125.palette) === null || _126 === void 0 ? void 0 : _126.dim[76]) || base.blackAlpha[40],
552
+ lineInvertedAccentSoft: ((_128 = (_127 = base.accent) === null || _127 === void 0 ? void 0 : _127.palette) === null || _128 === void 0 ? void 0 : _128.dim[76]) || base.blackAlpha[48],
553
+ lineInvertedAccentSoftHover: ((_130 = (_129 = base.accent) === null || _129 === void 0 ? void 0 : _129.palette) === null || _130 === void 0 ? void 0 : _130.vivid[60]) || base.blackAlpha[96],
554
+ lineInvertedAccentSoftPressed: ((_132 = (_131 = base.accent) === null || _131 === void 0 ? void 0 : _131.palette) === null || _132 === void 0 ? void 0 : _132.dim[48]) || base.blackAlpha[96],
555
+ lineInvertedErrorBold: base.customizable.red.vivid[56],
556
+ lineInvertedErrorBoldHover: base.customizable.red.vivid[64],
557
+ lineInvertedErrorBoldPressed: base.customizable.red.dim[52],
558
+ lineInvertedNeutralFaint: base.blackAlpha[8],
559
+ lineInvertedNeutralPale: base.blackAlpha[16],
560
+ lineInvertedNeutralPaleHover: base.blackAlpha[24],
561
+ lineInvertedNeutralPalePressed: base.blackAlpha[32],
562
+ lineInvertedSuccessBold: base.customizable.green.vivid[56],
563
+ lineInvertedSuccessBoldHover: base.customizable.green.vivid[68],
564
+ lineInvertedSuccessBoldPressed: base.customizable.green.dim[56],
565
+ lineInvertedWarningBold: base.warning.vivid[80],
566
+ lineInvertedWarningBoldHover: base.warning.vivid[72],
567
+ lineInvertedWarningBoldPressed: base.warning.dim[68],
568
+ lineConstFaintBlack: base.blackAlpha[12],
569
+ lineConstFaintWhite: base.whiteAlpha[12],
570
+ lineConstPaleBlack: base.blackAlpha[24],
571
+ lineConstPaleBlackHover: base.blackAlpha[32],
572
+ lineConstPaleBlackPressed: base.blackAlpha[16],
573
+ lineConstPaleWhite: base.whiteAlpha[24],
574
+ lineConstPaleWhiteHover: base.whiteAlpha[32],
575
+ lineConstPaleWhitePressed: base.whiteAlpha[16],
576
+ surfaceBase: base.gray[28],
577
+ surfaceHigh: base.gray[32],
578
+ surfaceLow: base.gray[24],
579
+ surfaceModalBackdrop: base.blackAlpha[40],
580
+ illustrationBlack: base.gray[16],
581
+ illustrationBrand: base.brand.original,
582
+ illustrationComplement: base.gray[100],
583
+ illustrationInvertedNeutral: base.gray[0],
584
+ illustrationNeutral: base.gray[100],
585
+ illustrationOnBrand: base.onBrand[100],
586
+ illustrationOnComplement: base.brand.promo,
587
+ illustrationPromo: base.brand.promo,
588
+ illustrationSymbol: (_133 = base.brand.palette) === null || _133 === void 0 ? void 0 : _133.normal[80],
589
+ illustrationWhite: base.gray[100],
590
+ customizableBoldBlack: base.gray[76],
591
+ customizableBoldBlue: base.customizable.blue.normal[64],
592
+ customizableBoldBlueDeep: base.customizable.blueDeep.vivid[60],
593
+ customizableBoldGray: base.gray[52],
594
+ customizableBoldGreen: base.customizable.green.normal[64],
595
+ customizableBoldMint: base.customizable.mint.normal[68],
596
+ customizableBoldOrange: base.customizable.orange.normal[68],
597
+ customizableBoldPurple: base.customizable.purple.normal[64],
598
+ customizableBoldRed: base.customizable.red.normal[64],
599
+ customizableBoldViolet: base.customizable.violet.normal[64],
600
+ customizableBoldYellow: base.customizable.yellow.vivid[76],
601
+ customizableFaintBlack: base.gray[40],
602
+ customizableFaintBlue: base.customizable.blue.dim[32],
603
+ customizableFaintBlueDeep: base.customizable.blueDeep.dim[32],
604
+ customizableFaintGray: base.gray[32],
605
+ customizableFaintGreen: base.customizable.green.dim[32],
606
+ customizableFaintMint: base.customizable.mint.dim[32],
607
+ customizableFaintOrange: base.customizable.orange.dim[32],
608
+ customizableFaintPurple: base.customizable.purple.dim[32],
609
+ customizableFaintRed: base.customizable.red.dim[32],
610
+ customizableFaintViolet: base.customizable.violet.dim[32],
611
+ customizableFaintYellow: base.customizable.yellow.dim[32],
612
+ customizableHeavyBlack: base.gray[96],
613
+ customizableHeavyBlue: base.customizable.blue.vivid[80],
614
+ customizableHeavyBlueDeep: base.customizable.blueDeep.vivid[76],
615
+ customizableHeavyGray: base.gray[60],
616
+ customizableHeavyGreen: base.customizable.green.vivid[84],
617
+ customizableHeavyMint: base.customizable.mint.vivid[88],
618
+ customizableHeavyOrange: base.customizable.orange.vivid[76],
619
+ customizableHeavyPurple: base.customizable.purple.vivid[80],
620
+ customizableHeavyRed: base.customizable.red.vivid[76],
621
+ customizableHeavyViolet: base.customizable.violet.vivid[76],
622
+ customizableHeavyYellow: base.customizable.yellow.vivid[84],
623
+ customizablePaleBlack: base.gray[44],
624
+ customizablePaleBlue: base.customizable.blue.dim[36],
625
+ customizablePaleBlueDeep: base.customizable.blueDeep.dim[36],
626
+ customizablePaleGray: base.gray[36],
627
+ customizablePaleGreen: base.customizable.green.dim[36],
628
+ customizablePaleMint: base.customizable.mint.dim[36],
629
+ customizablePaleOrange: base.customizable.orange.dim[36],
630
+ customizablePalePurple: base.customizable.purple.dim[36],
631
+ customizablePaleRed: base.customizable.red.dim[36],
632
+ customizablePaleViolet: base.customizable.violet.dim[36],
633
+ customizablePaleYellow: base.customizable.yellow.dim[36],
634
+ customizableSoftBlack: base.gray[56],
635
+ customizableSoftBlue: base.customizable.blue.dim[48],
636
+ customizableSoftBlueDeep: base.customizable.blueDeep.dim[48],
637
+ customizableSoftGray: base.gray[44],
638
+ customizableSoftGreen: base.customizable.green.dim[48],
639
+ customizableSoftMint: base.customizable.mint.dim[48],
640
+ customizableSoftOrange: base.customizable.orange.dim[48],
641
+ customizableSoftPurple: base.customizable.purple.dim[48],
642
+ customizableSoftRed: base.customizable.red.dim[48],
643
+ customizableSoftViolet: base.customizable.violet.dim[48],
644
+ customizableSoftYellow: base.customizable.yellow.dim[52],
645
+ },
646
+ });
647
+ };