@ptsecurity/mosaic 12.1.0 → 13.0.0

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 (731) hide show
  1. package/_theming.scss +113 -66
  2. package/_visual.scss +11 -9
  3. package/autocomplete/README.md +0 -0
  4. package/autocomplete/package.json +5 -5
  5. package/button/README.md +0 -0
  6. package/button/button.component.d.ts +17 -14
  7. package/button/button.module.d.ts +1 -1
  8. package/button/package.json +5 -5
  9. package/button-toggle/README.md +0 -0
  10. package/button-toggle/package.json +5 -5
  11. package/card/README.md +0 -0
  12. package/card/package.json +5 -5
  13. package/checkbox/README.md +1 -0
  14. package/checkbox/package.json +5 -5
  15. package/core/formatters/date/formatter.d.ts +4 -4
  16. package/core/formatters/date/templates/en-US.d.ts +8 -8
  17. package/core/formatters/date/templates/ru-RU.d.ts +8 -8
  18. package/core/package.json +5 -5
  19. package/core/pop-up/pop-up-trigger.d.ts +9 -12
  20. package/datepicker/README.md +0 -0
  21. package/datepicker/package.json +5 -5
  22. package/design-tokens/package.json +5 -5
  23. package/design-tokens/style-dictionary/build.js +6 -0
  24. package/design-tokens/style-dictionary/configs/index.js +2 -1
  25. package/design-tokens/tokens/components/navbar.json5 +12 -9
  26. package/design-tokens/tokens.d.ts +11 -9
  27. package/divider/README.md +0 -0
  28. package/divider/package.json +5 -5
  29. package/dropdown/dropdown-item.component.d.ts +1 -0
  30. package/dropdown/package.json +5 -5
  31. package/{esm2015/autocomplete/autocomplete-origin.directive.js → esm2020/autocomplete/autocomplete-origin.directive.mjs} +4 -4
  32. package/{esm2015/autocomplete/autocomplete-trigger.directive.js → esm2020/autocomplete/autocomplete-trigger.directive.mjs} +4 -4
  33. package/esm2020/autocomplete/autocomplete.component.mjs +154 -0
  34. package/{esm2015/autocomplete/autocomplete.module.js → esm2020/autocomplete/autocomplete.module.mjs} +5 -5
  35. package/{esm2015/autocomplete/index.js → esm2020/autocomplete/index.mjs} +0 -0
  36. package/{esm2015/autocomplete/ptsecurity-mosaic-autocomplete.js → esm2020/autocomplete/ptsecurity-mosaic-autocomplete.mjs} +0 -0
  37. package/{esm2015/autocomplete/public-api.js → esm2020/autocomplete/public-api.mjs} +0 -0
  38. package/esm2020/button/button.component.mjs +129 -0
  39. package/esm2020/button/button.module.mjs +38 -0
  40. package/{esm2015/button/index.js → esm2020/button/index.mjs} +0 -0
  41. package/{esm2015/button/ptsecurity-mosaic-button.js → esm2020/button/ptsecurity-mosaic-button.mjs} +0 -0
  42. package/{esm2015/button/public-api.js → esm2020/button/public-api.mjs} +0 -0
  43. package/esm2020/button-toggle/button-toggle.component.mjs +362 -0
  44. package/{esm2015/button-toggle/button-toggle.module.js → esm2020/button-toggle/button-toggle.module.mjs} +5 -5
  45. package/{esm2015/button-toggle/index.js → esm2020/button-toggle/index.mjs} +0 -0
  46. package/{esm2015/button-toggle/ptsecurity-mosaic-button-toggle.js → esm2020/button-toggle/ptsecurity-mosaic-button-toggle.mjs} +0 -0
  47. package/{esm2015/button-toggle/public-api.js → esm2020/button-toggle/public-api.mjs} +0 -0
  48. package/esm2020/card/card.component.mjs +80 -0
  49. package/{esm2015/card/card.module.js → esm2020/card/card.module.mjs} +5 -5
  50. package/{esm2015/card/index.js → esm2020/card/index.mjs} +0 -0
  51. package/{esm2015/card/ptsecurity-mosaic-card.js → esm2020/card/ptsecurity-mosaic-card.mjs} +0 -0
  52. package/{esm2015/card/public-api.js → esm2020/card/public-api.mjs} +0 -0
  53. package/{esm2015/checkbox/checkbox-config.js → esm2020/checkbox/checkbox-config.mjs} +0 -0
  54. package/{esm2015/checkbox/checkbox-module.js → esm2020/checkbox/checkbox-module.mjs} +5 -5
  55. package/{esm2015/checkbox/checkbox-required-validator.js → esm2020/checkbox/checkbox-required-validator.mjs} +4 -4
  56. package/esm2020/checkbox/checkbox.mjs +315 -0
  57. package/{esm2015/checkbox/index.js → esm2020/checkbox/index.mjs} +0 -0
  58. package/{esm2015/checkbox/ptsecurity-mosaic-checkbox.js → esm2020/checkbox/ptsecurity-mosaic-checkbox.mjs} +0 -0
  59. package/{esm2015/checkbox/public-api.js → esm2020/checkbox/public-api.mjs} +0 -0
  60. package/{esm2015/core/animation/animation.js → esm2020/core/animation/animation.mjs} +0 -0
  61. package/{esm2015/core/animation/fade-animations.js → esm2020/core/animation/fade-animations.mjs} +0 -0
  62. package/{esm2015/core/animation/index.js → esm2020/core/animation/index.mjs} +0 -0
  63. package/{esm2015/core/animation/select-animations.js → esm2020/core/animation/select-animations.mjs} +0 -0
  64. package/{esm2015/core/common-behaviors/color.js → esm2020/core/common-behaviors/color.mjs} +0 -0
  65. package/{esm2015/core/common-behaviors/common-module.js → esm2020/core/common-behaviors/common-module.mjs} +5 -5
  66. package/{esm2015/core/common-behaviors/constructor.js → esm2020/core/common-behaviors/constructor.mjs} +0 -0
  67. package/{esm2015/core/common-behaviors/disabled.js → esm2020/core/common-behaviors/disabled.mjs} +0 -0
  68. package/{esm2015/core/common-behaviors/error-state.js → esm2020/core/common-behaviors/error-state.mjs} +0 -0
  69. package/{esm2015/core/common-behaviors/index.js → esm2020/core/common-behaviors/index.mjs} +0 -0
  70. package/{esm2015/core/common-behaviors/tabindex.js → esm2020/core/common-behaviors/tabindex.mjs} +0 -0
  71. package/{esm2015/core/error/error-options.js → esm2020/core/error/error-options.mjs} +7 -7
  72. package/esm2020/core/formatters/date/formatter.mjs +314 -0
  73. package/esm2020/core/formatters/date/templates/en-US.mjs +280 -0
  74. package/esm2020/core/formatters/date/templates/ru-RU.mjs +280 -0
  75. package/{esm2015/core/formatters/index.js → esm2020/core/formatters/index.mjs} +5 -5
  76. package/esm2020/core/formatters/number/formatter.mjs +105 -0
  77. package/{esm2015/core/forms/forms-module.js → esm2020/core/forms/forms-module.mjs} +5 -5
  78. package/{esm2015/core/forms/forms.directive.js → esm2020/core/forms/forms.directive.mjs} +7 -7
  79. package/{esm2015/core/forms/index.js → esm2020/core/forms/index.mjs} +0 -0
  80. package/{esm2015/core/highlight/highlight.pipe.js → esm2020/core/highlight/highlight.pipe.mjs} +4 -4
  81. package/{esm2015/core/highlight/index.js → esm2020/core/highlight/index.mjs} +5 -5
  82. package/{esm2015/core/index.js → esm2020/core/index.mjs} +0 -0
  83. package/{esm2015/core/label/label-options.js → esm2020/core/label/label-options.mjs} +0 -0
  84. package/{esm2015/core/line/line.js → esm2020/core/line/line.mjs} +8 -8
  85. package/esm2020/core/option/action.mjs +121 -0
  86. package/{esm2015/core/option/index.js → esm2020/core/option/index.mjs} +0 -0
  87. package/esm2020/core/option/optgroup.mjs +31 -0
  88. package/{esm2015/core/option/option-module.js → esm2020/core/option/option-module.mjs} +5 -5
  89. package/esm2020/core/option/option.mjs +254 -0
  90. package/{esm2015/core/overlay/overlay-position-map.js → esm2020/core/overlay/overlay-position-map.mjs} +0 -0
  91. package/{esm2015/core/pop-up/constants.js → esm2020/core/pop-up/constants.mjs} +0 -0
  92. package/{esm2015/core/pop-up/index.js → esm2020/core/pop-up/index.mjs} +0 -0
  93. package/esm2020/core/pop-up/pop-up-trigger.mjs +246 -0
  94. package/esm2020/core/pop-up/pop-up.mjs +91 -0
  95. package/{esm2015/core/ptsecurity-mosaic-core.js → esm2020/core/ptsecurity-mosaic-core.mjs} +0 -0
  96. package/{esm2015/core/public-api.js → esm2020/core/public-api.mjs} +0 -0
  97. package/{esm2015/core/select/constants.js → esm2020/core/select/constants.mjs} +0 -0
  98. package/{esm2015/core/select/errors.js → esm2020/core/select/errors.mjs} +0 -0
  99. package/{esm2015/core/select/events.js → esm2020/core/select/events.mjs} +0 -0
  100. package/{esm2015/core/select/index.js → esm2020/core/select/index.mjs} +0 -0
  101. package/{esm2015/core/selection/constants.js → esm2020/core/selection/constants.mjs} +0 -0
  102. package/{esm2015/core/selection/index.js → esm2020/core/selection/index.mjs} +0 -0
  103. package/esm2020/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +37 -0
  104. package/{esm2015/core/selection/pseudo-checkbox/pseudo-checkbox.module.js → esm2020/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs} +5 -5
  105. package/{esm2015/core/services/measure-scrollbar.service.js → esm2020/core/services/measure-scrollbar.service.mjs} +4 -4
  106. package/{esm2015/core/utils/index.js → esm2020/core/utils/index.mjs} +0 -0
  107. package/{esm2015/core/utils/public-api.js → esm2020/core/utils/public-api.mjs} +0 -0
  108. package/{esm2015/core/utils/utils.js → esm2020/core/utils/utils.mjs} +0 -0
  109. package/{esm2015/core/validation/index.js → esm2020/core/validation/index.mjs} +0 -0
  110. package/{esm2015/core/validation/validation.js → esm2020/core/validation/validation.mjs} +0 -0
  111. package/esm2020/datepicker/calendar-body.component.mjs +106 -0
  112. package/esm2020/datepicker/calendar.component.mjs +362 -0
  113. package/{esm2015/datepicker/datepicker-animations.js → esm2020/datepicker/datepicker-animations.mjs} +0 -0
  114. package/{esm2015/datepicker/datepicker-errors.js → esm2020/datepicker/datepicker-errors.mjs} +0 -0
  115. package/esm2020/datepicker/datepicker-input.directive.mjs +900 -0
  116. package/{esm2015/datepicker/datepicker-intl.js → esm2020/datepicker/datepicker-intl.mjs} +4 -4
  117. package/{esm2015/datepicker/datepicker-module.js → esm2020/datepicker/datepicker-module.mjs} +5 -5
  118. package/esm2020/datepicker/datepicker-toggle.component.mjs +86 -0
  119. package/esm2020/datepicker/datepicker.component.mjs +408 -0
  120. package/{esm2015/datepicker/index.js → esm2020/datepicker/index.mjs} +0 -0
  121. package/{esm2015/datepicker/month-view.component.js → esm2020/datepicker/month-view.component.mjs} +5 -11
  122. package/{esm2015/datepicker/multi-year-view.component.js → esm2020/datepicker/multi-year-view.component.mjs} +5 -11
  123. package/{esm2015/datepicker/ptsecurity-mosaic-datepicker.js → esm2020/datepicker/ptsecurity-mosaic-datepicker.mjs} +0 -0
  124. package/{esm2015/datepicker/public-api.js → esm2020/datepicker/public-api.mjs} +0 -0
  125. package/{esm2015/datepicker/year-view.component.js → esm2020/datepicker/year-view.component.mjs} +5 -11
  126. package/{esm2015/design-tokens/index.js → esm2020/design-tokens/index.mjs} +0 -0
  127. package/{esm2015/design-tokens/ptsecurity-mosaic-design-tokens.js → esm2020/design-tokens/ptsecurity-mosaic-design-tokens.mjs} +0 -0
  128. package/{esm2015/design-tokens/public-api.js → esm2020/design-tokens/public-api.mjs} +0 -0
  129. package/{esm2015/design-tokens/tokens.js → esm2020/design-tokens/tokens.mjs} +12 -10
  130. package/{esm2015/divider/divider.component.js → esm2020/divider/divider.component.mjs} +6 -13
  131. package/{esm2015/divider/divider.module.js → esm2020/divider/divider.module.mjs} +5 -5
  132. package/{esm2015/divider/index.js → esm2020/divider/index.mjs} +0 -0
  133. package/{esm2015/divider/ptsecurity-mosaic-divider.js → esm2020/divider/ptsecurity-mosaic-divider.mjs} +0 -0
  134. package/{esm2015/divider/public-api.js → esm2020/divider/public-api.mjs} +0 -0
  135. package/{esm2015/dropdown/dropdown-animations.js → esm2020/dropdown/dropdown-animations.mjs} +0 -0
  136. package/{esm2015/dropdown/dropdown-content.directive.js → esm2020/dropdown/dropdown-content.directive.mjs} +6 -8
  137. package/{esm2015/dropdown/dropdown-errors.js → esm2020/dropdown/dropdown-errors.mjs} +0 -0
  138. package/esm2020/dropdown/dropdown-item.component.mjs +139 -0
  139. package/esm2020/dropdown/dropdown-trigger.directive.mjs +485 -0
  140. package/esm2020/dropdown/dropdown.component.mjs +292 -0
  141. package/{esm2015/dropdown/dropdown.module.js → esm2020/dropdown/dropdown.module.mjs} +5 -5
  142. package/{esm2015/dropdown/dropdown.types.js → esm2020/dropdown/dropdown.types.mjs} +0 -0
  143. package/{esm2015/dropdown/index.js → esm2020/dropdown/index.mjs} +0 -0
  144. package/{esm2015/dropdown/ptsecurity-mosaic-dropdown.js → esm2020/dropdown/ptsecurity-mosaic-dropdown.mjs} +0 -0
  145. package/{esm2015/dropdown/public-api.js → esm2020/dropdown/public-api.mjs} +0 -0
  146. package/esm2020/form-field/cleaner.mjs +23 -0
  147. package/{esm2015/form-field/form-field-control.js → esm2020/form-field/form-field-control.mjs} +0 -0
  148. package/{esm2015/form-field/form-field-errors.js → esm2020/form-field/form-field-errors.mjs} +0 -0
  149. package/esm2020/form-field/form-field.mjs +205 -0
  150. package/{esm2015/form-field/form-field.module.js → esm2020/form-field/form-field.module.mjs} +5 -5
  151. package/{esm2015/form-field/hint.js → esm2020/form-field/hint.mjs} +4 -4
  152. package/{esm2015/form-field/index.js → esm2020/form-field/index.mjs} +0 -0
  153. package/{esm2015/form-field/prefix.js → esm2020/form-field/prefix.mjs} +4 -4
  154. package/{esm2015/form-field/ptsecurity-mosaic-form-field.js → esm2020/form-field/ptsecurity-mosaic-form-field.mjs} +0 -0
  155. package/{esm2015/form-field/public-api.js → esm2020/form-field/public-api.mjs} +0 -0
  156. package/{esm2015/form-field/stepper.js → esm2020/form-field/stepper.mjs} +4 -4
  157. package/{esm2015/form-field/suffix.js → esm2020/form-field/suffix.mjs} +4 -4
  158. package/esm2020/icon/icon.component.mjs +44 -0
  159. package/{esm2015/icon/icon.module.js → esm2020/icon/icon.module.mjs} +5 -5
  160. package/{esm2015/icon/index.js → esm2020/icon/index.mjs} +0 -0
  161. package/{esm2015/icon/ptsecurity-mosaic-icon.js → esm2020/icon/ptsecurity-mosaic-icon.mjs} +0 -0
  162. package/{esm2015/icon/public-api.js → esm2020/icon/public-api.mjs} +0 -0
  163. package/{esm2015/index.js → esm2020/index.mjs} +0 -0
  164. package/{esm2015/input/index.js → esm2020/input/index.mjs} +0 -0
  165. package/{esm2015/input/input-errors.js → esm2020/input/input-errors.mjs} +0 -0
  166. package/esm2020/input/input-number-validators.mjs +92 -0
  167. package/{esm2015/input/input-number.js → esm2020/input/input-number.mjs} +4 -4
  168. package/{esm2015/input/input-value-accessor.js → esm2020/input/input-value-accessor.mjs} +0 -0
  169. package/{esm2015/input/input.js → esm2020/input/input.mjs} +7 -7
  170. package/{esm2015/input/input.module.js → esm2020/input/input.module.mjs} +5 -5
  171. package/{esm2015/input/ptsecurity-mosaic-input.js → esm2020/input/ptsecurity-mosaic-input.mjs} +0 -0
  172. package/{esm2015/input/public-api.js → esm2020/input/public-api.mjs} +0 -0
  173. package/{esm2015/link/index.js → esm2020/link/index.mjs} +0 -0
  174. package/esm2020/link/link.component.mjs +107 -0
  175. package/{esm2015/link/link.module.js → esm2020/link/link.module.mjs} +5 -5
  176. package/{esm2015/link/ptsecurity-mosaic-link.js → esm2020/link/ptsecurity-mosaic-link.mjs} +0 -0
  177. package/{esm2015/link/public-api.js → esm2020/link/public-api.mjs} +0 -0
  178. package/{esm2015/list/index.js → esm2020/list/index.mjs} +0 -0
  179. package/esm2020/list/list-selection.component.mjs +693 -0
  180. package/esm2020/list/list.component.mjs +44 -0
  181. package/{esm2015/list/list.module.js → esm2020/list/list.module.mjs} +5 -5
  182. package/{esm2015/list/ptsecurity-mosaic-list.js → esm2020/list/ptsecurity-mosaic-list.mjs} +0 -0
  183. package/{esm2015/list/public-api.js → esm2020/list/public-api.mjs} +0 -0
  184. package/{esm2015/modal/css-unit.pipe.js → esm2020/modal/css-unit.pipe.mjs} +4 -4
  185. package/{esm2015/modal/index.js → esm2020/modal/index.mjs} +0 -0
  186. package/{esm2015/modal/modal-control.service.js → esm2020/modal/modal-control.service.mjs} +4 -4
  187. package/{esm2015/modal/modal-ref.class.js → esm2020/modal/modal-ref.class.mjs} +0 -0
  188. package/{esm2015/modal/modal-util.js → esm2020/modal/modal-util.mjs} +0 -0
  189. package/esm2020/modal/modal.component.mjs +501 -0
  190. package/{esm2015/modal/modal.directive.js → esm2020/modal/modal.directive.mjs} +13 -13
  191. package/esm2020/modal/modal.module.mjs +72 -0
  192. package/esm2020/modal/modal.service.mjs +124 -0
  193. package/{esm2015/modal/modal.type.js → esm2020/modal/modal.type.mjs} +0 -0
  194. package/{esm2015/modal/ptsecurity-mosaic-modal.js → esm2020/modal/ptsecurity-mosaic-modal.mjs} +0 -0
  195. package/{esm2015/modal/public-api.js → esm2020/modal/public-api.mjs} +0 -0
  196. package/{esm2015/navbar/index.js → esm2020/navbar/index.mjs} +0 -0
  197. package/esm2020/navbar/navbar-item.component.mjs +577 -0
  198. package/esm2020/navbar/navbar.component.mjs +237 -0
  199. package/esm2020/navbar/navbar.module.mjs +92 -0
  200. package/{esm2015/navbar/ptsecurity-mosaic-navbar.js → esm2020/navbar/ptsecurity-mosaic-navbar.mjs} +0 -0
  201. package/{esm2015/navbar/public-api.js → esm2020/navbar/public-api.mjs} +0 -0
  202. package/{esm2015/navbar/vertical-navbar.animation.js → esm2020/navbar/vertical-navbar.animation.mjs} +2 -2
  203. package/esm2020/navbar/vertical-navbar.component.mjs +114 -0
  204. package/{esm2015/popover/index.js → esm2020/popover/index.mjs} +0 -0
  205. package/{esm2015/popover/popover-animations.js → esm2020/popover/popover-animations.mjs} +0 -0
  206. package/esm2020/popover/popover-confirm.component.mjs +108 -0
  207. package/esm2020/popover/popover.component.mjs +253 -0
  208. package/esm2020/popover/popover.module.mjs +24 -0
  209. package/{esm2015/popover/ptsecurity-mosaic-popover.js → esm2020/popover/ptsecurity-mosaic-popover.mjs} +0 -0
  210. package/{esm2015/popover/public-api.js → esm2020/popover/public-api.mjs} +2 -1
  211. package/{esm2015/progress-bar/index.js → esm2020/progress-bar/index.mjs} +0 -0
  212. package/esm2020/progress-bar/progress-bar.component.mjs +42 -0
  213. package/{esm2015/progress-bar/progress-bar.module.js → esm2020/progress-bar/progress-bar.module.mjs} +5 -5
  214. package/{esm2015/progress-bar/ptsecurity-mosaic-progress-bar.js → esm2020/progress-bar/ptsecurity-mosaic-progress-bar.mjs} +0 -0
  215. package/{esm2015/progress-bar/public-api.js → esm2020/progress-bar/public-api.mjs} +0 -0
  216. package/{esm2015/progress-spinner/index.js → esm2020/progress-spinner/index.mjs} +0 -0
  217. package/esm2020/progress-spinner/progress-spinner.component.mjs +46 -0
  218. package/{esm2015/progress-spinner/progress-spinner.module.js → esm2020/progress-spinner/progress-spinner.module.mjs} +5 -5
  219. package/{esm2015/progress-spinner/ptsecurity-mosaic-progress-spinner.js → esm2020/progress-spinner/ptsecurity-mosaic-progress-spinner.mjs} +0 -0
  220. package/{esm2015/progress-spinner/public-api.js → esm2020/progress-spinner/public-api.mjs} +0 -0
  221. package/{esm2015/ptsecurity-mosaic.js → esm2020/ptsecurity-mosaic.mjs} +0 -0
  222. package/{esm2015/public-api.js → esm2020/public-api.mjs} +0 -0
  223. package/{esm2015/radio/index.js → esm2020/radio/index.mjs} +0 -0
  224. package/{esm2015/radio/ptsecurity-mosaic-radio.js → esm2020/radio/ptsecurity-mosaic-radio.mjs} +0 -0
  225. package/{esm2015/radio/public-api.js → esm2020/radio/public-api.mjs} +0 -0
  226. package/esm2020/radio/radio.component.mjs +458 -0
  227. package/{esm2015/radio/radio.module.js → esm2020/radio/radio.module.mjs} +5 -5
  228. package/{esm2015/select/index.js → esm2020/select/index.mjs} +0 -0
  229. package/{esm2015/select/ptsecurity-mosaic-select.js → esm2020/select/ptsecurity-mosaic-select.mjs} +0 -0
  230. package/{esm2015/select/public-api.js → esm2020/select/public-api.mjs} +0 -0
  231. package/esm2020/select/select.component.mjs +1110 -0
  232. package/{esm2015/select/select.module.js → esm2020/select/select.module.mjs} +5 -5
  233. package/{esm2015/sidebar/index.js → esm2020/sidebar/index.mjs} +0 -0
  234. package/{esm2015/sidebar/ptsecurity-mosaic-sidebar.js → esm2020/sidebar/ptsecurity-mosaic-sidebar.mjs} +0 -0
  235. package/{esm2015/sidebar/public-api.js → esm2020/sidebar/public-api.mjs} +0 -0
  236. package/{esm2015/sidebar/sidebar-animations.js → esm2020/sidebar/sidebar-animations.mjs} +0 -0
  237. package/esm2020/sidebar/sidebar.component.mjs +146 -0
  238. package/{esm2015/sidebar/sidebar.module.js → esm2020/sidebar/sidebar.module.mjs} +5 -5
  239. package/{esm2015/sidepanel/index.js → esm2020/sidepanel/index.mjs} +0 -0
  240. package/{esm2015/sidepanel/ptsecurity-mosaic-sidepanel.js → esm2020/sidepanel/ptsecurity-mosaic-sidepanel.mjs} +0 -0
  241. package/{esm2015/sidepanel/public-api.js → esm2020/sidepanel/public-api.mjs} +0 -0
  242. package/{esm2015/sidepanel/sidepanel-animations.js → esm2020/sidepanel/sidepanel-animations.mjs} +0 -0
  243. package/{esm2015/sidepanel/sidepanel-config.js → esm2020/sidepanel/sidepanel-config.mjs} +0 -0
  244. package/esm2020/sidepanel/sidepanel-container.component.mjs +106 -0
  245. package/esm2020/sidepanel/sidepanel-directives.mjs +159 -0
  246. package/{esm2015/sidepanel/sidepanel-ref.js → esm2020/sidepanel/sidepanel-ref.mjs} +0 -0
  247. package/esm2020/sidepanel/sidepanel.module.mjs +74 -0
  248. package/esm2020/sidepanel/sidepanel.service.mjs +167 -0
  249. package/{esm2015/splitter/index.js → esm2020/splitter/index.mjs} +0 -0
  250. package/{esm2015/splitter/ptsecurity-mosaic-splitter.js → esm2020/splitter/ptsecurity-mosaic-splitter.mjs} +0 -0
  251. package/{esm2015/splitter/public-api.js → esm2020/splitter/public-api.mjs} +0 -0
  252. package/esm2020/splitter/splitter.component.mjs +480 -0
  253. package/esm2020/splitter/splitter.module.mjs +40 -0
  254. package/{esm2015/table/index.js → esm2020/table/index.mjs} +0 -0
  255. package/{esm2015/table/ptsecurity-mosaic-table.js → esm2020/table/ptsecurity-mosaic-table.mjs} +0 -0
  256. package/{esm2015/table/public-api.js → esm2020/table/public-api.mjs} +0 -0
  257. package/{esm2015/table/table.component.js → esm2020/table/table.component.mjs} +4 -4
  258. package/{esm2015/table/table.module.js → esm2020/table/table.module.mjs} +5 -5
  259. package/{esm2015/tabs/index.js → esm2020/tabs/index.mjs} +0 -0
  260. package/esm2020/tabs/paginated-tab-header.mjs +479 -0
  261. package/{esm2015/tabs/ptsecurity-mosaic-tabs.js → esm2020/tabs/ptsecurity-mosaic-tabs.mjs} +0 -0
  262. package/{esm2015/tabs/public-api.js → esm2020/tabs/public-api.mjs} +0 -0
  263. package/esm2020/tabs/tab-body.component.mjs +178 -0
  264. package/{esm2015/tabs/tab-content.directive.js → esm2020/tabs/tab-content.directive.mjs} +4 -4
  265. package/esm2020/tabs/tab-group.component.mjs +350 -0
  266. package/esm2020/tabs/tab-header.component.mjs +67 -0
  267. package/{esm2015/tabs/tab-label-wrapper.directive.js → esm2020/tabs/tab-label-wrapper.directive.mjs} +4 -4
  268. package/{esm2015/tabs/tab-label.directive.js → esm2020/tabs/tab-label.directive.mjs} +4 -4
  269. package/{esm2015/tabs/tab-nav-bar/index.js → esm2020/tabs/tab-nav-bar/index.mjs} +0 -0
  270. package/esm2020/tabs/tab-nav-bar/tab-nav-bar.mjs +110 -0
  271. package/{esm2015/tabs/tab.component.js → esm2020/tabs/tab.component.mjs} +4 -4
  272. package/{esm2015/tabs/tabs-animations.js → esm2020/tabs/tabs-animations.mjs} +0 -0
  273. package/{esm2015/tabs/tabs.module.js → esm2020/tabs/tabs.module.mjs} +5 -5
  274. package/{esm2015/tags/index.js → esm2020/tags/index.mjs} +0 -0
  275. package/{esm2015/tags/ptsecurity-mosaic-tags.js → esm2020/tags/ptsecurity-mosaic-tags.mjs} +0 -0
  276. package/{esm2015/tags/public-api.js → esm2020/tags/public-api.mjs} +0 -0
  277. package/{esm2015/tags/tag-default-options.js → esm2020/tags/tag-default-options.mjs} +0 -0
  278. package/{esm2015/tags/tag-input.js → esm2020/tags/tag-input.mjs} +4 -4
  279. package/esm2020/tags/tag-list.component.mjs +722 -0
  280. package/{esm2015/tags/tag-text-control.js → esm2020/tags/tag-text-control.mjs} +0 -0
  281. package/esm2020/tags/tag.component.mjs +374 -0
  282. package/{esm2015/tags/tag.module.js → esm2020/tags/tag.module.mjs} +5 -5
  283. package/{esm2015/textarea/index.js → esm2020/textarea/index.mjs} +0 -0
  284. package/{esm2015/textarea/ptsecurity-mosaic-textarea.js → esm2020/textarea/ptsecurity-mosaic-textarea.mjs} +0 -0
  285. package/{esm2015/textarea/public-api.js → esm2020/textarea/public-api.mjs} +0 -0
  286. package/{esm2015/textarea/textarea.component.js → esm2020/textarea/textarea.component.mjs} +4 -4
  287. package/{esm2015/textarea/textarea.module.js → esm2020/textarea/textarea.module.mjs} +5 -5
  288. package/{esm2015/timepicker/index.js → esm2020/timepicker/index.mjs} +0 -0
  289. package/{esm2015/timepicker/ptsecurity-mosaic-timepicker.js → esm2020/timepicker/ptsecurity-mosaic-timepicker.mjs} +0 -0
  290. package/{esm2015/timepicker/public-api.js → esm2020/timepicker/public-api.mjs} +0 -0
  291. package/{esm2015/timepicker/timepicker.constants.js → esm2020/timepicker/timepicker.constants.mjs} +0 -0
  292. package/esm2020/timepicker/timepicker.directive.mjs +653 -0
  293. package/{esm2015/timepicker/timepicker.module.js → esm2020/timepicker/timepicker.module.mjs} +5 -5
  294. package/{esm2015/toggle/index.js → esm2020/toggle/index.mjs} +0 -0
  295. package/{esm2015/toggle/ptsecurity-mosaic-toggle.js → esm2020/toggle/ptsecurity-mosaic-toggle.mjs} +0 -0
  296. package/{esm2015/toggle/public-api.js → esm2020/toggle/public-api.mjs} +0 -0
  297. package/esm2020/toggle/toggle.component.mjs +158 -0
  298. package/{esm2015/toggle/toggle.module.js → esm2020/toggle/toggle.module.mjs} +5 -5
  299. package/{esm2015/tooltip/index.js → esm2020/tooltip/index.mjs} +0 -0
  300. package/{esm2015/tooltip/ptsecurity-mosaic-tooltip.js → esm2020/tooltip/ptsecurity-mosaic-tooltip.mjs} +0 -0
  301. package/{esm2015/tooltip/public-api.js → esm2020/tooltip/public-api.mjs} +0 -0
  302. package/{esm2015/tooltip/tooltip.animations.js → esm2020/tooltip/tooltip.animations.mjs} +0 -0
  303. package/esm2020/tooltip/tooltip.component.mjs +291 -0
  304. package/{esm2015/tooltip/tooltip.module.js → esm2020/tooltip/tooltip.module.mjs} +5 -5
  305. package/{esm2015/tree/control/base-tree-control.js → esm2020/tree/control/base-tree-control.mjs} +0 -0
  306. package/{esm2015/tree/control/flat-tree-control.js → esm2020/tree/control/flat-tree-control.mjs} +0 -0
  307. package/{esm2015/tree/control/nested-tree-control.js → esm2020/tree/control/nested-tree-control.mjs} +0 -0
  308. package/{esm2015/tree/control/tree-control.js → esm2020/tree/control/tree-control.mjs} +0 -0
  309. package/{esm2015/tree/data-source/flat-data-source.js → esm2020/tree/data-source/flat-data-source.mjs} +0 -0
  310. package/{esm2015/tree/data-source/nested-data-source.js → esm2020/tree/data-source/nested-data-source.mjs} +0 -0
  311. package/{esm2015/tree/index.js → esm2020/tree/index.mjs} +0 -0
  312. package/{esm2015/tree/node.js → esm2020/tree/node.mjs} +4 -4
  313. package/{esm2015/tree/outlet.js → esm2020/tree/outlet.mjs} +4 -4
  314. package/esm2020/tree/padding.directive.mjs +110 -0
  315. package/{esm2015/tree/ptsecurity-mosaic-tree.js → esm2020/tree/ptsecurity-mosaic-tree.mjs} +0 -0
  316. package/{esm2015/tree/public-api.js → esm2020/tree/public-api.mjs} +0 -0
  317. package/esm2020/tree/toggle.mjs +80 -0
  318. package/{esm2015/tree/tree-base.js → esm2020/tree/tree-base.mjs} +7 -7
  319. package/{esm2015/tree/tree-errors.js → esm2020/tree/tree-errors.mjs} +0 -0
  320. package/esm2020/tree/tree-option.component.mjs +226 -0
  321. package/esm2020/tree/tree-selection.component.mjs +530 -0
  322. package/esm2020/tree/tree.mjs +15 -0
  323. package/esm2020/tree/tree.module.mjs +53 -0
  324. package/{esm2015/tree-select/index.js → esm2020/tree-select/index.mjs} +0 -0
  325. package/{esm2015/tree-select/ptsecurity-mosaic-tree-select.js → esm2020/tree-select/ptsecurity-mosaic-tree-select.mjs} +0 -0
  326. package/{esm2015/tree-select/public-api.js → esm2020/tree-select/public-api.mjs} +0 -0
  327. package/esm2020/tree-select/tree-select.component.mjs +889 -0
  328. package/{esm2015/tree-select/tree-select.module.js → esm2020/tree-select/tree-select.module.mjs} +5 -5
  329. package/fesm2015/ptsecurity-mosaic-autocomplete.mjs +756 -0
  330. package/fesm2015/ptsecurity-mosaic-autocomplete.mjs.map +1 -0
  331. package/fesm2015/ptsecurity-mosaic-button-toggle.mjs +385 -0
  332. package/fesm2015/ptsecurity-mosaic-button-toggle.mjs.map +1 -0
  333. package/fesm2015/ptsecurity-mosaic-button.mjs +170 -0
  334. package/fesm2015/ptsecurity-mosaic-button.mjs.map +1 -0
  335. package/fesm2015/{ptsecurity-mosaic-card.js → ptsecurity-mosaic-card.mjs} +10 -18
  336. package/fesm2015/ptsecurity-mosaic-card.mjs.map +1 -0
  337. package/fesm2015/ptsecurity-mosaic-checkbox.mjs +366 -0
  338. package/fesm2015/ptsecurity-mosaic-checkbox.mjs.map +1 -0
  339. package/fesm2015/{ptsecurity-mosaic-core.js → ptsecurity-mosaic-core.mjs} +186 -241
  340. package/fesm2015/ptsecurity-mosaic-core.mjs.map +1 -0
  341. package/fesm2015/ptsecurity-mosaic-datepicker.mjs +2700 -0
  342. package/fesm2015/ptsecurity-mosaic-datepicker.mjs.map +1 -0
  343. package/fesm2015/{ptsecurity-mosaic-design-tokens.js → ptsecurity-mosaic-design-tokens.mjs} +13 -11
  344. package/fesm2015/ptsecurity-mosaic-design-tokens.mjs.map +1 -0
  345. package/fesm2015/ptsecurity-mosaic-divider.mjs +61 -0
  346. package/fesm2015/ptsecurity-mosaic-divider.mjs.map +1 -0
  347. package/fesm2015/ptsecurity-mosaic-dropdown.mjs +1106 -0
  348. package/fesm2015/ptsecurity-mosaic-dropdown.mjs.map +1 -0
  349. package/fesm2015/ptsecurity-mosaic-form-field.mjs +378 -0
  350. package/fesm2015/ptsecurity-mosaic-form-field.mjs.map +1 -0
  351. package/fesm2015/ptsecurity-mosaic-icon.mjs +88 -0
  352. package/fesm2015/ptsecurity-mosaic-icon.mjs.map +1 -0
  353. package/fesm2015/ptsecurity-mosaic-input.mjs +609 -0
  354. package/fesm2015/ptsecurity-mosaic-input.mjs.map +1 -0
  355. package/fesm2015/{ptsecurity-mosaic-link.js → ptsecurity-mosaic-link.mjs} +8 -8
  356. package/fesm2015/ptsecurity-mosaic-link.mjs.map +1 -0
  357. package/fesm2015/ptsecurity-mosaic-list.mjs +796 -0
  358. package/fesm2015/ptsecurity-mosaic-list.mjs.map +1 -0
  359. package/fesm2015/ptsecurity-mosaic-modal.mjs +842 -0
  360. package/fesm2015/ptsecurity-mosaic-modal.mjs.map +1 -0
  361. package/fesm2015/ptsecurity-mosaic-navbar.mjs +1025 -0
  362. package/fesm2015/ptsecurity-mosaic-navbar.mjs.map +1 -0
  363. package/fesm2015/ptsecurity-mosaic-popover.mjs +393 -0
  364. package/fesm2015/ptsecurity-mosaic-popover.mjs.map +1 -0
  365. package/fesm2015/{ptsecurity-mosaic-progress-bar.js → ptsecurity-mosaic-progress-bar.mjs} +10 -18
  366. package/fesm2015/ptsecurity-mosaic-progress-bar.mjs.map +1 -0
  367. package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs +80 -0
  368. package/fesm2015/ptsecurity-mosaic-progress-spinner.mjs.map +1 -0
  369. package/fesm2015/ptsecurity-mosaic-radio.mjs +481 -0
  370. package/fesm2015/ptsecurity-mosaic-radio.mjs.map +1 -0
  371. package/fesm2015/ptsecurity-mosaic-select.mjs +1175 -0
  372. package/fesm2015/ptsecurity-mosaic-select.mjs.map +1 -0
  373. package/fesm2015/{ptsecurity-mosaic-sidebar.js → ptsecurity-mosaic-sidebar.mjs} +16 -25
  374. package/fesm2015/ptsecurity-mosaic-sidebar.mjs.map +1 -0
  375. package/fesm2015/ptsecurity-mosaic-sidepanel.mjs +592 -0
  376. package/fesm2015/ptsecurity-mosaic-sidepanel.mjs.map +1 -0
  377. package/fesm2015/ptsecurity-mosaic-splitter.mjs +524 -0
  378. package/fesm2015/ptsecurity-mosaic-splitter.mjs.map +1 -0
  379. package/fesm2015/{ptsecurity-mosaic-table.js → ptsecurity-mosaic-table.mjs} +8 -8
  380. package/fesm2015/ptsecurity-mosaic-table.mjs.map +1 -0
  381. package/fesm2015/ptsecurity-mosaic-tabs.mjs +1511 -0
  382. package/fesm2015/ptsecurity-mosaic-tabs.mjs.map +1 -0
  383. package/fesm2015/ptsecurity-mosaic-tags.mjs +1372 -0
  384. package/fesm2015/ptsecurity-mosaic-tags.mjs.map +1 -0
  385. package/fesm2015/ptsecurity-mosaic-textarea.mjs +293 -0
  386. package/fesm2015/ptsecurity-mosaic-textarea.mjs.map +1 -0
  387. package/fesm2015/ptsecurity-mosaic-timepicker.mjs +715 -0
  388. package/fesm2015/ptsecurity-mosaic-timepicker.mjs.map +1 -0
  389. package/fesm2015/{ptsecurity-mosaic-toggle.js → ptsecurity-mosaic-toggle.mjs} +12 -23
  390. package/fesm2015/ptsecurity-mosaic-toggle.mjs.map +1 -0
  391. package/fesm2015/ptsecurity-mosaic-tooltip.mjs +362 -0
  392. package/fesm2015/ptsecurity-mosaic-tooltip.mjs.map +1 -0
  393. package/fesm2015/ptsecurity-mosaic-tree-select.mjs +932 -0
  394. package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +1 -0
  395. package/fesm2015/ptsecurity-mosaic-tree.mjs +1707 -0
  396. package/fesm2015/ptsecurity-mosaic-tree.mjs.map +1 -0
  397. package/fesm2015/{ptsecurity-mosaic.js → ptsecurity-mosaic.mjs} +1 -1
  398. package/fesm2015/ptsecurity-mosaic.mjs.map +1 -0
  399. package/{fesm2015/ptsecurity-mosaic-autocomplete.js → fesm2020/ptsecurity-mosaic-autocomplete.mjs} +17 -26
  400. package/fesm2020/ptsecurity-mosaic-autocomplete.mjs.map +1 -0
  401. package/{fesm2015/ptsecurity-mosaic-button-toggle.js → fesm2020/ptsecurity-mosaic-button-toggle.mjs} +15 -23
  402. package/fesm2020/ptsecurity-mosaic-button-toggle.mjs.map +1 -0
  403. package/fesm2020/ptsecurity-mosaic-button.mjs +170 -0
  404. package/fesm2020/ptsecurity-mosaic-button.mjs.map +1 -0
  405. package/fesm2020/ptsecurity-mosaic-card.mjs +113 -0
  406. package/fesm2020/ptsecurity-mosaic-card.mjs.map +1 -0
  407. package/{fesm2015/ptsecurity-mosaic-checkbox.js → fesm2020/ptsecurity-mosaic-checkbox.mjs} +13 -23
  408. package/fesm2020/ptsecurity-mosaic-checkbox.mjs.map +1 -0
  409. package/fesm2020/ptsecurity-mosaic-core.mjs +2688 -0
  410. package/fesm2020/ptsecurity-mosaic-core.mjs.map +1 -0
  411. package/{fesm2015/ptsecurity-mosaic-datepicker.js → fesm2020/ptsecurity-mosaic-datepicker.mjs} +77 -121
  412. package/fesm2020/ptsecurity-mosaic-datepicker.mjs.map +1 -0
  413. package/fesm2020/ptsecurity-mosaic-design-tokens.mjs +939 -0
  414. package/fesm2020/ptsecurity-mosaic-design-tokens.mjs.map +1 -0
  415. package/fesm2020/ptsecurity-mosaic-divider.mjs +61 -0
  416. package/fesm2020/ptsecurity-mosaic-divider.mjs.map +1 -0
  417. package/{fesm2015/ptsecurity-mosaic-dropdown.js → fesm2020/ptsecurity-mosaic-dropdown.mjs} +45 -53
  418. package/fesm2020/ptsecurity-mosaic-dropdown.mjs.map +1 -0
  419. package/fesm2020/ptsecurity-mosaic-form-field.mjs +377 -0
  420. package/fesm2020/ptsecurity-mosaic-form-field.mjs.map +1 -0
  421. package/fesm2020/ptsecurity-mosaic-icon.mjs +86 -0
  422. package/fesm2020/ptsecurity-mosaic-icon.mjs.map +1 -0
  423. package/{fesm2015/ptsecurity-mosaic-input.js → fesm2020/ptsecurity-mosaic-input.mjs} +41 -27
  424. package/fesm2020/ptsecurity-mosaic-input.mjs.map +1 -0
  425. package/fesm2020/ptsecurity-mosaic-link.mjs +136 -0
  426. package/fesm2020/ptsecurity-mosaic-link.mjs.map +1 -0
  427. package/{fesm2015/ptsecurity-mosaic-list.js → fesm2020/ptsecurity-mosaic-list.mjs} +41 -70
  428. package/fesm2020/ptsecurity-mosaic-list.mjs.map +1 -0
  429. package/{fesm2015/ptsecurity-mosaic-modal.js → fesm2020/ptsecurity-mosaic-modal.mjs} +63 -59
  430. package/fesm2020/ptsecurity-mosaic-modal.mjs.map +1 -0
  431. package/fesm2020/ptsecurity-mosaic-navbar.mjs +1009 -0
  432. package/fesm2020/ptsecurity-mosaic-navbar.mjs.map +1 -0
  433. package/fesm2020/ptsecurity-mosaic-popover.mjs +389 -0
  434. package/fesm2020/ptsecurity-mosaic-popover.mjs.map +1 -0
  435. package/fesm2020/ptsecurity-mosaic-progress-bar.mjs +76 -0
  436. package/fesm2020/ptsecurity-mosaic-progress-bar.mjs.map +1 -0
  437. package/fesm2020/ptsecurity-mosaic-progress-spinner.mjs +80 -0
  438. package/fesm2020/ptsecurity-mosaic-progress-spinner.mjs.map +1 -0
  439. package/{fesm2015/ptsecurity-mosaic-radio.js → fesm2020/ptsecurity-mosaic-radio.mjs} +13 -22
  440. package/fesm2020/ptsecurity-mosaic-radio.mjs.map +1 -0
  441. package/{fesm2015/ptsecurity-mosaic-select.js → fesm2020/ptsecurity-mosaic-select.mjs} +23 -35
  442. package/fesm2020/ptsecurity-mosaic-select.mjs.map +1 -0
  443. package/fesm2020/ptsecurity-mosaic-sidebar.mjs +202 -0
  444. package/fesm2020/ptsecurity-mosaic-sidebar.mjs.map +1 -0
  445. package/{fesm2015/ptsecurity-mosaic-sidepanel.js → fesm2020/ptsecurity-mosaic-sidepanel.mjs} +57 -53
  446. package/fesm2020/ptsecurity-mosaic-sidepanel.mjs.map +1 -0
  447. package/fesm2020/ptsecurity-mosaic-splitter.mjs +524 -0
  448. package/fesm2020/ptsecurity-mosaic-splitter.mjs.map +1 -0
  449. package/fesm2020/ptsecurity-mosaic-table.mjs +50 -0
  450. package/fesm2020/ptsecurity-mosaic-table.mjs.map +1 -0
  451. package/{fesm2015/ptsecurity-mosaic-tabs.js → fesm2020/ptsecurity-mosaic-tabs.mjs} +65 -102
  452. package/fesm2020/ptsecurity-mosaic-tabs.mjs.map +1 -0
  453. package/{fesm2015/ptsecurity-mosaic-tags.js → fesm2020/ptsecurity-mosaic-tags.mjs} +29 -47
  454. package/fesm2020/ptsecurity-mosaic-tags.mjs.map +1 -0
  455. package/{fesm2015/ptsecurity-mosaic-textarea.js → fesm2020/ptsecurity-mosaic-textarea.mjs} +8 -8
  456. package/fesm2020/ptsecurity-mosaic-textarea.mjs.map +1 -0
  457. package/{fesm2015/ptsecurity-mosaic-timepicker.js → fesm2020/ptsecurity-mosaic-timepicker.mjs} +16 -15
  458. package/fesm2020/ptsecurity-mosaic-timepicker.mjs.map +1 -0
  459. package/fesm2020/ptsecurity-mosaic-toggle.mjs +180 -0
  460. package/fesm2020/ptsecurity-mosaic-toggle.mjs.map +1 -0
  461. package/fesm2020/ptsecurity-mosaic-tooltip.mjs +354 -0
  462. package/fesm2020/ptsecurity-mosaic-tooltip.mjs.map +1 -0
  463. package/{fesm2015/ptsecurity-mosaic-tree-select.js → fesm2020/ptsecurity-mosaic-tree-select.mjs} +16 -27
  464. package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +1 -0
  465. package/{fesm2015/ptsecurity-mosaic-tree.js → fesm2020/ptsecurity-mosaic-tree.mjs} +61 -108
  466. package/fesm2020/ptsecurity-mosaic-tree.mjs.map +1 -0
  467. package/fesm2020/ptsecurity-mosaic.mjs +4 -0
  468. package/fesm2020/ptsecurity-mosaic.mjs.map +1 -0
  469. package/form-field/README.md +0 -0
  470. package/form-field/cleaner.d.ts +2 -0
  471. package/form-field/package.json +5 -5
  472. package/icon/README.md +0 -0
  473. package/icon/package.json +5 -5
  474. package/input/input-number-validators.d.ts +2 -2
  475. package/input/package.json +5 -5
  476. package/link/README.md +0 -0
  477. package/link/package.json +5 -5
  478. package/list/README.md +0 -0
  479. package/list/package.json +5 -5
  480. package/modal/README.md +34 -0
  481. package/modal/modal.component.d.ts +2 -0
  482. package/modal/modal.module.d.ts +1 -1
  483. package/modal/package.json +5 -5
  484. package/navbar/README.md +41 -0
  485. package/navbar/navbar-item.component.d.ts +122 -34
  486. package/navbar/navbar.component.d.ts +37 -9
  487. package/navbar/navbar.module.d.ts +2 -1
  488. package/navbar/package.json +5 -5
  489. package/navbar/vertical-navbar.component.d.ts +15 -26
  490. package/package.json +299 -14
  491. package/popover/README.md +32 -0
  492. package/popover/package.json +5 -5
  493. package/popover/popover-confirm.component.d.ts +33 -0
  494. package/popover/popover.component.d.ts +14 -4
  495. package/popover/popover.module.d.ts +6 -3
  496. package/popover/public-api.d.ts +1 -0
  497. package/prebuilt-themes/dark-theme.css +1 -1
  498. package/prebuilt-themes/default-theme.css +1 -1
  499. package/prebuilt-visual/default-visual.css +1 -1
  500. package/progress-bar/README.md +0 -0
  501. package/progress-bar/package.json +5 -5
  502. package/progress-spinner/README.md +0 -0
  503. package/progress-spinner/package.json +5 -5
  504. package/radio/package.json +5 -5
  505. package/schematics/README.md +35 -0
  506. package/schematics/ng-update/data/index.d.ts +1 -0
  507. package/schematics/ng-update/data/index.js +10 -9
  508. package/schematics/ng-update/data/index.js.map +1 -1
  509. package/schematics/ng-update/data/symbol-removal.d.ts +2 -0
  510. package/schematics/ng-update/data/symbol-removal.js +5 -0
  511. package/schematics/ng-update/data/symbol-removal.js.map +1 -0
  512. package/schematics/ng-update/index.js +3 -3
  513. package/schematics/ng-update/index.js.map +1 -1
  514. package/schematics/ng-update/update-9.0.0/secondary-entry-points-migration.js +1 -2
  515. package/schematics/ng-update/update-9.0.0/secondary-entry-points-migration.js.map +1 -1
  516. package/schematics/ng-update/upgrade-data.js +2 -1
  517. package/schematics/ng-update/upgrade-data.js.map +1 -1
  518. package/schematics/tsconfig.lib.json +2 -2
  519. package/select/README.md +0 -0
  520. package/select/package.json +5 -5
  521. package/select/select.component.d.ts +2 -7
  522. package/sidebar/package.json +5 -5
  523. package/sidepanel/package.json +5 -5
  524. package/sidepanel/sidepanel-directives.d.ts +2 -0
  525. package/sidepanel/sidepanel.module.d.ts +2 -1
  526. package/splitter/package.json +5 -5
  527. package/splitter/splitter.component.d.ts +46 -5
  528. package/splitter/splitter.module.d.ts +1 -1
  529. package/table/README.md +0 -0
  530. package/table/package.json +5 -5
  531. package/tabs/README.md +0 -0
  532. package/tabs/package.json +5 -5
  533. package/tags/README.md +0 -0
  534. package/tags/package.json +5 -5
  535. package/textarea/README.md +0 -0
  536. package/textarea/package.json +5 -5
  537. package/timepicker/README.md +0 -0
  538. package/timepicker/package.json +5 -5
  539. package/toggle/package.json +5 -5
  540. package/tooltip/package.json +5 -5
  541. package/tooltip/tooltip.component.d.ts +12 -3
  542. package/tree/package.json +5 -5
  543. package/tree/padding.directive.d.ts +1 -1
  544. package/tree/tree-option.component.d.ts +1 -1
  545. package/tree/tree-selection.component.d.ts +2 -2
  546. package/tree/tree.module.d.ts +1 -1
  547. package/tree-select/README.md +0 -0
  548. package/tree-select/package.json +5 -5
  549. package/tree-select/tree-select.component.d.ts +2 -7
  550. package/bundles/ptsecurity-mosaic-autocomplete.umd.js +0 -1162
  551. package/bundles/ptsecurity-mosaic-autocomplete.umd.js.map +0 -1
  552. package/bundles/ptsecurity-mosaic-button-toggle.umd.js +0 -757
  553. package/bundles/ptsecurity-mosaic-button-toggle.umd.js.map +0 -1
  554. package/bundles/ptsecurity-mosaic-button.umd.js +0 -535
  555. package/bundles/ptsecurity-mosaic-button.umd.js.map +0 -1
  556. package/bundles/ptsecurity-mosaic-card.umd.js +0 -481
  557. package/bundles/ptsecurity-mosaic-card.umd.js.map +0 -1
  558. package/bundles/ptsecurity-mosaic-checkbox.umd.js +0 -764
  559. package/bundles/ptsecurity-mosaic-checkbox.umd.js.map +0 -1
  560. package/bundles/ptsecurity-mosaic-core.umd.js +0 -2887
  561. package/bundles/ptsecurity-mosaic-core.umd.js.map +0 -1
  562. package/bundles/ptsecurity-mosaic-datepicker.umd.js +0 -3357
  563. package/bundles/ptsecurity-mosaic-datepicker.umd.js.map +0 -1
  564. package/bundles/ptsecurity-mosaic-design-tokens.umd.js +0 -1872
  565. package/bundles/ptsecurity-mosaic-design-tokens.umd.js.map +0 -1
  566. package/bundles/ptsecurity-mosaic-divider.umd.js +0 -108
  567. package/bundles/ptsecurity-mosaic-divider.umd.js.map +0 -1
  568. package/bundles/ptsecurity-mosaic-dropdown.umd.js +0 -1519
  569. package/bundles/ptsecurity-mosaic-dropdown.umd.js.map +0 -1
  570. package/bundles/ptsecurity-mosaic-form-field.umd.js +0 -789
  571. package/bundles/ptsecurity-mosaic-form-field.umd.js.map +0 -1
  572. package/bundles/ptsecurity-mosaic-icon.umd.js +0 -452
  573. package/bundles/ptsecurity-mosaic-icon.umd.js.map +0 -1
  574. package/bundles/ptsecurity-mosaic-input.umd.js +0 -996
  575. package/bundles/ptsecurity-mosaic-input.umd.js.map +0 -1
  576. package/bundles/ptsecurity-mosaic-link.umd.js +0 -517
  577. package/bundles/ptsecurity-mosaic-link.umd.js.map +0 -1
  578. package/bundles/ptsecurity-mosaic-list.umd.js +0 -1250
  579. package/bundles/ptsecurity-mosaic-list.umd.js.map +0 -1
  580. package/bundles/ptsecurity-mosaic-modal.umd.js +0 -1304
  581. package/bundles/ptsecurity-mosaic-modal.umd.js.map +0 -1
  582. package/bundles/ptsecurity-mosaic-navbar.umd.js +0 -932
  583. package/bundles/ptsecurity-mosaic-navbar.umd.js.map +0 -1
  584. package/bundles/ptsecurity-mosaic-popover.umd.js +0 -655
  585. package/bundles/ptsecurity-mosaic-popover.umd.js.map +0 -1
  586. package/bundles/ptsecurity-mosaic-progress-bar.umd.js +0 -442
  587. package/bundles/ptsecurity-mosaic-progress-bar.umd.js.map +0 -1
  588. package/bundles/ptsecurity-mosaic-progress-spinner.umd.js +0 -450
  589. package/bundles/ptsecurity-mosaic-progress-spinner.umd.js.map +0 -1
  590. package/bundles/ptsecurity-mosaic-radio.umd.js +0 -903
  591. package/bundles/ptsecurity-mosaic-radio.umd.js.map +0 -1
  592. package/bundles/ptsecurity-mosaic-select.umd.js +0 -1608
  593. package/bundles/ptsecurity-mosaic-select.umd.js.map +0 -1
  594. package/bundles/ptsecurity-mosaic-sidebar.umd.js +0 -256
  595. package/bundles/ptsecurity-mosaic-sidebar.umd.js.map +0 -1
  596. package/bundles/ptsecurity-mosaic-sidepanel.umd.js +0 -950
  597. package/bundles/ptsecurity-mosaic-sidepanel.umd.js.map +0 -1
  598. package/bundles/ptsecurity-mosaic-splitter.umd.js +0 -438
  599. package/bundles/ptsecurity-mosaic-splitter.umd.js.map +0 -1
  600. package/bundles/ptsecurity-mosaic-table.umd.js +0 -83
  601. package/bundles/ptsecurity-mosaic-table.umd.js.map +0 -1
  602. package/bundles/ptsecurity-mosaic-tabs.umd.js +0 -2015
  603. package/bundles/ptsecurity-mosaic-tabs.umd.js.map +0 -1
  604. package/bundles/ptsecurity-mosaic-tags.umd.js +0 -1913
  605. package/bundles/ptsecurity-mosaic-tags.umd.js.map +0 -1
  606. package/bundles/ptsecurity-mosaic-textarea.umd.js +0 -666
  607. package/bundles/ptsecurity-mosaic-textarea.umd.js.map +0 -1
  608. package/bundles/ptsecurity-mosaic-timepicker.umd.js +0 -822
  609. package/bundles/ptsecurity-mosaic-timepicker.umd.js.map +0 -1
  610. package/bundles/ptsecurity-mosaic-toggle.umd.js +0 -559
  611. package/bundles/ptsecurity-mosaic-toggle.umd.js.map +0 -1
  612. package/bundles/ptsecurity-mosaic-tooltip.umd.js +0 -728
  613. package/bundles/ptsecurity-mosaic-tooltip.umd.js.map +0 -1
  614. package/bundles/ptsecurity-mosaic-tree-select.umd.js +0 -1370
  615. package/bundles/ptsecurity-mosaic-tree-select.umd.js.map +0 -1
  616. package/bundles/ptsecurity-mosaic-tree.umd.js +0 -2309
  617. package/bundles/ptsecurity-mosaic-tree.umd.js.map +0 -1
  618. package/bundles/ptsecurity-mosaic.umd.js +0 -11
  619. package/bundles/ptsecurity-mosaic.umd.js.map +0 -1
  620. package/esm2015/autocomplete/autocomplete.component.js +0 -163
  621. package/esm2015/button/button.component.js +0 -129
  622. package/esm2015/button/button.module.js +0 -42
  623. package/esm2015/button-toggle/button-toggle.component.js +0 -370
  624. package/esm2015/card/card.component.js +0 -88
  625. package/esm2015/checkbox/checkbox.js +0 -325
  626. package/esm2015/core/formatters/date/formatter.js +0 -287
  627. package/esm2015/core/formatters/date/templates/en-US.js +0 -280
  628. package/esm2015/core/formatters/date/templates/ru-RU.js +0 -280
  629. package/esm2015/core/formatters/number/formatter.js +0 -99
  630. package/esm2015/core/option/action.js +0 -131
  631. package/esm2015/core/option/optgroup.js +0 -40
  632. package/esm2015/core/option/option.js +0 -262
  633. package/esm2015/core/pop-up/pop-up-trigger.js +0 -273
  634. package/esm2015/core/pop-up/pop-up.js +0 -87
  635. package/esm2015/core/selection/pseudo-checkbox/pseudo-checkbox.js +0 -45
  636. package/esm2015/datepicker/calendar-body.component.js +0 -114
  637. package/esm2015/datepicker/calendar.component.js +0 -377
  638. package/esm2015/datepicker/datepicker-input.directive.js +0 -885
  639. package/esm2015/datepicker/datepicker-toggle.component.js +0 -94
  640. package/esm2015/datepicker/datepicker.component.js +0 -418
  641. package/esm2015/dropdown/dropdown-item.component.js +0 -142
  642. package/esm2015/dropdown/dropdown-trigger.directive.js +0 -478
  643. package/esm2015/dropdown/dropdown.component.js +0 -302
  644. package/esm2015/form-field/cleaner.js +0 -19
  645. package/esm2015/form-field/form-field.js +0 -224
  646. package/esm2015/icon/icon.component.js +0 -51
  647. package/esm2015/input/input-number-validators.js +0 -78
  648. package/esm2015/link/link.component.js +0 -108
  649. package/esm2015/list/list-selection.component.js +0 -708
  650. package/esm2015/list/list.component.js +0 -58
  651. package/esm2015/modal/modal.component.js +0 -506
  652. package/esm2015/modal/modal.module.js +0 -70
  653. package/esm2015/modal/modal.service.js +0 -117
  654. package/esm2015/navbar/navbar-item.component.js +0 -209
  655. package/esm2015/navbar/navbar.component.js +0 -118
  656. package/esm2015/navbar/navbar.module.js +0 -76
  657. package/esm2015/navbar/vertical-navbar.component.js +0 -140
  658. package/esm2015/popover/popover.component.js +0 -219
  659. package/esm2015/popover/popover.module.js +0 -21
  660. package/esm2015/progress-bar/progress-bar.component.js +0 -50
  661. package/esm2015/progress-spinner/progress-spinner.component.js +0 -54
  662. package/esm2015/radio/radio.component.js +0 -467
  663. package/esm2015/select/select.component.js +0 -1122
  664. package/esm2015/sidebar/sidebar.component.js +0 -155
  665. package/esm2015/sidepanel/sidepanel-container.component.js +0 -113
  666. package/esm2015/sidepanel/sidepanel-directives.js +0 -155
  667. package/esm2015/sidepanel/sidepanel.module.js +0 -70
  668. package/esm2015/sidepanel/sidepanel.service.js +0 -163
  669. package/esm2015/splitter/splitter.component.js +0 -331
  670. package/esm2015/splitter/splitter.module.js +0 -38
  671. package/esm2015/tabs/paginated-tab-header.js +0 -482
  672. package/esm2015/tabs/tab-body.component.js +0 -186
  673. package/esm2015/tabs/tab-group.component.js +0 -359
  674. package/esm2015/tabs/tab-header.component.js +0 -76
  675. package/esm2015/tabs/tab-nav-bar/tab-nav-bar.js +0 -118
  676. package/esm2015/tags/tag-list.component.js +0 -732
  677. package/esm2015/tags/tag.component.js +0 -382
  678. package/esm2015/timepicker/timepicker.directive.js +0 -652
  679. package/esm2015/toggle/toggle.component.js +0 -169
  680. package/esm2015/tooltip/tooltip.component.js +0 -260
  681. package/esm2015/tree/padding.directive.js +0 -114
  682. package/esm2015/tree/toggle.js +0 -89
  683. package/esm2015/tree/tree-option.component.js +0 -238
  684. package/esm2015/tree/tree-selection.component.js +0 -541
  685. package/esm2015/tree/tree.js +0 -23
  686. package/esm2015/tree/tree.module.js +0 -56
  687. package/esm2015/tree-select/tree-select.component.js +0 -900
  688. package/fesm2015/ptsecurity-mosaic-autocomplete.js.map +0 -1
  689. package/fesm2015/ptsecurity-mosaic-button-toggle.js.map +0 -1
  690. package/fesm2015/ptsecurity-mosaic-button.js +0 -174
  691. package/fesm2015/ptsecurity-mosaic-button.js.map +0 -1
  692. package/fesm2015/ptsecurity-mosaic-card.js.map +0 -1
  693. package/fesm2015/ptsecurity-mosaic-checkbox.js.map +0 -1
  694. package/fesm2015/ptsecurity-mosaic-core.js.map +0 -1
  695. package/fesm2015/ptsecurity-mosaic-datepicker.js.map +0 -1
  696. package/fesm2015/ptsecurity-mosaic-design-tokens.js.map +0 -1
  697. package/fesm2015/ptsecurity-mosaic-divider.js +0 -68
  698. package/fesm2015/ptsecurity-mosaic-divider.js.map +0 -1
  699. package/fesm2015/ptsecurity-mosaic-dropdown.js.map +0 -1
  700. package/fesm2015/ptsecurity-mosaic-form-field.js +0 -393
  701. package/fesm2015/ptsecurity-mosaic-form-field.js.map +0 -1
  702. package/fesm2015/ptsecurity-mosaic-icon.js +0 -93
  703. package/fesm2015/ptsecurity-mosaic-icon.js.map +0 -1
  704. package/fesm2015/ptsecurity-mosaic-input.js.map +0 -1
  705. package/fesm2015/ptsecurity-mosaic-link.js.map +0 -1
  706. package/fesm2015/ptsecurity-mosaic-list.js.map +0 -1
  707. package/fesm2015/ptsecurity-mosaic-modal.js.map +0 -1
  708. package/fesm2015/ptsecurity-mosaic-navbar.js +0 -539
  709. package/fesm2015/ptsecurity-mosaic-navbar.js.map +0 -1
  710. package/fesm2015/ptsecurity-mosaic-popover.js +0 -257
  711. package/fesm2015/ptsecurity-mosaic-popover.js.map +0 -1
  712. package/fesm2015/ptsecurity-mosaic-progress-bar.js.map +0 -1
  713. package/fesm2015/ptsecurity-mosaic-progress-spinner.js +0 -88
  714. package/fesm2015/ptsecurity-mosaic-progress-spinner.js.map +0 -1
  715. package/fesm2015/ptsecurity-mosaic-radio.js.map +0 -1
  716. package/fesm2015/ptsecurity-mosaic-select.js.map +0 -1
  717. package/fesm2015/ptsecurity-mosaic-sidebar.js.map +0 -1
  718. package/fesm2015/ptsecurity-mosaic-sidepanel.js.map +0 -1
  719. package/fesm2015/ptsecurity-mosaic-splitter.js +0 -373
  720. package/fesm2015/ptsecurity-mosaic-splitter.js.map +0 -1
  721. package/fesm2015/ptsecurity-mosaic-table.js.map +0 -1
  722. package/fesm2015/ptsecurity-mosaic-tabs.js.map +0 -1
  723. package/fesm2015/ptsecurity-mosaic-tags.js.map +0 -1
  724. package/fesm2015/ptsecurity-mosaic-textarea.js.map +0 -1
  725. package/fesm2015/ptsecurity-mosaic-timepicker.js.map +0 -1
  726. package/fesm2015/ptsecurity-mosaic-toggle.js.map +0 -1
  727. package/fesm2015/ptsecurity-mosaic-tooltip.js +0 -323
  728. package/fesm2015/ptsecurity-mosaic-tooltip.js.map +0 -1
  729. package/fesm2015/ptsecurity-mosaic-tree-select.js.map +0 -1
  730. package/fesm2015/ptsecurity-mosaic-tree.js.map +0 -1
  731. package/fesm2015/ptsecurity-mosaic.js.map +0 -1
@@ -0,0 +1,939 @@
1
+ /**
2
+ * Do not edit directly
3
+ */
4
+ const LightColorSchemePrimaryDefault = "#338FCC";
5
+ const LightColorSchemePrimaryPalette = { "40": { "value": "#F5FAFD", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5FAFD" }, "name": "PaletteBlue40", "attributes": { "category": "palette", "type": "blue", "item": "40" }, "path": ["palette", "blue", "40"] }, "60": { "value": "#EBF4FB", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EBF4FB" }, "name": "PaletteBlue60", "attributes": { "category": "palette", "type": "blue", "item": "60" }, "path": ["palette", "blue", "60"] }, "100": { "value": "#D8EAF7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D8EAF7" }, "name": "PaletteBlue100", "attributes": { "category": "palette", "type": "blue", "item": "100" }, "path": ["palette", "blue", "100"] }, "200": { "value": "#AAD1EC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AAD1EC" }, "name": "PaletteBlue200", "attributes": { "category": "palette", "type": "blue", "item": "200" }, "path": ["palette", "blue", "200"] }, "300": { "value": "#7FBAE1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7FBAE1" }, "name": "PaletteBlue300", "attributes": { "category": "palette", "type": "blue", "item": "300" }, "path": ["palette", "blue", "300"] }, "400": { "value": "#57A4D7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#57A4D7" }, "name": "PaletteBlue400", "attributes": { "category": "palette", "type": "blue", "item": "400" }, "path": ["palette", "blue", "400"] }, "500": { "value": "#338FCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#338FCC" }, "name": "PaletteBlue500", "attributes": { "category": "palette", "type": "blue", "item": "500" }, "path": ["palette", "blue", "500"] }, "560": { "value": "#277BB3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#277BB3" }, "name": "PaletteBlue560", "attributes": { "category": "palette", "type": "blue", "item": "560" }, "path": ["palette", "blue", "560"] }, "600": { "value": "#206EA2", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#206EA2" }, "name": "PaletteBlue600", "attributes": { "category": "palette", "type": "blue", "item": "600" }, "path": ["palette", "blue", "600"] }, "700": { "value": "#114E77", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#114E77" }, "name": "PaletteBlue700", "attributes": { "category": "palette", "type": "blue", "item": "700" }, "path": ["palette", "blue", "700"] }, "800": { "value": "#07314D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#07314D" }, "name": "PaletteBlue800", "attributes": { "category": "palette", "type": "blue", "item": "800" }, "path": ["palette", "blue", "800"] }, "A100": { "value": "rgba(0, 153, 255, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.15)" }, "name": "PaletteBlueA100", "attributes": { "category": "palette", "type": "blue", "item": "A100" }, "path": ["palette", "blue", "A100"] }, "A200": { "value": "rgba(0, 153, 255, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.3)" }, "name": "PaletteBlueA200", "attributes": { "category": "palette", "type": "blue", "item": "A200" }, "path": ["palette", "blue", "A200"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast40", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "40" }, "path": ["palette", "blue", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast60", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "60" }, "path": ["palette", "blue", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "100" }, "path": ["palette", "blue", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "200" }, "path": ["palette", "blue", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast300", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "300" }, "path": ["palette", "blue", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast400", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "400" }, "path": ["palette", "blue", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast500", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "500" }, "path": ["palette", "blue", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast560", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "560" }, "path": ["palette", "blue", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast600", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "600" }, "path": ["palette", "blue", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast700", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "700" }, "path": ["palette", "blue", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast800", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "800" }, "path": ["palette", "blue", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrastA100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A100" }, "path": ["palette", "blue", "contrast", "A100"] }, "A200": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrastA200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A200" }, "path": ["palette", "blue", "contrast", "A200"] } } };
6
+ const LightColorSchemeSecondDefault = "#B3B3B3";
7
+ const LightColorSchemeSecondPalette = { "40": { "value": "#F5F5F5", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5F5F5" }, "name": "PaletteGrey40", "attributes": { "category": "palette", "type": "grey", "item": "40" }, "path": ["palette", "grey", "40"] }, "60": { "value": "#F0F0F0", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F0F0F0" }, "name": "PaletteGrey60", "attributes": { "category": "palette", "type": "grey", "item": "60" }, "path": ["palette", "grey", "60"] }, "100": { "value": "#E6E6E6", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E6E6E6" }, "name": "PaletteGrey100", "attributes": { "category": "palette", "type": "grey", "item": "100" }, "path": ["palette", "grey", "100"] }, "200": { "value": "#CCCCCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#CCCCCC" }, "name": "PaletteGrey200", "attributes": { "category": "palette", "type": "grey", "item": "200" }, "path": ["palette", "grey", "200"] }, "300": { "value": "#B3B3B3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B3B3B3" }, "name": "PaletteGrey300", "attributes": { "category": "palette", "type": "grey", "item": "300" }, "path": ["palette", "grey", "300"] }, "400": { "value": "#999999", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#999999" }, "name": "PaletteGrey400", "attributes": { "category": "palette", "type": "grey", "item": "400" }, "path": ["palette", "grey", "400"] }, "500": { "value": "#808080", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#808080" }, "name": "PaletteGrey500", "attributes": { "category": "palette", "type": "grey", "item": "500" }, "path": ["palette", "grey", "500"] }, "560": { "value": "#707070", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#707070" }, "name": "PaletteGrey560", "attributes": { "category": "palette", "type": "grey", "item": "560" }, "path": ["palette", "grey", "560"] }, "600": { "value": "#666666", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#666666" }, "name": "PaletteGrey600", "attributes": { "category": "palette", "type": "grey", "item": "600" }, "path": ["palette", "grey", "600"] }, "700": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGrey700", "attributes": { "category": "palette", "type": "grey", "item": "700" }, "path": ["palette", "grey", "700"] }, "800": { "value": "#333333", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#333333" }, "name": "PaletteGrey800", "attributes": { "category": "palette", "type": "grey", "item": "800" }, "path": ["palette", "grey", "800"] }, "A40": { "value": "rgba(0, 0, 0, 0.04)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.04)" }, "name": "PaletteGreyA40", "attributes": { "category": "palette", "type": "grey", "item": "A40" }, "path": ["palette", "grey", "A40"] }, "A60": { "value": "rgba(0, 0, 0, 0.06)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.06)" }, "name": "PaletteGreyA60", "attributes": { "category": "palette", "type": "grey", "item": "A60" }, "path": ["palette", "grey", "A60"] }, "A100": { "value": "rgba(0, 0, 0, 0.1)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.1)" }, "name": "PaletteGreyA100", "attributes": { "category": "palette", "type": "grey", "item": "A100" }, "path": ["palette", "grey", "A100"] }, "A200": { "value": "rgba(0, 0, 0, 0.2)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.2)" }, "name": "PaletteGreyA200", "attributes": { "category": "palette", "type": "grey", "item": "A200" }, "path": ["palette", "grey", "A200"] }, "A300": { "value": "rgba(0, 0, 0, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.3)" }, "name": "PaletteGreyA300", "attributes": { "category": "palette", "type": "grey", "item": "A300" }, "path": ["palette", "grey", "A300"] }, "A500": { "value": "rgba(0, 0, 0, 0.5)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.5)" }, "name": "PaletteGreyA500", "attributes": { "category": "palette", "type": "grey", "item": "A500" }, "path": ["palette", "grey", "A500"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast40", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "40" }, "path": ["palette", "grey", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast60", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "60" }, "path": ["palette", "grey", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast100", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "100" }, "path": ["palette", "grey", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast200", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "200" }, "path": ["palette", "grey", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast300", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "300" }, "path": ["palette", "grey", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast400", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "400" }, "path": ["palette", "grey", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast500", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "500" }, "path": ["palette", "grey", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast560", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "560" }, "path": ["palette", "grey", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast600", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "600" }, "path": ["palette", "grey", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast700", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "700" }, "path": ["palette", "grey", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast800", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "800" }, "path": ["palette", "grey", "contrast", "800"] } } };
8
+ const LightColorSchemeErrorDefault = "#E76E5C";
9
+ const LightColorSchemeErrorPalette = { "40": { "value": "#FEF7F6", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FEF7F6" }, "name": "PaletteRed40", "attributes": { "category": "palette", "type": "red", "item": "40" }, "path": ["palette", "red", "40"] }, "60": { "value": "#FCEFEC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FCEFEC" }, "name": "PaletteRed60", "attributes": { "category": "palette", "type": "red", "item": "60" }, "path": ["palette", "red", "60"] }, "100": { "value": "#FADEDA", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FADEDA" }, "name": "PaletteRed100", "attributes": { "category": "palette", "type": "red", "item": "100" }, "path": ["palette", "red", "100"] }, "200": { "value": "#F4B7AE", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F4B7AE" }, "name": "PaletteRed200", "attributes": { "category": "palette", "type": "red", "item": "200" }, "path": ["palette", "red", "200"] }, "300": { "value": "#ED9284", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#ED9284" }, "name": "PaletteRed300", "attributes": { "category": "palette", "type": "red", "item": "300" }, "path": ["palette", "red", "300"] }, "400": { "value": "#E76E5C", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E76E5C" }, "name": "PaletteRed400", "attributes": { "category": "palette", "type": "red", "item": "400" }, "path": ["palette", "red", "400"] }, "500": { "value": "#E04D36", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E04D36" }, "name": "PaletteRed500", "attributes": { "category": "palette", "type": "red", "item": "500" }, "path": ["palette", "red", "500"] }, "560": { "value": "#C43E29", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#C43E29" }, "name": "PaletteRed560", "attributes": { "category": "palette", "type": "red", "item": "560" }, "path": ["palette", "red", "560"] }, "600": { "value": "#B23522", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B23522" }, "name": "PaletteRed600", "attributes": { "category": "palette", "type": "red", "item": "600" }, "path": ["palette", "red", "600"] }, "700": { "value": "#832112", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#832112" }, "name": "PaletteRed700", "attributes": { "category": "palette", "type": "red", "item": "700" }, "path": ["palette", "red", "700"] }, "800": { "value": "#541208", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#541208" }, "name": "PaletteRed800", "attributes": { "category": "palette", "type": "red", "item": "800" }, "path": ["palette", "red", "800"] }, "A100": { "value": "rgba(224, 79, 56, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(224, 79, 56, 0.15)" }, "name": "PaletteRedA100", "attributes": { "category": "palette", "type": "red", "item": "A100" }, "path": ["palette", "red", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast40", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "40" }, "path": ["palette", "red", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast60", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "60" }, "path": ["palette", "red", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast100", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "100" }, "path": ["palette", "red", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast200", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "200" }, "path": ["palette", "red", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast300", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "300" }, "path": ["palette", "red", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast400", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "400" }, "path": ["palette", "red", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast500", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "500" }, "path": ["palette", "red", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast560", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "560" }, "path": ["palette", "red", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast600", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "600" }, "path": ["palette", "red", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast700", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "700" }, "path": ["palette", "red", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast800", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "800" }, "path": ["palette", "red", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrastA100", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "A100" }, "path": ["palette", "red", "contrast", "A100"] } } };
10
+ const LightColorSchemeInfoDefault = "#AAD1EC";
11
+ const LightColorSchemeInfoPalette = { "40": { "value": "#F5FAFD", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5FAFD" }, "name": "PaletteBlue40", "attributes": { "category": "palette", "type": "blue", "item": "40" }, "path": ["palette", "blue", "40"] }, "60": { "value": "#EBF4FB", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EBF4FB" }, "name": "PaletteBlue60", "attributes": { "category": "palette", "type": "blue", "item": "60" }, "path": ["palette", "blue", "60"] }, "100": { "value": "#D8EAF7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D8EAF7" }, "name": "PaletteBlue100", "attributes": { "category": "palette", "type": "blue", "item": "100" }, "path": ["palette", "blue", "100"] }, "200": { "value": "#AAD1EC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AAD1EC" }, "name": "PaletteBlue200", "attributes": { "category": "palette", "type": "blue", "item": "200" }, "path": ["palette", "blue", "200"] }, "300": { "value": "#7FBAE1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7FBAE1" }, "name": "PaletteBlue300", "attributes": { "category": "palette", "type": "blue", "item": "300" }, "path": ["palette", "blue", "300"] }, "400": { "value": "#57A4D7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#57A4D7" }, "name": "PaletteBlue400", "attributes": { "category": "palette", "type": "blue", "item": "400" }, "path": ["palette", "blue", "400"] }, "500": { "value": "#338FCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#338FCC" }, "name": "PaletteBlue500", "attributes": { "category": "palette", "type": "blue", "item": "500" }, "path": ["palette", "blue", "500"] }, "560": { "value": "#277BB3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#277BB3" }, "name": "PaletteBlue560", "attributes": { "category": "palette", "type": "blue", "item": "560" }, "path": ["palette", "blue", "560"] }, "600": { "value": "#206EA2", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#206EA2" }, "name": "PaletteBlue600", "attributes": { "category": "palette", "type": "blue", "item": "600" }, "path": ["palette", "blue", "600"] }, "700": { "value": "#114E77", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#114E77" }, "name": "PaletteBlue700", "attributes": { "category": "palette", "type": "blue", "item": "700" }, "path": ["palette", "blue", "700"] }, "800": { "value": "#07314D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#07314D" }, "name": "PaletteBlue800", "attributes": { "category": "palette", "type": "blue", "item": "800" }, "path": ["palette", "blue", "800"] }, "A100": { "value": "rgba(0, 153, 255, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.15)" }, "name": "PaletteBlueA100", "attributes": { "category": "palette", "type": "blue", "item": "A100" }, "path": ["palette", "blue", "A100"] }, "A200": { "value": "rgba(0, 153, 255, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.3)" }, "name": "PaletteBlueA200", "attributes": { "category": "palette", "type": "blue", "item": "A200" }, "path": ["palette", "blue", "A200"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast40", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "40" }, "path": ["palette", "blue", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast60", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "60" }, "path": ["palette", "blue", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "100" }, "path": ["palette", "blue", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "200" }, "path": ["palette", "blue", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast300", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "300" }, "path": ["palette", "blue", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast400", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "400" }, "path": ["palette", "blue", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast500", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "500" }, "path": ["palette", "blue", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast560", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "560" }, "path": ["palette", "blue", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast600", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "600" }, "path": ["palette", "blue", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast700", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "700" }, "path": ["palette", "blue", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast800", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "800" }, "path": ["palette", "blue", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrastA100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A100" }, "path": ["palette", "blue", "contrast", "A100"] }, "A200": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrastA200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A200" }, "path": ["palette", "blue", "contrast", "A200"] } } };
12
+ const LightColorSchemeSuccessDefault = "#B4DEA4";
13
+ const LightColorSchemeSuccessPalette = { "40": { "value": "#F6FBF4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F6FBF4" }, "name": "PaletteGreen40", "attributes": { "category": "palette", "type": "green", "item": "40" }, "path": ["palette", "green", "40"] }, "60": { "value": "#EDF8E9", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EDF8E9" }, "name": "PaletteGreen60", "attributes": { "category": "palette", "type": "green", "item": "60" }, "path": ["palette", "green", "60"] }, "100": { "value": "#DCF1D4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#DCF1D4" }, "name": "PaletteGreen100", "attributes": { "category": "palette", "type": "green", "item": "100" }, "path": ["palette", "green", "100"] }, "200": { "value": "#B4DEA4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B4DEA4" }, "name": "PaletteGreen200", "attributes": { "category": "palette", "type": "green", "item": "200" }, "path": ["palette", "green", "200"] }, "300": { "value": "#8FCC79", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#8FCC79" }, "name": "PaletteGreen300", "attributes": { "category": "palette", "type": "green", "item": "300" }, "path": ["palette", "green", "300"] }, "400": { "value": "#6FBA53", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#6FBA53" }, "name": "PaletteGreen400", "attributes": { "category": "palette", "type": "green", "item": "400" }, "path": ["palette", "green", "400"] }, "500": { "value": "#52A832", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#52A832" }, "name": "PaletteGreen500", "attributes": { "category": "palette", "type": "green", "item": "500" }, "path": ["palette", "green", "500"] }, "560": { "value": "#449327", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#449327" }, "name": "PaletteGreen560", "attributes": { "category": "palette", "type": "green", "item": "560" }, "path": ["palette", "green", "560"] }, "600": { "value": "#3B8520", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#3B8520" }, "name": "PaletteGreen600", "attributes": { "category": "palette", "type": "green", "item": "600" }, "path": ["palette", "green", "600"] }, "700": { "value": "#276211", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#276211" }, "name": "PaletteGreen700", "attributes": { "category": "palette", "type": "green", "item": "700" }, "path": ["palette", "green", "700"] }, "800": { "value": "#163F07", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#163F07" }, "name": "PaletteGreen800", "attributes": { "category": "palette", "type": "green", "item": "800" }, "path": ["palette", "green", "800"] }, "A100": { "value": "rgba(68, 255, 0, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(68, 255, 0, 0.15)" }, "name": "PaletteGreenA100", "attributes": { "category": "palette", "type": "green", "item": "A100" }, "path": ["palette", "green", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast40", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "40" }, "path": ["palette", "green", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast60", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "60" }, "path": ["palette", "green", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast100", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "100" }, "path": ["palette", "green", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast200", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "200" }, "path": ["palette", "green", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast300", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "300" }, "path": ["palette", "green", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast400", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "400" }, "path": ["palette", "green", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast500", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "500" }, "path": ["palette", "green", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast560", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "560" }, "path": ["palette", "green", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast600", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "600" }, "path": ["palette", "green", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast700", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "700" }, "path": ["palette", "green", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast800", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "800" }, "path": ["palette", "green", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrastA100", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "A100" }, "path": ["palette", "green", "contrast", "A100"] } } };
14
+ const LightColorSchemeWarningDefault = "#F0D49B";
15
+ const LightColorSchemeWarningPalette = { "40": { "value": "#FDFAF3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FDFAF3" }, "name": "PaletteYellow40", "attributes": { "category": "palette", "type": "yellow", "item": "40" }, "path": ["palette", "yellow", "40"] }, "60": { "value": "#FCF5E8", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FCF5E8" }, "name": "PaletteYellow60", "attributes": { "category": "palette", "type": "yellow", "item": "60" }, "path": ["palette", "yellow", "60"] }, "100": { "value": "#F8EBD1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F8EBD1" }, "name": "PaletteYellow100", "attributes": { "category": "palette", "type": "yellow", "item": "100" }, "path": ["palette", "yellow", "100"] }, "200": { "value": "#F0D49B", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F0D49B" }, "name": "PaletteYellow200", "attributes": { "category": "palette", "type": "yellow", "item": "200" }, "path": ["palette", "yellow", "200"] }, "300": { "value": "#E7BD68", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E7BD68" }, "name": "PaletteYellow300", "attributes": { "category": "palette", "type": "yellow", "item": "300" }, "path": ["palette", "yellow", "300"] }, "400": { "value": "#DFA739", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#DFA739" }, "name": "PaletteYellow400", "attributes": { "category": "palette", "type": "yellow", "item": "400" }, "path": ["palette", "yellow", "400"] }, "500": { "value": "#D6930D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D6930D" }, "name": "PaletteYellow500", "attributes": { "category": "palette", "type": "yellow", "item": "500" }, "path": ["palette", "yellow", "500"] }, "560": { "value": "#BB800A", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#BB800A" }, "name": "PaletteYellow560", "attributes": { "category": "palette", "type": "yellow", "item": "560" }, "path": ["palette", "yellow", "560"] }, "600": { "value": "#AA7408", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AA7408" }, "name": "PaletteYellow600", "attributes": { "category": "palette", "type": "yellow", "item": "600" }, "path": ["palette", "yellow", "600"] }, "700": { "value": "#7D5504", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7D5504" }, "name": "PaletteYellow700", "attributes": { "category": "palette", "type": "yellow", "item": "700" }, "path": ["palette", "yellow", "700"] }, "800": { "value": "#503602", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#503602" }, "name": "PaletteYellow800", "attributes": { "category": "palette", "type": "yellow", "item": "800" }, "path": ["palette", "yellow", "800"] }, "A100": { "value": "rgba(255, 170, 0, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(255, 170, 0, 0.15)" }, "name": "PaletteYellowA100", "attributes": { "category": "palette", "type": "yellow", "item": "A100" }, "path": ["palette", "yellow", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast40", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "40" }, "path": ["palette", "yellow", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast60", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "60" }, "path": ["palette", "yellow", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast100", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "100" }, "path": ["palette", "yellow", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast200", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "200" }, "path": ["palette", "yellow", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast300", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "300" }, "path": ["palette", "yellow", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast400", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "400" }, "path": ["palette", "yellow", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast500", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "500" }, "path": ["palette", "yellow", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast560", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "560" }, "path": ["palette", "yellow", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast600", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "600" }, "path": ["palette", "yellow", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast700", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "700" }, "path": ["palette", "yellow", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast800", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "800" }, "path": ["palette", "yellow", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrastA100", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "A100" }, "path": ["palette", "yellow", "contrast", "A100"] } } };
16
+ const LightColorSchemeForegroundText = "#4D4D4D";
17
+ const LightColorSchemeForegroundTextLessContrast = "#999999";
18
+ const LightColorSchemeForegroundTextDisabled = "#B3B3B3";
19
+ const LightColorSchemeForegroundDivider = "#E6E6E6";
20
+ const LightColorSchemeForegroundBorder = "#B3B3B3";
21
+ const LightColorSchemeForegroundIcon = "#999999";
22
+ const LightColorSchemeBackgroundBackground = "white";
23
+ const LightColorSchemeBackgroundBackgroundDisabled = "#F0F0F0";
24
+ const LightColorSchemeBackgroundOverlayHover = "rgba(black, 0.05)";
25
+ const LightColorSchemeBackgroundOverlayActive = "rgba(black, 0.1)";
26
+ const LightColorSchemeBackgroundOverlayDisabled = "rgba(white, 0.3)";
27
+ const LightColorSchemeStatesFocusedColor = "#338FCC";
28
+ const LightColorSchemeStatesSelectedColor = "#D8EAF7";
29
+ const LightColorSchemeStatesPressedShadow = "inset 0 1px 2px 0 rgba(black, 0.2)";
30
+ const LightColorSchemeStatesDisabledOpacity = 0.3;
31
+ const DarkColorSchemePrimaryDefault = "#57A4D7";
32
+ const DarkColorSchemePrimaryPalette = { "40": { "value": "#F5FAFD", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5FAFD" }, "name": "PaletteBlue40", "attributes": { "category": "palette", "type": "blue", "item": "40" }, "path": ["palette", "blue", "40"] }, "60": { "value": "#EBF4FB", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EBF4FB" }, "name": "PaletteBlue60", "attributes": { "category": "palette", "type": "blue", "item": "60" }, "path": ["palette", "blue", "60"] }, "100": { "value": "#D8EAF7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D8EAF7" }, "name": "PaletteBlue100", "attributes": { "category": "palette", "type": "blue", "item": "100" }, "path": ["palette", "blue", "100"] }, "200": { "value": "#AAD1EC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AAD1EC" }, "name": "PaletteBlue200", "attributes": { "category": "palette", "type": "blue", "item": "200" }, "path": ["palette", "blue", "200"] }, "300": { "value": "#7FBAE1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7FBAE1" }, "name": "PaletteBlue300", "attributes": { "category": "palette", "type": "blue", "item": "300" }, "path": ["palette", "blue", "300"] }, "400": { "value": "#57A4D7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#57A4D7" }, "name": "PaletteBlue400", "attributes": { "category": "palette", "type": "blue", "item": "400" }, "path": ["palette", "blue", "400"] }, "500": { "value": "#338FCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#338FCC" }, "name": "PaletteBlue500", "attributes": { "category": "palette", "type": "blue", "item": "500" }, "path": ["palette", "blue", "500"] }, "560": { "value": "#277BB3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#277BB3" }, "name": "PaletteBlue560", "attributes": { "category": "palette", "type": "blue", "item": "560" }, "path": ["palette", "blue", "560"] }, "600": { "value": "#206EA2", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#206EA2" }, "name": "PaletteBlue600", "attributes": { "category": "palette", "type": "blue", "item": "600" }, "path": ["palette", "blue", "600"] }, "700": { "value": "#114E77", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#114E77" }, "name": "PaletteBlue700", "attributes": { "category": "palette", "type": "blue", "item": "700" }, "path": ["palette", "blue", "700"] }, "800": { "value": "#07314D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#07314D" }, "name": "PaletteBlue800", "attributes": { "category": "palette", "type": "blue", "item": "800" }, "path": ["palette", "blue", "800"] }, "A100": { "value": "rgba(0, 153, 255, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.15)" }, "name": "PaletteBlueA100", "attributes": { "category": "palette", "type": "blue", "item": "A100" }, "path": ["palette", "blue", "A100"] }, "A200": { "value": "rgba(0, 153, 255, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.3)" }, "name": "PaletteBlueA200", "attributes": { "category": "palette", "type": "blue", "item": "A200" }, "path": ["palette", "blue", "A200"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast40", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "40" }, "path": ["palette", "blue", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast60", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "60" }, "path": ["palette", "blue", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "100" }, "path": ["palette", "blue", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "200" }, "path": ["palette", "blue", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast300", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "300" }, "path": ["palette", "blue", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast400", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "400" }, "path": ["palette", "blue", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast500", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "500" }, "path": ["palette", "blue", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast560", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "560" }, "path": ["palette", "blue", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast600", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "600" }, "path": ["palette", "blue", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast700", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "700" }, "path": ["palette", "blue", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast800", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "800" }, "path": ["palette", "blue", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrastA100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A100" }, "path": ["palette", "blue", "contrast", "A100"] }, "A200": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrastA200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A200" }, "path": ["palette", "blue", "contrast", "A200"] } } };
33
+ const DarkColorSchemeSecondDefault = "#999999";
34
+ const DarkColorSchemeSecondPalette = { "40": { "value": "#F5F5F5", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5F5F5" }, "name": "PaletteGrey40", "attributes": { "category": "palette", "type": "grey", "item": "40" }, "path": ["palette", "grey", "40"] }, "60": { "value": "#F0F0F0", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F0F0F0" }, "name": "PaletteGrey60", "attributes": { "category": "palette", "type": "grey", "item": "60" }, "path": ["palette", "grey", "60"] }, "100": { "value": "#E6E6E6", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E6E6E6" }, "name": "PaletteGrey100", "attributes": { "category": "palette", "type": "grey", "item": "100" }, "path": ["palette", "grey", "100"] }, "200": { "value": "#CCCCCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#CCCCCC" }, "name": "PaletteGrey200", "attributes": { "category": "palette", "type": "grey", "item": "200" }, "path": ["palette", "grey", "200"] }, "300": { "value": "#B3B3B3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B3B3B3" }, "name": "PaletteGrey300", "attributes": { "category": "palette", "type": "grey", "item": "300" }, "path": ["palette", "grey", "300"] }, "400": { "value": "#999999", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#999999" }, "name": "PaletteGrey400", "attributes": { "category": "palette", "type": "grey", "item": "400" }, "path": ["palette", "grey", "400"] }, "500": { "value": "#808080", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#808080" }, "name": "PaletteGrey500", "attributes": { "category": "palette", "type": "grey", "item": "500" }, "path": ["palette", "grey", "500"] }, "560": { "value": "#707070", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#707070" }, "name": "PaletteGrey560", "attributes": { "category": "palette", "type": "grey", "item": "560" }, "path": ["palette", "grey", "560"] }, "600": { "value": "#666666", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#666666" }, "name": "PaletteGrey600", "attributes": { "category": "palette", "type": "grey", "item": "600" }, "path": ["palette", "grey", "600"] }, "700": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGrey700", "attributes": { "category": "palette", "type": "grey", "item": "700" }, "path": ["palette", "grey", "700"] }, "800": { "value": "#333333", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#333333" }, "name": "PaletteGrey800", "attributes": { "category": "palette", "type": "grey", "item": "800" }, "path": ["palette", "grey", "800"] }, "A40": { "value": "rgba(0, 0, 0, 0.04)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.04)" }, "name": "PaletteGreyA40", "attributes": { "category": "palette", "type": "grey", "item": "A40" }, "path": ["palette", "grey", "A40"] }, "A60": { "value": "rgba(0, 0, 0, 0.06)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.06)" }, "name": "PaletteGreyA60", "attributes": { "category": "palette", "type": "grey", "item": "A60" }, "path": ["palette", "grey", "A60"] }, "A100": { "value": "rgba(0, 0, 0, 0.1)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.1)" }, "name": "PaletteGreyA100", "attributes": { "category": "palette", "type": "grey", "item": "A100" }, "path": ["palette", "grey", "A100"] }, "A200": { "value": "rgba(0, 0, 0, 0.2)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.2)" }, "name": "PaletteGreyA200", "attributes": { "category": "palette", "type": "grey", "item": "A200" }, "path": ["palette", "grey", "A200"] }, "A300": { "value": "rgba(0, 0, 0, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.3)" }, "name": "PaletteGreyA300", "attributes": { "category": "palette", "type": "grey", "item": "A300" }, "path": ["palette", "grey", "A300"] }, "A500": { "value": "rgba(0, 0, 0, 0.5)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.5)" }, "name": "PaletteGreyA500", "attributes": { "category": "palette", "type": "grey", "item": "A500" }, "path": ["palette", "grey", "A500"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast40", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "40" }, "path": ["palette", "grey", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast60", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "60" }, "path": ["palette", "grey", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast100", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "100" }, "path": ["palette", "grey", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast200", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "200" }, "path": ["palette", "grey", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast300", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "300" }, "path": ["palette", "grey", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast400", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "400" }, "path": ["palette", "grey", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast500", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "500" }, "path": ["palette", "grey", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast560", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "560" }, "path": ["palette", "grey", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast600", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "600" }, "path": ["palette", "grey", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast700", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "700" }, "path": ["palette", "grey", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast800", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "800" }, "path": ["palette", "grey", "contrast", "800"] } } };
35
+ const DarkColorSchemeErrorDefault = "#E76E5C";
36
+ const DarkColorSchemeErrorPalette = { "40": { "value": "#FEF7F6", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FEF7F6" }, "name": "PaletteRed40", "attributes": { "category": "palette", "type": "red", "item": "40" }, "path": ["palette", "red", "40"] }, "60": { "value": "#FCEFEC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FCEFEC" }, "name": "PaletteRed60", "attributes": { "category": "palette", "type": "red", "item": "60" }, "path": ["palette", "red", "60"] }, "100": { "value": "#FADEDA", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FADEDA" }, "name": "PaletteRed100", "attributes": { "category": "palette", "type": "red", "item": "100" }, "path": ["palette", "red", "100"] }, "200": { "value": "#F4B7AE", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F4B7AE" }, "name": "PaletteRed200", "attributes": { "category": "palette", "type": "red", "item": "200" }, "path": ["palette", "red", "200"] }, "300": { "value": "#ED9284", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#ED9284" }, "name": "PaletteRed300", "attributes": { "category": "palette", "type": "red", "item": "300" }, "path": ["palette", "red", "300"] }, "400": { "value": "#E76E5C", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E76E5C" }, "name": "PaletteRed400", "attributes": { "category": "palette", "type": "red", "item": "400" }, "path": ["palette", "red", "400"] }, "500": { "value": "#E04D36", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E04D36" }, "name": "PaletteRed500", "attributes": { "category": "palette", "type": "red", "item": "500" }, "path": ["palette", "red", "500"] }, "560": { "value": "#C43E29", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#C43E29" }, "name": "PaletteRed560", "attributes": { "category": "palette", "type": "red", "item": "560" }, "path": ["palette", "red", "560"] }, "600": { "value": "#B23522", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B23522" }, "name": "PaletteRed600", "attributes": { "category": "palette", "type": "red", "item": "600" }, "path": ["palette", "red", "600"] }, "700": { "value": "#832112", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#832112" }, "name": "PaletteRed700", "attributes": { "category": "palette", "type": "red", "item": "700" }, "path": ["palette", "red", "700"] }, "800": { "value": "#541208", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#541208" }, "name": "PaletteRed800", "attributes": { "category": "palette", "type": "red", "item": "800" }, "path": ["palette", "red", "800"] }, "A100": { "value": "rgba(224, 79, 56, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(224, 79, 56, 0.15)" }, "name": "PaletteRedA100", "attributes": { "category": "palette", "type": "red", "item": "A100" }, "path": ["palette", "red", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast40", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "40" }, "path": ["palette", "red", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast60", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "60" }, "path": ["palette", "red", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast100", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "100" }, "path": ["palette", "red", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast200", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "200" }, "path": ["palette", "red", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast300", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "300" }, "path": ["palette", "red", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast400", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "400" }, "path": ["palette", "red", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast500", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "500" }, "path": ["palette", "red", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast560", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "560" }, "path": ["palette", "red", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast600", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "600" }, "path": ["palette", "red", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast700", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "700" }, "path": ["palette", "red", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast800", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "800" }, "path": ["palette", "red", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrastA100", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "A100" }, "path": ["palette", "red", "contrast", "A100"] } } };
37
+ const DarkColorSchemeInfoDefault = "#57A4D7";
38
+ const DarkColorSchemeInfoPalette = { "40": { "value": "#F5FAFD", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5FAFD" }, "name": "PaletteBlue40", "attributes": { "category": "palette", "type": "blue", "item": "40" }, "path": ["palette", "blue", "40"] }, "60": { "value": "#EBF4FB", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EBF4FB" }, "name": "PaletteBlue60", "attributes": { "category": "palette", "type": "blue", "item": "60" }, "path": ["palette", "blue", "60"] }, "100": { "value": "#D8EAF7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D8EAF7" }, "name": "PaletteBlue100", "attributes": { "category": "palette", "type": "blue", "item": "100" }, "path": ["palette", "blue", "100"] }, "200": { "value": "#AAD1EC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AAD1EC" }, "name": "PaletteBlue200", "attributes": { "category": "palette", "type": "blue", "item": "200" }, "path": ["palette", "blue", "200"] }, "300": { "value": "#7FBAE1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7FBAE1" }, "name": "PaletteBlue300", "attributes": { "category": "palette", "type": "blue", "item": "300" }, "path": ["palette", "blue", "300"] }, "400": { "value": "#57A4D7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#57A4D7" }, "name": "PaletteBlue400", "attributes": { "category": "palette", "type": "blue", "item": "400" }, "path": ["palette", "blue", "400"] }, "500": { "value": "#338FCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#338FCC" }, "name": "PaletteBlue500", "attributes": { "category": "palette", "type": "blue", "item": "500" }, "path": ["palette", "blue", "500"] }, "560": { "value": "#277BB3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#277BB3" }, "name": "PaletteBlue560", "attributes": { "category": "palette", "type": "blue", "item": "560" }, "path": ["palette", "blue", "560"] }, "600": { "value": "#206EA2", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#206EA2" }, "name": "PaletteBlue600", "attributes": { "category": "palette", "type": "blue", "item": "600" }, "path": ["palette", "blue", "600"] }, "700": { "value": "#114E77", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#114E77" }, "name": "PaletteBlue700", "attributes": { "category": "palette", "type": "blue", "item": "700" }, "path": ["palette", "blue", "700"] }, "800": { "value": "#07314D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#07314D" }, "name": "PaletteBlue800", "attributes": { "category": "palette", "type": "blue", "item": "800" }, "path": ["palette", "blue", "800"] }, "A100": { "value": "rgba(0, 153, 255, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.15)" }, "name": "PaletteBlueA100", "attributes": { "category": "palette", "type": "blue", "item": "A100" }, "path": ["palette", "blue", "A100"] }, "A200": { "value": "rgba(0, 153, 255, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.3)" }, "name": "PaletteBlueA200", "attributes": { "category": "palette", "type": "blue", "item": "A200" }, "path": ["palette", "blue", "A200"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast40", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "40" }, "path": ["palette", "blue", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast60", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "60" }, "path": ["palette", "blue", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "100" }, "path": ["palette", "blue", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "200" }, "path": ["palette", "blue", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast300", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "300" }, "path": ["palette", "blue", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast400", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "400" }, "path": ["palette", "blue", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast500", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "500" }, "path": ["palette", "blue", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast560", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "560" }, "path": ["palette", "blue", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast600", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "600" }, "path": ["palette", "blue", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast700", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "700" }, "path": ["palette", "blue", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast800", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "800" }, "path": ["palette", "blue", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrastA100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A100" }, "path": ["palette", "blue", "contrast", "A100"] }, "A200": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrastA200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A200" }, "path": ["palette", "blue", "contrast", "A200"] } } };
39
+ const DarkColorSchemeSuccessDefault = "#6FBA53";
40
+ const DarkColorSchemeSuccessPalette = { "40": { "value": "#F6FBF4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F6FBF4" }, "name": "PaletteGreen40", "attributes": { "category": "palette", "type": "green", "item": "40" }, "path": ["palette", "green", "40"] }, "60": { "value": "#EDF8E9", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EDF8E9" }, "name": "PaletteGreen60", "attributes": { "category": "palette", "type": "green", "item": "60" }, "path": ["palette", "green", "60"] }, "100": { "value": "#DCF1D4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#DCF1D4" }, "name": "PaletteGreen100", "attributes": { "category": "palette", "type": "green", "item": "100" }, "path": ["palette", "green", "100"] }, "200": { "value": "#B4DEA4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B4DEA4" }, "name": "PaletteGreen200", "attributes": { "category": "palette", "type": "green", "item": "200" }, "path": ["palette", "green", "200"] }, "300": { "value": "#8FCC79", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#8FCC79" }, "name": "PaletteGreen300", "attributes": { "category": "palette", "type": "green", "item": "300" }, "path": ["palette", "green", "300"] }, "400": { "value": "#6FBA53", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#6FBA53" }, "name": "PaletteGreen400", "attributes": { "category": "palette", "type": "green", "item": "400" }, "path": ["palette", "green", "400"] }, "500": { "value": "#52A832", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#52A832" }, "name": "PaletteGreen500", "attributes": { "category": "palette", "type": "green", "item": "500" }, "path": ["palette", "green", "500"] }, "560": { "value": "#449327", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#449327" }, "name": "PaletteGreen560", "attributes": { "category": "palette", "type": "green", "item": "560" }, "path": ["palette", "green", "560"] }, "600": { "value": "#3B8520", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#3B8520" }, "name": "PaletteGreen600", "attributes": { "category": "palette", "type": "green", "item": "600" }, "path": ["palette", "green", "600"] }, "700": { "value": "#276211", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#276211" }, "name": "PaletteGreen700", "attributes": { "category": "palette", "type": "green", "item": "700" }, "path": ["palette", "green", "700"] }, "800": { "value": "#163F07", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#163F07" }, "name": "PaletteGreen800", "attributes": { "category": "palette", "type": "green", "item": "800" }, "path": ["palette", "green", "800"] }, "A100": { "value": "rgba(68, 255, 0, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(68, 255, 0, 0.15)" }, "name": "PaletteGreenA100", "attributes": { "category": "palette", "type": "green", "item": "A100" }, "path": ["palette", "green", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast40", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "40" }, "path": ["palette", "green", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast60", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "60" }, "path": ["palette", "green", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast100", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "100" }, "path": ["palette", "green", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast200", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "200" }, "path": ["palette", "green", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast300", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "300" }, "path": ["palette", "green", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast400", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "400" }, "path": ["palette", "green", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast500", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "500" }, "path": ["palette", "green", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast560", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "560" }, "path": ["palette", "green", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast600", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "600" }, "path": ["palette", "green", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast700", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "700" }, "path": ["palette", "green", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast800", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "800" }, "path": ["palette", "green", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrastA100", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "A100" }, "path": ["palette", "green", "contrast", "A100"] } } };
41
+ const DarkColorSchemeWarningDefault = "#DFA739";
42
+ const DarkColorSchemeWarningPalette = { "40": { "value": "#FDFAF3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FDFAF3" }, "name": "PaletteYellow40", "attributes": { "category": "palette", "type": "yellow", "item": "40" }, "path": ["palette", "yellow", "40"] }, "60": { "value": "#FCF5E8", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FCF5E8" }, "name": "PaletteYellow60", "attributes": { "category": "palette", "type": "yellow", "item": "60" }, "path": ["palette", "yellow", "60"] }, "100": { "value": "#F8EBD1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F8EBD1" }, "name": "PaletteYellow100", "attributes": { "category": "palette", "type": "yellow", "item": "100" }, "path": ["palette", "yellow", "100"] }, "200": { "value": "#F0D49B", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F0D49B" }, "name": "PaletteYellow200", "attributes": { "category": "palette", "type": "yellow", "item": "200" }, "path": ["palette", "yellow", "200"] }, "300": { "value": "#E7BD68", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E7BD68" }, "name": "PaletteYellow300", "attributes": { "category": "palette", "type": "yellow", "item": "300" }, "path": ["palette", "yellow", "300"] }, "400": { "value": "#DFA739", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#DFA739" }, "name": "PaletteYellow400", "attributes": { "category": "palette", "type": "yellow", "item": "400" }, "path": ["palette", "yellow", "400"] }, "500": { "value": "#D6930D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D6930D" }, "name": "PaletteYellow500", "attributes": { "category": "palette", "type": "yellow", "item": "500" }, "path": ["palette", "yellow", "500"] }, "560": { "value": "#BB800A", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#BB800A" }, "name": "PaletteYellow560", "attributes": { "category": "palette", "type": "yellow", "item": "560" }, "path": ["palette", "yellow", "560"] }, "600": { "value": "#AA7408", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AA7408" }, "name": "PaletteYellow600", "attributes": { "category": "palette", "type": "yellow", "item": "600" }, "path": ["palette", "yellow", "600"] }, "700": { "value": "#7D5504", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7D5504" }, "name": "PaletteYellow700", "attributes": { "category": "palette", "type": "yellow", "item": "700" }, "path": ["palette", "yellow", "700"] }, "800": { "value": "#503602", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#503602" }, "name": "PaletteYellow800", "attributes": { "category": "palette", "type": "yellow", "item": "800" }, "path": ["palette", "yellow", "800"] }, "A100": { "value": "rgba(255, 170, 0, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(255, 170, 0, 0.15)" }, "name": "PaletteYellowA100", "attributes": { "category": "palette", "type": "yellow", "item": "A100" }, "path": ["palette", "yellow", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast40", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "40" }, "path": ["palette", "yellow", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast60", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "60" }, "path": ["palette", "yellow", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast100", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "100" }, "path": ["palette", "yellow", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast200", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "200" }, "path": ["palette", "yellow", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast300", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "300" }, "path": ["palette", "yellow", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast400", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "400" }, "path": ["palette", "yellow", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast500", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "500" }, "path": ["palette", "yellow", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast560", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "560" }, "path": ["palette", "yellow", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast600", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "600" }, "path": ["palette", "yellow", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast700", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "700" }, "path": ["palette", "yellow", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast800", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "800" }, "path": ["palette", "yellow", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrastA100", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "A100" }, "path": ["palette", "yellow", "contrast", "A100"] } } };
43
+ const DarkColorSchemeForegroundText = "#F0F0F0";
44
+ const DarkColorSchemeForegroundTextLessContrast = "#999999";
45
+ const DarkColorSchemeForegroundTextDisabled = "#999999";
46
+ const DarkColorSchemeForegroundDivider = "#666666";
47
+ const DarkColorSchemeForegroundBorder = "#808080";
48
+ const DarkColorSchemeForegroundIcon = "#999999";
49
+ const DarkColorSchemeBackgroundBackground = "#333333";
50
+ const DarkColorSchemeBackgroundBackgroundDisabled = "#666666";
51
+ const DarkColorSchemeBackgroundOverlayHover = "rgba(black, 0.05)";
52
+ const DarkColorSchemeBackgroundOverlayActive = "rgba(black, 0.1)";
53
+ const DarkColorSchemeBackgroundOverlayDisabled = "rgba(white, 0.2)";
54
+ const DarkColorSchemeStatesFocusedColor = "#57A4D7";
55
+ const DarkColorSchemeStatesSelectedColor = "#114E77";
56
+ const DarkColorSchemeStatesPressedShadow = "inset 1px 2px 2px 0 rgba(black, 0.2)";
57
+ const DarkColorSchemeStatesDisabledOpacity = 0.3;
58
+ const FontFamilyBase = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
59
+ const FontFamilyMonospace = "'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace";
60
+ const PaletteBlue40 = "#F5FAFD";
61
+ const PaletteBlue60 = "#EBF4FB";
62
+ const PaletteBlue100 = "#D8EAF7";
63
+ const PaletteBlue200 = "#AAD1EC";
64
+ const PaletteBlue300 = "#7FBAE1";
65
+ const PaletteBlue400 = "#57A4D7";
66
+ const PaletteBlue500 = "#338FCC";
67
+ const PaletteBlue560 = "#277BB3";
68
+ const PaletteBlue600 = "#206EA2";
69
+ const PaletteBlue700 = "#114E77";
70
+ const PaletteBlue800 = "#07314D";
71
+ const PaletteBlueA100 = "rgba(0, 153, 255, 0.15)";
72
+ const PaletteBlueA200 = "rgba(0, 153, 255, 0.3)";
73
+ const PaletteBlueContrast40 = "#4D4D4D";
74
+ const PaletteBlueContrast60 = "#4D4D4D";
75
+ const PaletteBlueContrast100 = "#4D4D4D";
76
+ const PaletteBlueContrast200 = "#4D4D4D";
77
+ const PaletteBlueContrast300 = "#4D4D4D";
78
+ const PaletteBlueContrast400 = "white";
79
+ const PaletteBlueContrast500 = "white";
80
+ const PaletteBlueContrast560 = "white";
81
+ const PaletteBlueContrast600 = "white";
82
+ const PaletteBlueContrast700 = "white";
83
+ const PaletteBlueContrast800 = "white";
84
+ const PaletteBlueContrastA100 = "#4D4D4D";
85
+ const PaletteBlueContrastA200 = "white";
86
+ const PaletteGreen40 = "#F6FBF4";
87
+ const PaletteGreen60 = "#EDF8E9";
88
+ const PaletteGreen100 = "#DCF1D4";
89
+ const PaletteGreen200 = "#B4DEA4";
90
+ const PaletteGreen300 = "#8FCC79";
91
+ const PaletteGreen400 = "#6FBA53";
92
+ const PaletteGreen500 = "#52A832";
93
+ const PaletteGreen560 = "#449327";
94
+ const PaletteGreen600 = "#3B8520";
95
+ const PaletteGreen700 = "#276211";
96
+ const PaletteGreen800 = "#163F07";
97
+ const PaletteGreenA100 = "rgba(68, 255, 0, 0.15)";
98
+ const PaletteGreenContrast40 = "#4D4D4D";
99
+ const PaletteGreenContrast60 = "#4D4D4D";
100
+ const PaletteGreenContrast100 = "#4D4D4D";
101
+ const PaletteGreenContrast200 = "#4D4D4D";
102
+ const PaletteGreenContrast300 = "#4D4D4D";
103
+ const PaletteGreenContrast400 = "white";
104
+ const PaletteGreenContrast500 = "white";
105
+ const PaletteGreenContrast560 = "white";
106
+ const PaletteGreenContrast600 = "white";
107
+ const PaletteGreenContrast700 = "white";
108
+ const PaletteGreenContrast800 = "white";
109
+ const PaletteGreenContrastA100 = "#4D4D4D";
110
+ const PaletteRed40 = "#FEF7F6";
111
+ const PaletteRed60 = "#FCEFEC";
112
+ const PaletteRed100 = "#FADEDA";
113
+ const PaletteRed200 = "#F4B7AE";
114
+ const PaletteRed300 = "#ED9284";
115
+ const PaletteRed400 = "#E76E5C";
116
+ const PaletteRed500 = "#E04D36";
117
+ const PaletteRed560 = "#C43E29";
118
+ const PaletteRed600 = "#B23522";
119
+ const PaletteRed700 = "#832112";
120
+ const PaletteRed800 = "#541208";
121
+ const PaletteRedA100 = "rgba(224, 79, 56, 0.15)";
122
+ const PaletteRedContrast40 = "#4D4D4D";
123
+ const PaletteRedContrast60 = "#4D4D4D";
124
+ const PaletteRedContrast100 = "#4D4D4D";
125
+ const PaletteRedContrast200 = "#4D4D4D";
126
+ const PaletteRedContrast300 = "#4D4D4D";
127
+ const PaletteRedContrast400 = "white";
128
+ const PaletteRedContrast500 = "white";
129
+ const PaletteRedContrast560 = "white";
130
+ const PaletteRedContrast600 = "white";
131
+ const PaletteRedContrast700 = "white";
132
+ const PaletteRedContrast800 = "white";
133
+ const PaletteRedContrastA100 = "#4D4D4D";
134
+ const PaletteGrey40 = "#F5F5F5";
135
+ const PaletteGrey60 = "#F0F0F0";
136
+ const PaletteGrey100 = "#E6E6E6";
137
+ const PaletteGrey200 = "#CCCCCC";
138
+ const PaletteGrey300 = "#B3B3B3";
139
+ const PaletteGrey400 = "#999999";
140
+ const PaletteGrey500 = "#808080";
141
+ const PaletteGrey560 = "#707070";
142
+ const PaletteGrey600 = "#666666";
143
+ const PaletteGrey700 = "#4D4D4D";
144
+ const PaletteGrey800 = "#333333";
145
+ const PaletteGreyA40 = "rgba(0, 0, 0, 0.04)";
146
+ const PaletteGreyA60 = "rgba(0, 0, 0, 0.06)";
147
+ const PaletteGreyA100 = "rgba(0, 0, 0, 0.1)";
148
+ const PaletteGreyA200 = "rgba(0, 0, 0, 0.2)";
149
+ const PaletteGreyA300 = "rgba(0, 0, 0, 0.3)";
150
+ const PaletteGreyA500 = "rgba(0, 0, 0, 0.5)";
151
+ const PaletteGreyContrast40 = "#4D4D4D";
152
+ const PaletteGreyContrast60 = "#4D4D4D";
153
+ const PaletteGreyContrast100 = "#4D4D4D";
154
+ const PaletteGreyContrast200 = "#4D4D4D";
155
+ const PaletteGreyContrast300 = "#4D4D4D";
156
+ const PaletteGreyContrast400 = "white";
157
+ const PaletteGreyContrast500 = "white";
158
+ const PaletteGreyContrast560 = "white";
159
+ const PaletteGreyContrast600 = "white";
160
+ const PaletteGreyContrast700 = "white";
161
+ const PaletteGreyContrast800 = "white";
162
+ const PaletteYellow40 = "#FDFAF3";
163
+ const PaletteYellow60 = "#FCF5E8";
164
+ const PaletteYellow100 = "#F8EBD1";
165
+ const PaletteYellow200 = "#F0D49B";
166
+ const PaletteYellow300 = "#E7BD68";
167
+ const PaletteYellow400 = "#DFA739";
168
+ const PaletteYellow500 = "#D6930D";
169
+ const PaletteYellow560 = "#BB800A";
170
+ const PaletteYellow600 = "#AA7408";
171
+ const PaletteYellow700 = "#7D5504";
172
+ const PaletteYellow800 = "#503602";
173
+ const PaletteYellowA100 = "rgba(255, 170, 0, 0.15)";
174
+ const PaletteYellowContrast40 = "#4D4D4D";
175
+ const PaletteYellowContrast60 = "#4D4D4D";
176
+ const PaletteYellowContrast100 = "#4D4D4D";
177
+ const PaletteYellowContrast200 = "#4D4D4D";
178
+ const PaletteYellowContrast300 = "#4D4D4D";
179
+ const PaletteYellowContrast400 = "white";
180
+ const PaletteYellowContrast500 = "white";
181
+ const PaletteYellowContrast560 = "white";
182
+ const PaletteYellowContrast600 = "white";
183
+ const PaletteYellowContrast700 = "white";
184
+ const PaletteYellowContrast800 = "white";
185
+ const PaletteYellowContrastA100 = "#4D4D4D";
186
+ const ColorBluePalette = { "40": { "value": "#F5FAFD", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5FAFD" }, "name": "PaletteBlue40", "attributes": { "category": "palette", "type": "blue", "item": "40" }, "path": ["palette", "blue", "40"] }, "60": { "value": "#EBF4FB", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EBF4FB" }, "name": "PaletteBlue60", "attributes": { "category": "palette", "type": "blue", "item": "60" }, "path": ["palette", "blue", "60"] }, "100": { "value": "#D8EAF7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D8EAF7" }, "name": "PaletteBlue100", "attributes": { "category": "palette", "type": "blue", "item": "100" }, "path": ["palette", "blue", "100"] }, "200": { "value": "#AAD1EC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AAD1EC" }, "name": "PaletteBlue200", "attributes": { "category": "palette", "type": "blue", "item": "200" }, "path": ["palette", "blue", "200"] }, "300": { "value": "#7FBAE1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7FBAE1" }, "name": "PaletteBlue300", "attributes": { "category": "palette", "type": "blue", "item": "300" }, "path": ["palette", "blue", "300"] }, "400": { "value": "#57A4D7", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#57A4D7" }, "name": "PaletteBlue400", "attributes": { "category": "palette", "type": "blue", "item": "400" }, "path": ["palette", "blue", "400"] }, "500": { "value": "#338FCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#338FCC" }, "name": "PaletteBlue500", "attributes": { "category": "palette", "type": "blue", "item": "500" }, "path": ["palette", "blue", "500"] }, "560": { "value": "#277BB3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#277BB3" }, "name": "PaletteBlue560", "attributes": { "category": "palette", "type": "blue", "item": "560" }, "path": ["palette", "blue", "560"] }, "600": { "value": "#206EA2", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#206EA2" }, "name": "PaletteBlue600", "attributes": { "category": "palette", "type": "blue", "item": "600" }, "path": ["palette", "blue", "600"] }, "700": { "value": "#114E77", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#114E77" }, "name": "PaletteBlue700", "attributes": { "category": "palette", "type": "blue", "item": "700" }, "path": ["palette", "blue", "700"] }, "800": { "value": "#07314D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#07314D" }, "name": "PaletteBlue800", "attributes": { "category": "palette", "type": "blue", "item": "800" }, "path": ["palette", "blue", "800"] }, "A100": { "value": "rgba(0, 153, 255, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.15)" }, "name": "PaletteBlueA100", "attributes": { "category": "palette", "type": "blue", "item": "A100" }, "path": ["palette", "blue", "A100"] }, "A200": { "value": "rgba(0, 153, 255, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 153, 255, 0.3)" }, "name": "PaletteBlueA200", "attributes": { "category": "palette", "type": "blue", "item": "A200" }, "path": ["palette", "blue", "A200"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast40", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "40" }, "path": ["palette", "blue", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast60", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "60" }, "path": ["palette", "blue", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "100" }, "path": ["palette", "blue", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "200" }, "path": ["palette", "blue", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrast300", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "300" }, "path": ["palette", "blue", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast400", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "400" }, "path": ["palette", "blue", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast500", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "500" }, "path": ["palette", "blue", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast560", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "560" }, "path": ["palette", "blue", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast600", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "600" }, "path": ["palette", "blue", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast700", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "700" }, "path": ["palette", "blue", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrast800", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "800" }, "path": ["palette", "blue", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteBlueContrastA100", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A100" }, "path": ["palette", "blue", "contrast", "A100"] }, "A200": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteBlueContrastA200", "attributes": { "category": "palette", "type": "blue", "item": "contrast", "subitem": "A200" }, "path": ["palette", "blue", "contrast", "A200"] } } };
187
+ const ColorGreenPalette = { "40": { "value": "#F6FBF4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F6FBF4" }, "name": "PaletteGreen40", "attributes": { "category": "palette", "type": "green", "item": "40" }, "path": ["palette", "green", "40"] }, "60": { "value": "#EDF8E9", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#EDF8E9" }, "name": "PaletteGreen60", "attributes": { "category": "palette", "type": "green", "item": "60" }, "path": ["palette", "green", "60"] }, "100": { "value": "#DCF1D4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#DCF1D4" }, "name": "PaletteGreen100", "attributes": { "category": "palette", "type": "green", "item": "100" }, "path": ["palette", "green", "100"] }, "200": { "value": "#B4DEA4", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B4DEA4" }, "name": "PaletteGreen200", "attributes": { "category": "palette", "type": "green", "item": "200" }, "path": ["palette", "green", "200"] }, "300": { "value": "#8FCC79", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#8FCC79" }, "name": "PaletteGreen300", "attributes": { "category": "palette", "type": "green", "item": "300" }, "path": ["palette", "green", "300"] }, "400": { "value": "#6FBA53", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#6FBA53" }, "name": "PaletteGreen400", "attributes": { "category": "palette", "type": "green", "item": "400" }, "path": ["palette", "green", "400"] }, "500": { "value": "#52A832", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#52A832" }, "name": "PaletteGreen500", "attributes": { "category": "palette", "type": "green", "item": "500" }, "path": ["palette", "green", "500"] }, "560": { "value": "#449327", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#449327" }, "name": "PaletteGreen560", "attributes": { "category": "palette", "type": "green", "item": "560" }, "path": ["palette", "green", "560"] }, "600": { "value": "#3B8520", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#3B8520" }, "name": "PaletteGreen600", "attributes": { "category": "palette", "type": "green", "item": "600" }, "path": ["palette", "green", "600"] }, "700": { "value": "#276211", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#276211" }, "name": "PaletteGreen700", "attributes": { "category": "palette", "type": "green", "item": "700" }, "path": ["palette", "green", "700"] }, "800": { "value": "#163F07", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#163F07" }, "name": "PaletteGreen800", "attributes": { "category": "palette", "type": "green", "item": "800" }, "path": ["palette", "green", "800"] }, "A100": { "value": "rgba(68, 255, 0, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(68, 255, 0, 0.15)" }, "name": "PaletteGreenA100", "attributes": { "category": "palette", "type": "green", "item": "A100" }, "path": ["palette", "green", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast40", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "40" }, "path": ["palette", "green", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast60", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "60" }, "path": ["palette", "green", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast100", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "100" }, "path": ["palette", "green", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast200", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "200" }, "path": ["palette", "green", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrast300", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "300" }, "path": ["palette", "green", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast400", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "400" }, "path": ["palette", "green", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast500", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "500" }, "path": ["palette", "green", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast560", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "560" }, "path": ["palette", "green", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast600", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "600" }, "path": ["palette", "green", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast700", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "700" }, "path": ["palette", "green", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreenContrast800", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "800" }, "path": ["palette", "green", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreenContrastA100", "attributes": { "category": "palette", "type": "green", "item": "contrast", "subitem": "A100" }, "path": ["palette", "green", "contrast", "A100"] } } };
188
+ const ColorRedPalette = { "40": { "value": "#FEF7F6", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FEF7F6" }, "name": "PaletteRed40", "attributes": { "category": "palette", "type": "red", "item": "40" }, "path": ["palette", "red", "40"] }, "60": { "value": "#FCEFEC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FCEFEC" }, "name": "PaletteRed60", "attributes": { "category": "palette", "type": "red", "item": "60" }, "path": ["palette", "red", "60"] }, "100": { "value": "#FADEDA", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FADEDA" }, "name": "PaletteRed100", "attributes": { "category": "palette", "type": "red", "item": "100" }, "path": ["palette", "red", "100"] }, "200": { "value": "#F4B7AE", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F4B7AE" }, "name": "PaletteRed200", "attributes": { "category": "palette", "type": "red", "item": "200" }, "path": ["palette", "red", "200"] }, "300": { "value": "#ED9284", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#ED9284" }, "name": "PaletteRed300", "attributes": { "category": "palette", "type": "red", "item": "300" }, "path": ["palette", "red", "300"] }, "400": { "value": "#E76E5C", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E76E5C" }, "name": "PaletteRed400", "attributes": { "category": "palette", "type": "red", "item": "400" }, "path": ["palette", "red", "400"] }, "500": { "value": "#E04D36", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E04D36" }, "name": "PaletteRed500", "attributes": { "category": "palette", "type": "red", "item": "500" }, "path": ["palette", "red", "500"] }, "560": { "value": "#C43E29", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#C43E29" }, "name": "PaletteRed560", "attributes": { "category": "palette", "type": "red", "item": "560" }, "path": ["palette", "red", "560"] }, "600": { "value": "#B23522", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B23522" }, "name": "PaletteRed600", "attributes": { "category": "palette", "type": "red", "item": "600" }, "path": ["palette", "red", "600"] }, "700": { "value": "#832112", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#832112" }, "name": "PaletteRed700", "attributes": { "category": "palette", "type": "red", "item": "700" }, "path": ["palette", "red", "700"] }, "800": { "value": "#541208", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#541208" }, "name": "PaletteRed800", "attributes": { "category": "palette", "type": "red", "item": "800" }, "path": ["palette", "red", "800"] }, "A100": { "value": "rgba(224, 79, 56, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(224, 79, 56, 0.15)" }, "name": "PaletteRedA100", "attributes": { "category": "palette", "type": "red", "item": "A100" }, "path": ["palette", "red", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast40", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "40" }, "path": ["palette", "red", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast60", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "60" }, "path": ["palette", "red", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast100", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "100" }, "path": ["palette", "red", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast200", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "200" }, "path": ["palette", "red", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrast300", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "300" }, "path": ["palette", "red", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast400", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "400" }, "path": ["palette", "red", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast500", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "500" }, "path": ["palette", "red", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast560", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "560" }, "path": ["palette", "red", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast600", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "600" }, "path": ["palette", "red", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast700", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "700" }, "path": ["palette", "red", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteRedContrast800", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "800" }, "path": ["palette", "red", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteRedContrastA100", "attributes": { "category": "palette", "type": "red", "item": "contrast", "subitem": "A100" }, "path": ["palette", "red", "contrast", "A100"] } } };
189
+ const ColorGreyPalette = { "40": { "value": "#F5F5F5", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F5F5F5" }, "name": "PaletteGrey40", "attributes": { "category": "palette", "type": "grey", "item": "40" }, "path": ["palette", "grey", "40"] }, "60": { "value": "#F0F0F0", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F0F0F0" }, "name": "PaletteGrey60", "attributes": { "category": "palette", "type": "grey", "item": "60" }, "path": ["palette", "grey", "60"] }, "100": { "value": "#E6E6E6", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E6E6E6" }, "name": "PaletteGrey100", "attributes": { "category": "palette", "type": "grey", "item": "100" }, "path": ["palette", "grey", "100"] }, "200": { "value": "#CCCCCC", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#CCCCCC" }, "name": "PaletteGrey200", "attributes": { "category": "palette", "type": "grey", "item": "200" }, "path": ["palette", "grey", "200"] }, "300": { "value": "#B3B3B3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#B3B3B3" }, "name": "PaletteGrey300", "attributes": { "category": "palette", "type": "grey", "item": "300" }, "path": ["palette", "grey", "300"] }, "400": { "value": "#999999", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#999999" }, "name": "PaletteGrey400", "attributes": { "category": "palette", "type": "grey", "item": "400" }, "path": ["palette", "grey", "400"] }, "500": { "value": "#808080", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#808080" }, "name": "PaletteGrey500", "attributes": { "category": "palette", "type": "grey", "item": "500" }, "path": ["palette", "grey", "500"] }, "560": { "value": "#707070", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#707070" }, "name": "PaletteGrey560", "attributes": { "category": "palette", "type": "grey", "item": "560" }, "path": ["palette", "grey", "560"] }, "600": { "value": "#666666", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#666666" }, "name": "PaletteGrey600", "attributes": { "category": "palette", "type": "grey", "item": "600" }, "path": ["palette", "grey", "600"] }, "700": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGrey700", "attributes": { "category": "palette", "type": "grey", "item": "700" }, "path": ["palette", "grey", "700"] }, "800": { "value": "#333333", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#333333" }, "name": "PaletteGrey800", "attributes": { "category": "palette", "type": "grey", "item": "800" }, "path": ["palette", "grey", "800"] }, "A40": { "value": "rgba(0, 0, 0, 0.04)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.04)" }, "name": "PaletteGreyA40", "attributes": { "category": "palette", "type": "grey", "item": "A40" }, "path": ["palette", "grey", "A40"] }, "A60": { "value": "rgba(0, 0, 0, 0.06)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.06)" }, "name": "PaletteGreyA60", "attributes": { "category": "palette", "type": "grey", "item": "A60" }, "path": ["palette", "grey", "A60"] }, "A100": { "value": "rgba(0, 0, 0, 0.1)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.1)" }, "name": "PaletteGreyA100", "attributes": { "category": "palette", "type": "grey", "item": "A100" }, "path": ["palette", "grey", "A100"] }, "A200": { "value": "rgba(0, 0, 0, 0.2)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.2)" }, "name": "PaletteGreyA200", "attributes": { "category": "palette", "type": "grey", "item": "A200" }, "path": ["palette", "grey", "A200"] }, "A300": { "value": "rgba(0, 0, 0, 0.3)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.3)" }, "name": "PaletteGreyA300", "attributes": { "category": "palette", "type": "grey", "item": "A300" }, "path": ["palette", "grey", "A300"] }, "A500": { "value": "rgba(0, 0, 0, 0.5)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(0, 0, 0, 0.5)" }, "name": "PaletteGreyA500", "attributes": { "category": "palette", "type": "grey", "item": "A500" }, "path": ["palette", "grey", "A500"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast40", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "40" }, "path": ["palette", "grey", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast60", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "60" }, "path": ["palette", "grey", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast100", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "100" }, "path": ["palette", "grey", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast200", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "200" }, "path": ["palette", "grey", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteGreyContrast300", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "300" }, "path": ["palette", "grey", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast400", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "400" }, "path": ["palette", "grey", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast500", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "500" }, "path": ["palette", "grey", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast560", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "560" }, "path": ["palette", "grey", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast600", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "600" }, "path": ["palette", "grey", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast700", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "700" }, "path": ["palette", "grey", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteGreyContrast800", "attributes": { "category": "palette", "type": "grey", "item": "contrast", "subitem": "800" }, "path": ["palette", "grey", "contrast", "800"] } } };
190
+ const ColorYellowPalette = { "40": { "value": "#FDFAF3", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FDFAF3" }, "name": "PaletteYellow40", "attributes": { "category": "palette", "type": "yellow", "item": "40" }, "path": ["palette", "yellow", "40"] }, "60": { "value": "#FCF5E8", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#FCF5E8" }, "name": "PaletteYellow60", "attributes": { "category": "palette", "type": "yellow", "item": "60" }, "path": ["palette", "yellow", "60"] }, "100": { "value": "#F8EBD1", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F8EBD1" }, "name": "PaletteYellow100", "attributes": { "category": "palette", "type": "yellow", "item": "100" }, "path": ["palette", "yellow", "100"] }, "200": { "value": "#F0D49B", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#F0D49B" }, "name": "PaletteYellow200", "attributes": { "category": "palette", "type": "yellow", "item": "200" }, "path": ["palette", "yellow", "200"] }, "300": { "value": "#E7BD68", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#E7BD68" }, "name": "PaletteYellow300", "attributes": { "category": "palette", "type": "yellow", "item": "300" }, "path": ["palette", "yellow", "300"] }, "400": { "value": "#DFA739", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#DFA739" }, "name": "PaletteYellow400", "attributes": { "category": "palette", "type": "yellow", "item": "400" }, "path": ["palette", "yellow", "400"] }, "500": { "value": "#D6930D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#D6930D" }, "name": "PaletteYellow500", "attributes": { "category": "palette", "type": "yellow", "item": "500" }, "path": ["palette", "yellow", "500"] }, "560": { "value": "#BB800A", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#BB800A" }, "name": "PaletteYellow560", "attributes": { "category": "palette", "type": "yellow", "item": "560" }, "path": ["palette", "yellow", "560"] }, "600": { "value": "#AA7408", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#AA7408" }, "name": "PaletteYellow600", "attributes": { "category": "palette", "type": "yellow", "item": "600" }, "path": ["palette", "yellow", "600"] }, "700": { "value": "#7D5504", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#7D5504" }, "name": "PaletteYellow700", "attributes": { "category": "palette", "type": "yellow", "item": "700" }, "path": ["palette", "yellow", "700"] }, "800": { "value": "#503602", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#503602" }, "name": "PaletteYellow800", "attributes": { "category": "palette", "type": "yellow", "item": "800" }, "path": ["palette", "yellow", "800"] }, "A100": { "value": "rgba(255, 170, 0, 0.15)", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "rgba(255, 170, 0, 0.15)" }, "name": "PaletteYellowA100", "attributes": { "category": "palette", "type": "yellow", "item": "A100" }, "path": ["palette", "yellow", "A100"] }, "contrast": { "40": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast40", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "40" }, "path": ["palette", "yellow", "contrast", "40"] }, "60": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast60", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "60" }, "path": ["palette", "yellow", "contrast", "60"] }, "100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast100", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "100" }, "path": ["palette", "yellow", "contrast", "100"] }, "200": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast200", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "200" }, "path": ["palette", "yellow", "contrast", "200"] }, "300": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrast300", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "300" }, "path": ["palette", "yellow", "contrast", "300"] }, "400": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast400", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "400" }, "path": ["palette", "yellow", "contrast", "400"] }, "500": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast500", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "500" }, "path": ["palette", "yellow", "contrast", "500"] }, "560": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast560", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "560" }, "path": ["palette", "yellow", "contrast", "560"] }, "600": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast600", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "600" }, "path": ["palette", "yellow", "contrast", "600"] }, "700": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast700", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "700" }, "path": ["palette", "yellow", "contrast", "700"] }, "800": { "value": "white", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "white" }, "name": "PaletteYellowContrast800", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "800" }, "path": ["palette", "yellow", "contrast", "800"] }, "A100": { "value": "#4D4D4D", "filePath": "packages/mosaic/design-tokens/tokens/properties/palette.json5", "isSource": true, "original": { "value": "#4D4D4D" }, "name": "PaletteYellowContrastA100", "attributes": { "category": "palette", "type": "yellow", "item": "contrast", "subitem": "A100" }, "path": ["palette", "yellow", "contrast", "A100"] } } };
191
+ const TypographyDisplay1FontSize = "56px";
192
+ const TypographyDisplay1LineHeight = "76px";
193
+ const TypographyDisplay1LetterSpacing = "-0.4px";
194
+ const TypographyDisplay1FontWeight = "normal";
195
+ const TypographyDisplay1FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
196
+ const TypographyDisplay1TextTransform = "null";
197
+ const TypographyDisplay2FontSize = "45px";
198
+ const TypographyDisplay2LineHeight = "56px";
199
+ const TypographyDisplay2LetterSpacing = "normal";
200
+ const TypographyDisplay2FontWeight = "normal";
201
+ const TypographyDisplay2FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
202
+ const TypographyDisplay2TextTransform = "null";
203
+ const TypographyDisplay3FontSize = "34px";
204
+ const TypographyDisplay3LineHeight = "44px";
205
+ const TypographyDisplay3LetterSpacing = "0.25px";
206
+ const TypographyDisplay3FontWeight = "normal";
207
+ const TypographyDisplay3FontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
208
+ const TypographyDisplay3TextTransform = "null";
209
+ const TypographyHeadlineFontSize = "24px";
210
+ const TypographyHeadlineLineHeight = "32px";
211
+ const TypographyHeadlineLetterSpacing = "normal";
212
+ const TypographyHeadlineFontWeight = "normal";
213
+ const TypographyHeadlineFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
214
+ const TypographyHeadlineTextTransform = "null";
215
+ const TypographyTitleFontSize = "20px";
216
+ const TypographyTitleLineHeight = "28px";
217
+ const TypographyTitleLetterSpacing = "0.15px";
218
+ const TypographyTitleFontWeight = "500";
219
+ const TypographyTitleFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
220
+ const TypographyTitleTextTransform = "null";
221
+ const TypographySubheadingFontSize = "15px";
222
+ const TypographySubheadingLineHeight = "20px";
223
+ const TypographySubheadingLetterSpacing = "0.15px";
224
+ const TypographySubheadingFontWeight = "700";
225
+ const TypographySubheadingFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
226
+ const TypographySubheadingTextTransform = "null";
227
+ const TypographyBodyFontSize = "15px";
228
+ const TypographyBodyLineHeight = "20px";
229
+ const TypographyBodyLetterSpacing = "0.15px";
230
+ const TypographyBodyFontWeight = "normal";
231
+ const TypographyBodyFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
232
+ const TypographyBodyTextTransform = "null";
233
+ const TypographyBodyStrongFontSize = "15px";
234
+ const TypographyBodyStrongLineHeight = "20px";
235
+ const TypographyBodyStrongLetterSpacing = "0.15px";
236
+ const TypographyBodyStrongFontWeight = "500";
237
+ const TypographyBodyStrongFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
238
+ const TypographyBodyStrongTextTransform = "null";
239
+ const TypographyBodyCapsFontSize = "15px";
240
+ const TypographyBodyCapsLineHeight = "20px";
241
+ const TypographyBodyCapsLetterSpacing = "1.7px";
242
+ const TypographyBodyCapsFontWeight = "normal";
243
+ const TypographyBodyCapsFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
244
+ const TypographyBodyCapsTextTransform = "uppercase";
245
+ const TypographyBodyMonoFontSize = "15px";
246
+ const TypographyBodyMonoLineHeight = "20px";
247
+ const TypographyBodyMonoLetterSpacing = "normal";
248
+ const TypographyBodyMonoFontWeight = "normal";
249
+ const TypographyBodyMonoFontFamily = "'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace";
250
+ const TypographyBodyMonoTextTransform = "null";
251
+ const TypographyCaptionFontSize = "13px";
252
+ const TypographyCaptionLineHeight = "16px";
253
+ const TypographyCaptionLetterSpacing = "0.25px";
254
+ const TypographyCaptionFontWeight = "normal";
255
+ const TypographyCaptionFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
256
+ const TypographyCaptionTextTransform = "null";
257
+ const TypographyCaptionCapsFontSize = "13px";
258
+ const TypographyCaptionCapsLineHeight = "16px";
259
+ const TypographyCaptionCapsLetterSpacing = "1.5px";
260
+ const TypographyCaptionCapsFontWeight = "normal";
261
+ const TypographyCaptionCapsFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
262
+ const TypographyCaptionCapsTextTransform = "uppercase";
263
+ const TypographyCaptionMonoFontSize = "13px";
264
+ const TypographyCaptionMonoLineHeight = "16px";
265
+ const TypographyCaptionMonoLetterSpacing = "normal";
266
+ const TypographyCaptionMonoFontWeight = "normal";
267
+ const TypographyCaptionMonoFontFamily = "'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace";
268
+ const TypographyCaptionMonoTextTransform = "null";
269
+ const TypographySmallTextFontSize = "13px";
270
+ const TypographySmallTextLineHeight = "16px";
271
+ const TypographySmallTextLetterSpacing = "0.25px";
272
+ const TypographySmallTextFontWeight = "normal";
273
+ const TypographySmallTextFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
274
+ const TypographySmallTextTextTransform = "null";
275
+ const TypographyExtraSmallTextFontSize = "11px";
276
+ const TypographyExtraSmallTextLineHeight = "16px";
277
+ const TypographyExtraSmallTextLetterSpacing = "0.22px";
278
+ const TypographyExtraSmallTextFontWeight = "normal";
279
+ const TypographyExtraSmallTextFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
280
+ const TypographyExtraSmallTextTextTransform = "null";
281
+ const TypographyExtraSmallTextCapsFontSize = "11px";
282
+ const TypographyExtraSmallTextCapsLineHeight = "16px";
283
+ const TypographyExtraSmallTextCapsLetterSpacing = "1px";
284
+ const TypographyExtraSmallTextCapsFontWeight = "normal";
285
+ const TypographyExtraSmallTextCapsFontFamily = "Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif";
286
+ const TypographyExtraSmallTextCapsTextTransform = "uppercase";
287
+ const TypographyExtraSmallTextMonoFontSize = "11px";
288
+ const TypographyExtraSmallTextMonoLineHeight = "16px";
289
+ const TypographyExtraSmallTextMonoLetterSpacing = "0px";
290
+ const TypographyExtraSmallTextMonoFontWeight = "normal";
291
+ const TypographyExtraSmallTextMonoFontFamily = "'Roboto Mono', 'Consolas', 'Menlo', 'Monaco', monospace";
292
+ const TypographyExtraSmallTextMonoTextTransform = "null";
293
+ const AlertLightColorSchemeErrorBackground = "#FCEFEC";
294
+ const AlertLightColorSchemeErrorBorder = "#E76E5C";
295
+ const AlertLightColorSchemeErrorIcon = "#E76E5C";
296
+ const AlertLightColorSchemeWarningBackground = "#FCF5E8";
297
+ const AlertLightColorSchemeWarningBorder = "#F0D49B";
298
+ const AlertLightColorSchemeWarningIcon = "#DFA739";
299
+ const AlertLightColorSchemeSuccessBackground = "#EDF8E9";
300
+ const AlertLightColorSchemeSuccessBorder = "#B4DEA4";
301
+ const AlertLightColorSchemeSuccessIcon = "#6FBA53";
302
+ const AlertLightColorSchemeInfoBackground = "#EBF4FB";
303
+ const AlertLightColorSchemeInfoBorder = "#AAD1EC";
304
+ const AlertLightColorSchemeInfoIcon = "#57A4D7";
305
+ const AlertLightColorSchemeDefaultBackground = "#F0F0F0";
306
+ const AlertLightColorSchemeDefaultBorder = "#B3B3B3";
307
+ const AlertLightColorSchemeDefaultIcon = "#CCCCCC";
308
+ const AlertDarkColorSchemeErrorBackground = "#832112";
309
+ const AlertDarkColorSchemeErrorBorder = "#832112";
310
+ const AlertDarkColorSchemeErrorIcon = "#E76E5C";
311
+ const AlertDarkColorSchemeWarningBackground = "#7D5504";
312
+ const AlertDarkColorSchemeWarningBorder = "#7D5504";
313
+ const AlertDarkColorSchemeWarningIcon = "#DFA739";
314
+ const AlertDarkColorSchemeSuccessBackground = "#276211";
315
+ const AlertDarkColorSchemeSuccessBorder = "#276211";
316
+ const AlertDarkColorSchemeSuccessIcon = "#6FBA53";
317
+ const AlertDarkColorSchemeInfoBackground = "#114E77";
318
+ const AlertDarkColorSchemeInfoBorder = "#114E77";
319
+ const AlertDarkColorSchemeInfoIcon = "#57A4D7";
320
+ const AlertDarkColorSchemeDefaultBackground = "#4D4D4D";
321
+ const AlertDarkColorSchemeDefaultBorder = "#4D4D4D";
322
+ const AlertDarkColorSchemeDefaultIcon = "#999999";
323
+ const AlertSizeBorderWidth = "1px";
324
+ const AlertSizeBorderRadius = "4px";
325
+ const AlertSizeHorizontalPadding = "16px";
326
+ const AlertSizeVerticalPadding = "13px";
327
+ const AlertSizeIconMargin = "8px";
328
+ const AlertSizeCloseButtonWidth = "16px";
329
+ const AlertSizeSmallVerticalPadding = "11px";
330
+ const AlertFontDefaultHeader = "subheading";
331
+ const AlertFontDefaultBody = "body";
332
+ const AlertFontSmallHeader = "caption";
333
+ const AlertFontSmallBody = "caption";
334
+ const AutocompleteSizePanelPadding = "4px 0";
335
+ const AutocompleteSizePanelMaxHeight = "256px";
336
+ const AutocompleteSizePanelBorderRadius = "3px";
337
+ const BadgeSizeDefaultMinWidth = "10px";
338
+ const BadgeSizeDefaultPadding = "0 8px";
339
+ const BadgeSizeDefaultBorderWidth = "1px";
340
+ const BadgeSizeDefaultBorderRadius = "4px";
341
+ const BadgeSizeDefaultHeight = "24px";
342
+ const BadgeSizeDefaultFontDefault = "caption";
343
+ const BadgeSizeDefaultFontCaps = "caption-caps";
344
+ const BadgeSizeDefaultFontMono = "caption-mono";
345
+ const BadgeSizeMiniHeight = "16px";
346
+ const BadgeSizeMiniMinWidth = "10px";
347
+ const BadgeSizeMiniBorderWidth = "1px";
348
+ const BadgeSizeMiniBorderRadius = "2px";
349
+ const BadgeSizeMiniPadding = "0 4px";
350
+ const BadgeSizeMiniFontDefault = "extra-small-text";
351
+ const BadgeSizeMiniFontCaps = "extra-small-text-caps";
352
+ const BadgeSizeMiniFontMono = "extra-small-text-mono";
353
+ const BadgeFontDefaultDefault = "caption";
354
+ const BadgeFontDefaultCaps = "caption-caps";
355
+ const BadgeFontDefaultMono = "caption-mono";
356
+ const BadgeFontMiniDefault = "extra-small-text";
357
+ const BadgeFontMiniCaps = "extra-small-text-caps";
358
+ const BadgeFontMiniMono = "extra-small-text-mono";
359
+ const BadgeLightColorSchemeSolidPrimaryBackground = "#338FCC";
360
+ const BadgeLightColorSchemeSolidPrimaryColor = "white";
361
+ const BadgeLightColorSchemeSolidPrimaryBorder = "#338FCC";
362
+ const BadgeLightColorSchemeSolidInfoBorder = "#338FCC";
363
+ const BadgeLightColorSchemeSolidInfoBackground = "#338FCC";
364
+ const BadgeLightColorSchemeSolidInfoColor = "white";
365
+ const BadgeLightColorSchemeSolidSuccessBorder = "#52A832";
366
+ const BadgeLightColorSchemeSolidSuccessBackground = "#52A832";
367
+ const BadgeLightColorSchemeSolidSuccessColor = "white";
368
+ const BadgeLightColorSchemeSolidWarningBorder = "#D6930D";
369
+ const BadgeLightColorSchemeSolidWarningBackground = "#D6930D";
370
+ const BadgeLightColorSchemeSolidWarningColor = "white";
371
+ const BadgeLightColorSchemeSolidErrorBorder = "#E04D36";
372
+ const BadgeLightColorSchemeSolidErrorBackground = "#E04D36";
373
+ const BadgeLightColorSchemeSolidErrorColor = "white";
374
+ const BadgeLightColorSchemeSolidTransparentBorder = "#CCCCCC";
375
+ const BadgeLightColorSchemeSolidTransparentColor = "#4D4D4D";
376
+ const BadgeLightColorSchemeSolidTransparentBackground = "transparent";
377
+ const BadgeLightColorSchemeSolidLightBorder = "#E6E6E6";
378
+ const BadgeLightColorSchemeSolidLightBackground = "#E6E6E6";
379
+ const BadgeLightColorSchemeSolidLightColor = "#4D4D4D";
380
+ const BadgeLightColorSchemeSolidSecondBorder = "#666666";
381
+ const BadgeLightColorSchemeSolidSecondBackground = "#666666";
382
+ const BadgeLightColorSchemeSolidSecondColor = "white";
383
+ const BadgeLightColorSchemePastelPrimaryBackground = "#F5FAFD";
384
+ const BadgeLightColorSchemePastelPrimaryBorder = "#AAD1EC";
385
+ const BadgeLightColorSchemePastelPrimaryColor = "#338FCC";
386
+ const BadgeLightColorSchemePastelInfoBackground = "#F5FAFD";
387
+ const BadgeLightColorSchemePastelInfoBorder = "#AAD1EC";
388
+ const BadgeLightColorSchemePastelInfoColor = "#338FCC";
389
+ const BadgeLightColorSchemePastelSuccessBackground = "#F6FBF4";
390
+ const BadgeLightColorSchemePastelSuccessBorder = "#B4DEA4";
391
+ const BadgeLightColorSchemePastelSuccessColor = "#449327";
392
+ const BadgeLightColorSchemePastelWarningBackground = "#FDFAF3";
393
+ const BadgeLightColorSchemePastelWarningBorder = "#F0D49B";
394
+ const BadgeLightColorSchemePastelWarningColor = "#BB800A";
395
+ const BadgeLightColorSchemePastelErrorBackground = "#FEF7F6";
396
+ const BadgeLightColorSchemePastelErrorBorder = "#F4B7AE";
397
+ const BadgeLightColorSchemePastelErrorColor = "#E04D36";
398
+ const BadgeDarkColorSchemePastelPrimaryBackground = "rgba(0, 153, 255, 0.15)";
399
+ const BadgeDarkColorSchemePastelPrimaryColor = "#D8EAF7";
400
+ const BadgeDarkColorSchemePastelPrimaryBorder = "#114E77";
401
+ const BadgeDarkColorSchemePastelInfoBackground = "#D8EAF7";
402
+ const BadgeDarkColorSchemePastelInfoColor = "#D8EAF7";
403
+ const BadgeDarkColorSchemePastelInfoBorder = "rgba(0, 153, 255, 0.15)";
404
+ const BadgeDarkColorSchemePastelSuccessBorder = "#276211";
405
+ const BadgeDarkColorSchemePastelSuccessBackground = "rgba(68, 255, 0, 0.15)";
406
+ const BadgeDarkColorSchemePastelSuccessColor = "#DCF1D4";
407
+ const BadgeDarkColorSchemePastelWarningBorder = "#7D5504";
408
+ const BadgeDarkColorSchemePastelWarningBackground = "rgba(255, 170, 0, 0.15)";
409
+ const BadgeDarkColorSchemePastelWarningColor = "#F8EBD1";
410
+ const BadgeDarkColorSchemePastelErrorBorder = "#832112";
411
+ const BadgeDarkColorSchemePastelErrorBackground = "rgba(224, 79, 56, 0.15)";
412
+ const BadgeDarkColorSchemePastelErrorColor = "#FADEDA";
413
+ const BadgeDarkColorSchemeSolidPrimaryBackground = "#114E77";
414
+ const BadgeDarkColorSchemeSolidPrimaryColor = "white";
415
+ const BadgeDarkColorSchemeSolidPrimaryBorder = "#114E77";
416
+ const BadgeDarkColorSchemeSolidInfoBorder = "#07314D";
417
+ const BadgeDarkColorSchemeSolidInfoBackground = "#07314D";
418
+ const BadgeDarkColorSchemeSolidInfoColor = "white";
419
+ const BadgeDarkColorSchemeSolidSuccessBorder = "#276211";
420
+ const BadgeDarkColorSchemeSolidSuccessBackground = "#276211";
421
+ const BadgeDarkColorSchemeSolidSuccessColor = "white";
422
+ const BadgeDarkColorSchemeSolidWarningBorder = "#7D5504";
423
+ const BadgeDarkColorSchemeSolidWarningBackground = "#7D5504";
424
+ const BadgeDarkColorSchemeSolidWarningColor = "white";
425
+ const BadgeDarkColorSchemeSolidErrorBorder = "#832112";
426
+ const BadgeDarkColorSchemeSolidErrorBackground = "#832112";
427
+ const BadgeDarkColorSchemeSolidErrorColor = "white";
428
+ const BadgeDarkColorSchemeSolidTransparentBorder = "#808080";
429
+ const BadgeDarkColorSchemeSolidTransparentColor = "#F5F5F5";
430
+ const BadgeDarkColorSchemeSolidTransparentBackground = "transparent";
431
+ const BadgeDarkColorSchemeSolidLightBorder = "#999999";
432
+ const BadgeDarkColorSchemeSolidLightBackground = "#999999";
433
+ const BadgeDarkColorSchemeSolidLightColor = "white";
434
+ const BadgeDarkColorSchemeSolidSecondBorder = "#4D4D4D";
435
+ const BadgeDarkColorSchemeSolidSecondBackground = "#4D4D4D";
436
+ const BadgeDarkColorSchemeSolidSecondColor = "white";
437
+ const ButtonToggleSizeBorderSize = "1px";
438
+ const ButtonToggleSizeBorderRadius = "3px";
439
+ const ButtonLightColorSchemeActiveShadow = "inset 0 1px 2px 0 rgba(black, 0.2)";
440
+ const ButtonLightColorSchemePrimaryColor = "white";
441
+ const ButtonLightColorSchemePrimaryBorder = "#277BB3";
442
+ const ButtonLightColorSchemePrimaryBackground = "#338FCC";
443
+ const ButtonLightColorSchemePrimaryIcon = "white";
444
+ const ButtonLightColorSchemePrimaryStatesActiveBorder = "darken(#277BB3, 5)";
445
+ const ButtonLightColorSchemePrimaryStatesActiveBackground = "darken(#338FCC, 5)";
446
+ const ButtonLightColorSchemePrimaryTransparentColor = "#338FCC";
447
+ const ButtonLightColorSchemePrimaryTransparentIcon = "#338FCC";
448
+ const ButtonLightColorSchemePrimaryTransparentStatesHoverColor = "#206EA2";
449
+ const ButtonLightColorSchemePrimaryTransparentStatesHoverIcon = "#206EA2";
450
+ const ButtonLightColorSchemePrimaryTransparentStatesActiveColor = "#114E77";
451
+ const ButtonLightColorSchemePrimaryTransparentStatesActiveIcon = "#114E77";
452
+ const ButtonLightColorSchemeSecondBorder = "#B3B3B3";
453
+ const ButtonLightColorSchemeSecondBackground = "#F0F0F0";
454
+ const ButtonLightColorSchemeSecondColor = "#4D4D4D";
455
+ const ButtonLightColorSchemeSecondIcon = "#999999";
456
+ const ButtonLightColorSchemeSecondStatesActiveBorder = "darken(#B3B3B3, 5)";
457
+ const ButtonLightColorSchemeSecondStatesActiveBackground = "darken(#F0F0F0, 5)";
458
+ const ButtonLightColorSchemeErrorBorder = "#B3B3B3";
459
+ const ButtonLightColorSchemeErrorBackground = "#F0F0F0";
460
+ const ButtonLightColorSchemeErrorColor = "#E76E5C";
461
+ const ButtonLightColorSchemeErrorIcon = "#E76E5C";
462
+ const ButtonLightColorSchemeErrorStatesActiveBorder = "darken(#B3B3B3, 5)";
463
+ const ButtonLightColorSchemeErrorStatesActiveBackground = "darken(#F0F0F0, 5)";
464
+ const ButtonDarkColorSchemeActiveShadow = "inset 1px 2px 2px 0 rgba(black, 0.2)";
465
+ const ButtonDarkColorSchemePrimaryColor = "white";
466
+ const ButtonDarkColorSchemePrimaryBorder = "#277BB3";
467
+ const ButtonDarkColorSchemePrimaryBackground = "#338FCC";
468
+ const ButtonDarkColorSchemePrimaryIcon = "white";
469
+ const ButtonDarkColorSchemePrimaryStatesActiveBorder = "darken(#277BB3, 5)";
470
+ const ButtonDarkColorSchemePrimaryStatesActiveBackground = "darken(#57A4D7, 5)";
471
+ const ButtonDarkColorSchemePrimaryTransparentColor = "#338FCC";
472
+ const ButtonDarkColorSchemePrimaryTransparentIcon = "#338FCC";
473
+ const ButtonDarkColorSchemePrimaryTransparentStatesHoverColor = "#206EA2";
474
+ const ButtonDarkColorSchemePrimaryTransparentStatesHoverIcon = "#206EA2";
475
+ const ButtonDarkColorSchemePrimaryTransparentStatesActiveColor = "#114E77";
476
+ const ButtonDarkColorSchemePrimaryTransparentStatesActiveIcon = "#114E77";
477
+ const ButtonDarkColorSchemeSecondBorder = "#808080";
478
+ const ButtonDarkColorSchemeSecondBackground = "#666666";
479
+ const ButtonDarkColorSchemeSecondColor = "#F0F0F0";
480
+ const ButtonDarkColorSchemeSecondIcon = "#999999";
481
+ const ButtonDarkColorSchemeSecondStatesActiveBorder = "darken(#808080, 5)";
482
+ const ButtonDarkColorSchemeSecondStatesActiveBackground = "darken(#666666, 5)";
483
+ const ButtonDarkColorSchemeErrorBorder = "#808080";
484
+ const ButtonDarkColorSchemeErrorBackground = "#666666";
485
+ const ButtonDarkColorSchemeErrorColor = "#E76E5C";
486
+ const ButtonDarkColorSchemeErrorIcon = "#E76E5C";
487
+ const ButtonDarkColorSchemeErrorStatesActiveBorder = "darken(#808080, 5)";
488
+ const ButtonDarkColorSchemeErrorStatesActiveBackground = "darken(#666666, 5)";
489
+ const ButtonSizeBorderWidth = "1px";
490
+ const ButtonSizeBorderRadius = "3px";
491
+ const ButtonSizeVerticalPadding = "6px";
492
+ const ButtonSizeHorizontalPadding = "16px";
493
+ const ButtonFontDefault = "body";
494
+ const ButtonFontPrimary = "body-strong";
495
+ const ButtonFontPrimaryTransparent = "body";
496
+ const IconButtonSizeVerticalPadding = "6px";
497
+ const IconButtonSizeHorizontalPadding = "8px";
498
+ const IconButtonSizeIconHorizontalPadding = "16px";
499
+ const CardLightColorSchemeErrorVerticalLine = "#E76E5C";
500
+ const CardLightColorSchemeErrorBackground = "#FCEFEC";
501
+ const CardLightColorSchemeErrorShadow = "#E6E6E6";
502
+ const CardLightColorSchemeWarningVerticalLine = "#F0D49B";
503
+ const CardLightColorSchemeWarningBackground = "#FCF5E8";
504
+ const CardLightColorSchemeWarningShadow = "#E6E6E6";
505
+ const CardLightColorSchemeSuccessVerticalLine = "#B4DEA4";
506
+ const CardLightColorSchemeSuccessBackground = "#EDF8E9";
507
+ const CardLightColorSchemeSuccessShadow = "#E6E6E6";
508
+ const CardLightColorSchemeInfoVerticalLine = "#AAD1EC";
509
+ const CardLightColorSchemeInfoBackground = "#EBF4FB";
510
+ const CardLightColorSchemeInfoShadow = "#E6E6E6";
511
+ const CardDarkColorSchemeErrorVerticalLine = "#E76E5C";
512
+ const CardDarkColorSchemeErrorBackground = "#832112";
513
+ const CardDarkColorSchemeErrorShadow = "#4D4D4D";
514
+ const CardDarkColorSchemeWarningVerticalLine = "#DFA739";
515
+ const CardDarkColorSchemeWarningBackground = "#7D5504";
516
+ const CardDarkColorSchemeWarningShadow = "#4D4D4D";
517
+ const CardDarkColorSchemeSuccessVerticalLine = "#6FBA53";
518
+ const CardDarkColorSchemeSuccessBackground = "#276211";
519
+ const CardDarkColorSchemeSuccessShadow = "#4D4D4D";
520
+ const CardDarkColorSchemeInfoVerticalLine = "#57A4D7";
521
+ const CardDarkColorSchemeInfoBackground = "#114E77";
522
+ const CardDarkColorSchemeInfoShadow = "#4D4D4D";
523
+ const CardSizeVerticalLine = "4px";
524
+ const CheckboxLightColorSchemeBorder = "#B3B3B3";
525
+ const CheckboxLightColorSchemeStatesCheckedBorder = "#206EA2";
526
+ const CheckboxLightColorSchemeStatesCheckedBackground = "#338FCC";
527
+ const CheckboxLightColorSchemeStatesFocusedBorder = "#206EA2";
528
+ const CheckboxLightColorSchemeStatesFocusedShadow = "inset 0 0 0 1px white, 0 0 0 1px #206EA2";
529
+ const CheckboxDarkColorSchemeBorder = "#999999";
530
+ const CheckboxDarkColorSchemeStatesCheckedBorder = "#57A4D7";
531
+ const CheckboxDarkColorSchemeStatesCheckedBackground = "#206EA2";
532
+ const CheckboxDarkColorSchemeStatesFocusedBorder = "#57A4D7";
533
+ const CheckboxDarkColorSchemeStatesFocusedShadow = "inset 0 0 0 1px #333333, 0 0 0 1px #57A4D7";
534
+ const CheckboxSizeWidth = "16px";
535
+ const CheckboxSizeLabelMargin = "8px";
536
+ const CheckboxSizeBorderWidth = "1px";
537
+ const CheckboxSizeToggleBoxShadow = "inset 0 0 1px 0 rgba(0, 0, 0, 0.2)";
538
+ const CheckboxFontDefault = "body";
539
+ const DatepickerToggleSizeWidth = "30px";
540
+ const DatepickerToggleSizeHeight = "30px";
541
+ const DatepickerBodyLightColorSchemeStatesSelectedColor = "#338FCC";
542
+ const DatepickerBodyLightColorSchemeStatesSelectedBackground = "#D8EAF7";
543
+ const DatepickerBodyDarkColorSchemeStatesSelectedColor = "#338FCC";
544
+ const DatepickerBodyDarkColorSchemeStatesSelectedBackground = "#114E77";
545
+ const DatepickerBodySizeLabelPaddings = "8px 28px 12px 12px";
546
+ const DatepickerBodySizeCellMinSize = "32px";
547
+ const DatepickerBodySizeCellMargin = "5%";
548
+ const DatepickerBodySizeCellPadding = "8px";
549
+ const DatepickerBodySizeCellBorderWidth = "1px";
550
+ const DatepickerBodyFontLabel = "body-strong";
551
+ const DatepickerBodyFontToday = "body-strong";
552
+ const DatepickerCalendarSizePaddingTop = "16px";
553
+ const DatepickerCalendarSizePaddingHorizontal = "8px";
554
+ const DatepickerCalendarSizePaddingBottom = "8px";
555
+ const DatepickerCalendarSizePaddingBlocks = "12px";
556
+ const DatepickerCalendarSizeDividerWidth = "1px";
557
+ const DatepickerCalendarSizeIconBorderWidth = "2px";
558
+ const DatepickerCalendarSizeIconPrevIconTransform = "translateX(2px) rotate(-45deg)";
559
+ const DatepickerCalendarSizeIconNexIconTransform = "translateX(-2px) rotate(45deg)";
560
+ const DatepickerCalendarFontDefault = "body";
561
+ const DatepickerCalendarFontHeader = "caption";
562
+ const DatepickerInputSizeWidth = "130px";
563
+ const DividerSizeWidth = "1px";
564
+ const DividerSizeInsetMargin = "80px";
565
+ const DropdownItemSizePadding = "5px 15px";
566
+ const DropdownItemSizeIconPadding = "0 8px 2px 0";
567
+ const DropdownItemFontDefault = "body";
568
+ const DropdownItemFontCaption = "caption";
569
+ const DropdownGroupHeaderSizeDefaultPadding = "6px 15px";
570
+ const DropdownGroupHeaderSizeSmallPadding = "8px 15px";
571
+ const DropdownGroupHeaderFontDefault = "body-strong";
572
+ const DropdownGroupHeaderFontSmall = "caption-caps";
573
+ const DropdownDividerSizeHeight = "1px";
574
+ const DropdownDividerSizeMargin = "4px 0";
575
+ const DropdownTriggerSizeIconPaddingRight = "8px";
576
+ const DropdownPanelSizeMaxWidth = "640px";
577
+ const DropdownPanelSizePadding = "4px 0";
578
+ const DropdownPanelSizeBorderWidth = "1px";
579
+ const DropdownPanelSizeBorderRadius = "3px";
580
+ const FormFieldLightColorSchemeBorder = "#B3B3B3";
581
+ const FormFieldLightColorSchemeBackground = "white";
582
+ const FormFieldLightColorSchemeStatesHoverBorder = "#999999";
583
+ const FormFieldLightColorSchemeStatesInvalidBorder = "#E76E5C";
584
+ const FormFieldLightColorSchemeStatesInvalidBackground = "transparent";
585
+ const FormFieldDarkColorSchemeBorder = "#999999";
586
+ const FormFieldDarkColorSchemeBackground = "#333333";
587
+ const FormFieldDarkColorSchemeStatesHoverBorder = "#CCCCCC";
588
+ const FormFieldDarkColorSchemeStatesInvalidBorder = "#E76E5C";
589
+ const FormFieldDarkColorSchemeStatesInvalidBackground = "transparent";
590
+ const FormFieldSizeBorderWidth = "1px";
591
+ const FormFieldSizeBorderRadius = "3px";
592
+ const FormFieldSizeButtonWidth = "32px";
593
+ const FormFieldFontDefault = "body";
594
+ const FormFieldHintSizeMarginTop = "4px";
595
+ const FormFieldHintFontDefault = "caption";
596
+ const FormsLightColorSchemeLabel = "#999999";
597
+ const FormsLightColorSchemeLegend = "#4D4D4D";
598
+ const FormsDarkColorSchemeLabel = "#999999";
599
+ const FormsDarkColorSchemeLegend = "#F0F0F0";
600
+ const FormsSizeHorizontalRowMarginBottom = "20px";
601
+ const FormsSizeHorizontalLabelPaddingTop = "6px";
602
+ const FormsSizeHorizontalLabelPaddingBottom = "0";
603
+ const FormsSizeHorizontalControlPaddingLeft = "16px";
604
+ const FormsSizeHorizontalLegendMarginTop = "32px";
605
+ const FormsSizeHorizontalLegendMarginBottom = "16px";
606
+ const FormsSizeVerticalRowMarginBottom = "16px";
607
+ const FormsSizeVerticalLabelPaddingTop = "0";
608
+ const FormsSizeVerticalLabelPaddingBottom = "4px";
609
+ const FormsSizeVerticalControlPaddingLeft = "24px";
610
+ const FormsSizeVerticalLegendMarginTop = "32px";
611
+ const FormsSizeVerticalLegendMarginBottom = "12px";
612
+ const FormsFontDefaultLabel = "body";
613
+ const FormsFontDefaultLegend = "subheading";
614
+ const InputSizePadding = "5px 16px";
615
+ const InputSizeWidth = "100%";
616
+ const InputSizeMinHeight = "30px";
617
+ const InputFontDefault = "body";
618
+ const InputFontMonospace = "body-mono";
619
+ const LinkLightColorSchemeText = "#338FCC";
620
+ const LinkLightColorSchemeBorderBottom = "rgba(#338FCC, 0.32)";
621
+ const LinkLightColorSchemeStateVisitedText = "#6A2795";
622
+ const LinkLightColorSchemeStateVisitedBorderBottom = "rgba(106, 39, 149, 0.32)";
623
+ const LinkLightColorSchemeStateHoverText = "#206EA2";
624
+ const LinkLightColorSchemeStateHoverBorderBottom = "rgba(#206EA2, 0.32)";
625
+ const LinkLightColorSchemeStateActive = "#114E77";
626
+ const LinkLightColorSchemeStateFocusedOutline = "#338FCC";
627
+ const LinkDarkColorSchemeText = "#57A4D7";
628
+ const LinkDarkColorSchemeBorderBottom = "rgba(#57A4D7, 0.32)";
629
+ const LinkDarkColorSchemeStateVisitedText = "#a23ee2";
630
+ const LinkDarkColorSchemeStateVisitedBorderBottom = "rgba(162, 62, 226, 0.32)";
631
+ const LinkDarkColorSchemeStateHoverText = "#7FBAE1";
632
+ const LinkDarkColorSchemeStateHoverBorderBottom = "rgba(#7FBAE1, 0.32)";
633
+ const LinkDarkColorSchemeStateActive = "#7FBAE1";
634
+ const LinkDarkColorSchemeStateFocusedOutline = "#57A4D7";
635
+ const LinkSizeIconMargin = "4px";
636
+ const LinkSizeStateFocusedOutlineOffset = "2px";
637
+ const LinkSizeStateFocusedOutlineWidth = "2px";
638
+ const LinkAnimationTransition = "color ease-out 300ms";
639
+ const LinkAnimationStateHoverTransition = "color 0ms";
640
+ const LinkFontDefault = "body";
641
+ const ListSizeHorizontalPadding = "16px";
642
+ const ListSizeIconPadding = "4px";
643
+ const ListSizeItemHeight = "32px";
644
+ const ListSizeIconWidth = "24px";
645
+ const ListFontItem = "body";
646
+ const ModalLightColorSchemeShadow = "(0 0 0 1px #B3B3B3, 0 6px 12px 0 rgba(0, 0, 0, 0.5))";
647
+ const ModalLightColorSchemeBodyTopShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.16)";
648
+ const ModalLightColorSchemeBodyBottomShadow = "0 -2px 4px 0 rgba(0, 0, 0, 0.16)";
649
+ const ModalLightColorSchemeBackgroundMask = "rgba(0, 0, 0, 0.5)";
650
+ const ModalDarkColorSchemeShadow = "(0 0 0 1px #333333, 0 6px 12px 0 rgba(0, 0, 0, 0.5))";
651
+ const ModalDarkColorSchemeBodyTopShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.16)";
652
+ const ModalDarkColorSchemeBodyBottomShadow = "0 -2px 4px 0 rgba(0, 0, 0, 0.16)";
653
+ const ModalDarkColorSchemeBackgroundMask = "rgba(0, 0, 0, 0.5)";
654
+ const ModalSizeSmall = "400px";
655
+ const ModalSizeNormal = "640px";
656
+ const ModalSizeLarge = "960px";
657
+ const ModalSizeTop = "48px";
658
+ const ModalSizeCloseWidth = "56px";
659
+ const ModalSizeBorderRadius = "4px";
660
+ const ModalSizeBorderWidth = "1px";
661
+ const ModalHeaderSizeBorderRadius = "4px 4px 0 0";
662
+ const ModalHeaderSizePadding = "14px 16px";
663
+ const ModalHeaderFontDefault = "title";
664
+ const ModalBodySizeMaxHeight = "calc(100vh - 260px)";
665
+ const ModalBodySizePadding = "16px 24px 24px";
666
+ const ModalBodyFontDefault = "body";
667
+ const ModalFooterSizeBorderRadius = "0 0 4px 4px";
668
+ const ModalFooterSizePadding = "16px 16px";
669
+ const ModalConfirmSizePadding = "24px";
670
+ const NavbarLightColorSchemeBackground = "#114E77";
671
+ const NavbarLightColorSchemeDividerBackground = "rgba(255, 255, 255, 0.3)";
672
+ const NavbarDarkColorSchemeBackground = "#114E77";
673
+ const NavbarDarkColorSchemeDividerBackground = "rgba(255, 255, 255, 0.3)";
674
+ const NavbarSizeIconMargin = "6px";
675
+ const NavbarFontTitle = "body";
676
+ const VerticalNavbarSizeStatesExpandedWidth = "240px";
677
+ const VerticalNavbarSizeStatesCollapsedWidth = "56px";
678
+ const VerticalNavbarSizeIconMargin = "16px";
679
+ const NavbarItemLightColorSchemeText = "#D8EAF7";
680
+ const NavbarItemLightColorSchemeIcon = "#D8EAF7";
681
+ const NavbarItemLightColorSchemeStatesActive = "rgba(0, 0, 0, 0.1)";
682
+ const NavbarItemLightColorSchemeStatesHover = "rgba(255, 255, 255, 0.1)";
683
+ const NavbarItemLightColorSchemeStatesProgress = "#07314D";
684
+ const NavbarItemLightColorSchemeStatesDisabledOpacity = 0.3;
685
+ const NavbarItemDarkColorSchemeText = "#D8EAF7";
686
+ const NavbarItemDarkColorSchemeIcon = "#D8EAF7";
687
+ const NavbarItemDarkColorSchemeStatesActive = "rgba(0, 0, 0, 0.1)";
688
+ const NavbarItemDarkColorSchemeStatesHover = "rgba(255, 255, 255, 0.1)";
689
+ const NavbarItemDarkColorSchemeStatesProgress = "#07314D";
690
+ const NavbarItemDarkColorSchemeStatesDisabledOpacity = 0.3;
691
+ const NavbarItemSizePadding = "16px";
692
+ const NavbarItemSizeHeight = "48px";
693
+ const NavbarItemSizeHeightVertical = "56px";
694
+ const NavbarBrandSizePadding = "12px";
695
+ const NavbarBrandSizeMarginRight = "24px";
696
+ const NavbarBrandFontTitle = "title";
697
+ const OptgroupSizePaddingLeft = "17px";
698
+ const OptgroupFontDefault = "subheading";
699
+ const OptionSizeHorizontalPadding = "16px";
700
+ const OptionSizeHeight = "32px";
701
+ const OptionSizeBorderWidth = "2px";
702
+ const OptionFontDefault = "body";
703
+ const PopoverLightColorSchemeBackground = "white";
704
+ const PopoverLightColorSchemeText = "#4D4D4D";
705
+ const PopoverLightColorSchemeShadow = "0 3px 3px 0 rgba(0, 0, 0, 0.2)";
706
+ const PopoverLightColorSchemeBorder = "#B3B3B3";
707
+ const PopoverDarkColorSchemeBackground = "#4D4D4D";
708
+ const PopoverDarkColorSchemeText = "#F0F0F0";
709
+ const PopoverDarkColorSchemeShadow = "0 3px 3px 0 rgba(0, 0, 0, 0.2)";
710
+ const PopoverDarkColorSchemeBorder = "#4D4D4D";
711
+ const PopoverSizeMaxHeight = "480px";
712
+ const PopoverSizePadding = "16px";
713
+ const PopoverSizeBorderRadius = "3px";
714
+ const PopoverSizeArrowSize = "12px";
715
+ const PopoverSizeTriggerMargin = "9px";
716
+ const PopoverSizeSmallWidth = "200px";
717
+ const PopoverSizeNormalWidth = "400px";
718
+ const PopoverSizeLargeWidth = "640px";
719
+ const PopoverFontDefault = "body";
720
+ const PopoverHeaderLightColorSchemeBorder = "#E6E6E6";
721
+ const PopoverHeaderLightColorSchemeText = "#4D4D4D";
722
+ const PopoverHeaderLightColorSchemeBackground = "white";
723
+ const PopoverHeaderDarkColorSchemeBorder = "transparent";
724
+ const PopoverHeaderDarkColorSchemeText = "#F0F0F0";
725
+ const PopoverHeaderDarkColorSchemeBackground = "#4D4D4D";
726
+ const PopoverHeaderSizeHeight = "10px 16px";
727
+ const PopoverHeaderSizePadding = "10px 16px";
728
+ const PopoverHeaderFontDefault = "subheading";
729
+ const PopoverFooterLightColorSchemeBorder = "#F0F0F0";
730
+ const PopoverFooterLightColorSchemeBackground = "#F0F0F0";
731
+ const PopoverFooterDarkColorSchemeBorder = "transparent";
732
+ const PopoverFooterDarkColorSchemeBackground = "transparent";
733
+ const PopoverFooterSizeMarginTop = "8px";
734
+ const PopoverFooterSizePadding = "12px 16px";
735
+ const PopoverFooterSizeHeight = "56px";
736
+ const PopoverFooterFontDefault = "body";
737
+ const PopupLightColorSchemeShadow = "0 3px 3px 0 rgba(0, 0, 0, 0.2)";
738
+ const PopupLightColorSchemeBorder = "#B3B3B3";
739
+ const PopupLightColorSchemeDivider = "#CCCCCC";
740
+ const PopupLightColorSchemeBackground = "white";
741
+ const PopupLightColorSchemeFooterBackground = "#F0F0F0";
742
+ const PopupDarkColorSchemeShadow = "0 3px 3px 0 rgba(0, 0, 0, 0.2)";
743
+ const PopupDarkColorSchemeBorder = "#999999";
744
+ const PopupDarkColorSchemeDivider = "#666666";
745
+ const PopupDarkColorSchemeBackground = "#4D4D4D";
746
+ const PopupDarkColorSchemeFooterBackground = "transparent";
747
+ const ProgressBarLightColorSchemeBackground = "#F0F0F0";
748
+ const ProgressBarDarkColorSchemeBackground = "#666666";
749
+ const ProgressBarSizeHeight = "4px";
750
+ const ProgressSpinnerSizeSize = "16px";
751
+ const RadioLightColorSchemeOuterCircleBorder = "#B3B3B3";
752
+ const RadioLightColorSchemeInnerCircleBorder = "transparent";
753
+ const RadioLightColorSchemeStatesCheckedOuterCircleBorder = "#338FCC";
754
+ const RadioLightColorSchemeStatesCheckedInnerCircleBorder = "#338FCC";
755
+ const RadioLightColorSchemeStatesFocusedOuterCircleBorder = "#338FCC";
756
+ const RadioLightColorSchemeStatesFocusedOuterCircleShadow = "0 0 0 2px #B3B3B3";
757
+ const RadioLightColorSchemeStatesFocusedInnerCircleShadow = "0 0 0 1px white";
758
+ const RadioDarkColorSchemeOuterCircleBorder = "#999999";
759
+ const RadioDarkColorSchemeInnerCircleBorder = "transparent";
760
+ const RadioDarkColorSchemeStatesCheckedOuterCircleBorder = "#57A4D7";
761
+ const RadioDarkColorSchemeStatesCheckedInnerCircleBorder = "#206EA2";
762
+ const RadioDarkColorSchemeStatesFocusedOuterCircleBorder = "#57A4D7";
763
+ const RadioDarkColorSchemeStatesFocusedOuterCircleShadow = "0 0 0 2px #57A4D7";
764
+ const RadioDarkColorSchemeStatesFocusedInnerCircleShadow = "0 0 0 1px #333333";
765
+ const RadioSizeSize = "14px";
766
+ const RadioSizeLabelMargin = "8px";
767
+ const RadioFontDefault = "body";
768
+ const SelectSizeHeight = "30px";
769
+ const SelectSizeLeftPadding = "16px";
770
+ const SelectSizeRightPadding = "8px";
771
+ const SelectSizeLeftPaddingMultiple = "8px";
772
+ const SelectFontDefault = "body";
773
+ const SelectPanelSizeMaxHeight = "232px";
774
+ const SelectPanelSizeMaxWidth = "640px";
775
+ const SelectPanelSizeVerticalPadding = "4px";
776
+ const SelectPanelSizeBorderWidth = "1px";
777
+ const SelectPanelSizeBorderRadius = "3px";
778
+ const SelectPanelFontDefault = "body";
779
+ const SidepanelLightColorSchemeBorder = "#B3B3B3";
780
+ const SidepanelDarkColorSchemeBorder = "#333333";
781
+ const SidepanelFontDefault = "body";
782
+ const SidepanelHeaderSizePadding = "14px 16px";
783
+ const SidepanelHeaderSizeClosePadding = "0 0 0 8px";
784
+ const SidepanelHeaderFontDefault = "title";
785
+ const SidepanelFooterSizePadding = "16px";
786
+ const SidepanelFooterFontDefault = "body";
787
+ const TableSizeBorderWidth = "1px";
788
+ const TableSizeRowPaddingVertical = "8px";
789
+ const TableSizeRowPaddingHorizontal = "16px";
790
+ const TableFontHeader = "caption";
791
+ const TableFontBody = "body";
792
+ const TabsLightColorSchemeBorder = "#B3B3B3";
793
+ const TabsLightColorSchemeStateActive = "#338FCC";
794
+ const TabsLightColorSchemeStateDisabledOverlay = "rgba(white, 0.5)";
795
+ const TabsDarkColorSchemeBorder = "#B3B3B3";
796
+ const TabsDarkColorSchemeStateActive = "#57A4D7";
797
+ const TabsDarkColorSchemeStateDisabledOverlay = "rgba(white, 0.5)";
798
+ const TabsSizeHeight = "40px";
799
+ const TabsSizeHighlightHeight = "4px";
800
+ const TabsSizePaddingHorizontal = "16px";
801
+ const TabsSizeBorderWidth = "1px";
802
+ const TabsSizeBorderRadius = "3px";
803
+ const TabsSizeLabelIconMargin = "8px";
804
+ const TabsFontDefault = "body";
805
+ const TagsLightColorSchemePrimaryBackground = "#D8EAF7";
806
+ const TagsLightColorSchemePrimaryBorder = "#D8EAF7";
807
+ const TagsLightColorSchemePrimaryIcon = "mix(#57A4D7, rgba(black, 0.05))";
808
+ const TagsLightColorSchemePrimaryStatesHoverIcon = "#206EA2";
809
+ const TagsLightColorSchemePrimaryStatesFocused = "#338FCC";
810
+ const TagsLightColorSchemePrimaryStatesDisabledText = "mix(#338FCC, transparent, 50%)";
811
+ const TagsLightColorSchemePrimaryStatesDisabledBackground = "mix(#338FCC, transparent, 10%)";
812
+ const TagsLightColorSchemeSecondBackground = "#E6E6E6";
813
+ const TagsLightColorSchemeSecondBorder = "#E6E6E6";
814
+ const TagsLightColorSchemeSecondIcon = "mix(#999999, rgba(black, 0.05))";
815
+ const TagsLightColorSchemeSecondStatesHoverIcon = "#999999";
816
+ const TagsLightColorSchemeSecondStatesFocused = "#338FCC";
817
+ const TagsLightColorSchemeSecondStatesDisabledText = "mix(#B3B3B3, transparent, 50%)";
818
+ const TagsLightColorSchemeSecondStatesDisabledBackground = "mix(#B3B3B3, transparent, 10%)";
819
+ const TagsLightColorSchemeErrorBackground = "#FADEDA";
820
+ const TagsLightColorSchemeErrorBorder = "#FADEDA";
821
+ const TagsLightColorSchemeErrorIcon = "mix(#E76E5C, rgba(black, 0.05))";
822
+ const TagsLightColorSchemeErrorStatesHoverIcon = "#E04D36";
823
+ const TagsLightColorSchemeErrorStatesFocused = "#E76E5C";
824
+ const TagsLightColorSchemeErrorStatesDisabledText = "mix(#E76E5C, transparent, 50%)";
825
+ const TagsLightColorSchemeErrorStatesDisabledBackground = "mix(#E76E5C, transparent, 10%)";
826
+ const TagsDarkColorSchemePrimaryBackground = "#114E77";
827
+ const TagsDarkColorSchemePrimaryBorder = "#114E77";
828
+ const TagsDarkColorSchemePrimaryIcon = "mix(#57A4D7, rgba(black, 0.05))";
829
+ const TagsDarkColorSchemePrimaryStatesHoverIcon = "#338FCC";
830
+ const TagsDarkColorSchemePrimaryStatesFocused = "#57A4D7";
831
+ const TagsDarkColorSchemePrimaryStatesDisabledText = "mix(#57A4D7, transparent, 50%)";
832
+ const TagsDarkColorSchemePrimaryStatesDisabledBackground = "mix(#57A4D7, transparent, 10%)";
833
+ const TagsDarkColorSchemeSecondBackground = "#4D4D4D";
834
+ const TagsDarkColorSchemeSecondBorder = "#4D4D4D";
835
+ const TagsDarkColorSchemeSecondIcon = "mix(#999999, rgba(black, 0.05))";
836
+ const TagsDarkColorSchemeSecondStatesHoverIcon = "#E6E6E6";
837
+ const TagsDarkColorSchemeSecondStatesFocused = "#57A4D7";
838
+ const TagsDarkColorSchemeSecondStatesDisabledText = "mix(#999999, transparent, 50%)";
839
+ const TagsDarkColorSchemeSecondStatesDisabledBackground = "mix(#999999, transparent, 10%)";
840
+ const TagsDarkColorSchemeErrorBackground = "#832112";
841
+ const TagsDarkColorSchemeErrorBorder = "#832112";
842
+ const TagsDarkColorSchemeErrorIcon = "mix(#E76E5C, rgba(black, 0.05))";
843
+ const TagsDarkColorSchemeErrorStatesHoverIcon = "#F4B7AE";
844
+ const TagsDarkColorSchemeErrorStatesFocused = "#E76E5C";
845
+ const TagsDarkColorSchemeErrorStatesDisabledText = "mix(#E76E5C, transparent, 50%)";
846
+ const TagsDarkColorSchemeErrorStatesDisabledBackground = "mix(#E76E5C, transparent, 10%)";
847
+ const TagsSizeMargin = "2px";
848
+ const TagsSizeHeight = "24px";
849
+ const TagsSizeBorderWidth = "1px";
850
+ const TagsSizeBorderRadius = "4px";
851
+ const TagsSizeIconPadding = "3px";
852
+ const TagsSizeTextMargin = "8px";
853
+ const TagsFontDefault = "caption";
854
+ const TagsFontMono = "caption-mono";
855
+ const TagsFontCaps = "caption-caps";
856
+ const TagListSizePadding = "1px 6px";
857
+ const TagListSizeMinHeight = "30px";
858
+ const TagInputSizeHeight = "22px";
859
+ const TagInputSizeMargin = "2px 4px";
860
+ const TagInputFontDefault = "body";
861
+ const TextareaSizeMinHeight = "50px";
862
+ const TextareaSizePadding = "5px 16px";
863
+ const TextareaFontDefault = "body";
864
+ const TextareaFontMono = "body-mono";
865
+ const TimepickerSizePaddingRight = "16px";
866
+ const ToggleLightColorSchemeBorder = "#B3B3B3";
867
+ const ToggleLightColorSchemeBackground = "linear-gradient(to bottom, #E6E6E6, #F0F0F0)";
868
+ const ToggleLightColorSchemeCircleBorder = "#B3B3B3";
869
+ const ToggleLightColorSchemeCircleBackground = "linear-gradient(to bottom, white, #E6E6E6)";
870
+ const ToggleLightColorSchemeStatesFocusedShadow = "inset 0 0 0 1px white, 0 0 0 2px #338FCC";
871
+ const ToggleDarkColorSchemeBorder = "#808080";
872
+ const ToggleDarkColorSchemeBackground = "#333333";
873
+ const ToggleDarkColorSchemeCircleBorder = "#808080";
874
+ const ToggleDarkColorSchemeCircleBackground = "white";
875
+ const ToggleDarkColorSchemeStatesFocusedShadow = "inset 0 0 0 1px #333333, 0 0 0 2px #57A4D7";
876
+ const ToggleSizeHeight = "16px";
877
+ const ToggleSizeWidth = "28px";
878
+ const ToggleSizeBorderRadius = "9px";
879
+ const ToggleSizeLabelMargin = "8px";
880
+ const ToggleFontDefault = "body";
881
+ const ToggleSmallSizeHeight = "14px";
882
+ const ToggleSmallSizeWidth = "24px";
883
+ const ToggleSmallSizeBorderRadius = "8px";
884
+ const ToggleSmallFontDefault = "caption";
885
+ const TooltipLightColorSchemeBackground = "#4D4D4D";
886
+ const TooltipLightColorSchemeText = "white";
887
+ const TooltipLightColorSchemeBorder = "transparent";
888
+ const TooltipLightColorSchemeShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.2)";
889
+ const TooltipLightColorSchemeWarningBackground = "#FCF5E8";
890
+ const TooltipLightColorSchemeWarningText = "#4D4D4D";
891
+ const TooltipLightColorSchemeWarningBorder = "#F0D49B";
892
+ const TooltipDarkColorSchemeBackground = "#F5F5F5";
893
+ const TooltipDarkColorSchemeText = "#4D4D4D";
894
+ const TooltipDarkColorSchemeBorder = "transparent";
895
+ const TooltipDarkColorSchemeShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.2)";
896
+ const TooltipDarkColorSchemeWarningBackground = "#FCF5E8";
897
+ const TooltipDarkColorSchemeWarningText = "#4D4D4D";
898
+ const TooltipDarkColorSchemeWarningBorder = "#F0D49B";
899
+ const TooltipSizeMaxWidth = "300px";
900
+ const TooltipSizeBorderWidth = "1px";
901
+ const TooltipSizeBorderRadius = "3px";
902
+ const TooltipSizePadding = "8px 16px";
903
+ const TooltipSizeArrowSize = "12px";
904
+ const TooltipSizeTriggerMargin = "9px";
905
+ const TooltipFontDefault = "caption";
906
+ const ExtendedTooltipLightColorSchemeBackground = "white";
907
+ const ExtendedTooltipLightColorSchemeText = "#4D4D4D";
908
+ const ExtendedTooltipLightColorSchemeBorder = "#B3B3B3";
909
+ const ExtendedTooltipLightColorSchemeShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.2)";
910
+ const ExtendedTooltipDarkColorSchemeBackground = "#4D4D4D";
911
+ const ExtendedTooltipDarkColorSchemeText = "#F0F0F0";
912
+ const ExtendedTooltipDarkColorSchemeBorder = "#999999";
913
+ const ExtendedTooltipDarkColorSchemeShadow = "0 2px 4px 0 rgba(0, 0, 0, 0.2)";
914
+ const ExtendedTooltipSizeBorderRadius = "3px";
915
+ const ExtendedTooltipSizeArrowSize = "12px";
916
+ const ExtendedTooltipSizeTriggerMargin = "9px";
917
+ const ExtendedTooltipSizePadding = "8px 16px";
918
+ const ExtendedTooltipSizeMaxHeight = "480px";
919
+ const ExtendedTooltipFontDefault = "caption";
920
+ const ExtendedTooltipHeaderLightColorSchemeBorder = "#E6E6E6";
921
+ const ExtendedTooltipHeaderLightColorSchemeText = "#4D4D4D";
922
+ const ExtendedTooltipHeaderLightColorSchemeBackground = "white";
923
+ const ExtendedTooltipHeaderDarkColorSchemeBorder = "#F0F0F0";
924
+ const ExtendedTooltipHeaderDarkColorSchemeText = "#F0F0F0";
925
+ const ExtendedTooltipHeaderDarkColorSchemeBackground = "#4D4D4D";
926
+ const ExtendedTooltipHeaderSizeHeight = "40px";
927
+ const ExtendedTooltipHeaderSizePadding = "10px 16px";
928
+ const ExtendedTooltipHeaderFontDefault = "subheading";
929
+ const TreeSizeNodeHeight = "32px";
930
+ const TreeSizePaddingLeft = "8px";
931
+ const TreeSizePaddingRight = "16px";
932
+ const TreeFontNode = "body";
933
+
934
+ /**
935
+ * Generated bundle index. Do not edit.
936
+ */
937
+
938
+ export { AlertDarkColorSchemeDefaultBackground, AlertDarkColorSchemeDefaultBorder, AlertDarkColorSchemeDefaultIcon, AlertDarkColorSchemeErrorBackground, AlertDarkColorSchemeErrorBorder, AlertDarkColorSchemeErrorIcon, AlertDarkColorSchemeInfoBackground, AlertDarkColorSchemeInfoBorder, AlertDarkColorSchemeInfoIcon, AlertDarkColorSchemeSuccessBackground, AlertDarkColorSchemeSuccessBorder, AlertDarkColorSchemeSuccessIcon, AlertDarkColorSchemeWarningBackground, AlertDarkColorSchemeWarningBorder, AlertDarkColorSchemeWarningIcon, AlertFontDefaultBody, AlertFontDefaultHeader, AlertFontSmallBody, AlertFontSmallHeader, AlertLightColorSchemeDefaultBackground, AlertLightColorSchemeDefaultBorder, AlertLightColorSchemeDefaultIcon, AlertLightColorSchemeErrorBackground, AlertLightColorSchemeErrorBorder, AlertLightColorSchemeErrorIcon, AlertLightColorSchemeInfoBackground, AlertLightColorSchemeInfoBorder, AlertLightColorSchemeInfoIcon, AlertLightColorSchemeSuccessBackground, AlertLightColorSchemeSuccessBorder, AlertLightColorSchemeSuccessIcon, AlertLightColorSchemeWarningBackground, AlertLightColorSchemeWarningBorder, AlertLightColorSchemeWarningIcon, AlertSizeBorderRadius, AlertSizeBorderWidth, AlertSizeCloseButtonWidth, AlertSizeHorizontalPadding, AlertSizeIconMargin, AlertSizeSmallVerticalPadding, AlertSizeVerticalPadding, AutocompleteSizePanelBorderRadius, AutocompleteSizePanelMaxHeight, AutocompleteSizePanelPadding, BadgeDarkColorSchemePastelErrorBackground, BadgeDarkColorSchemePastelErrorBorder, BadgeDarkColorSchemePastelErrorColor, BadgeDarkColorSchemePastelInfoBackground, BadgeDarkColorSchemePastelInfoBorder, BadgeDarkColorSchemePastelInfoColor, BadgeDarkColorSchemePastelPrimaryBackground, BadgeDarkColorSchemePastelPrimaryBorder, BadgeDarkColorSchemePastelPrimaryColor, BadgeDarkColorSchemePastelSuccessBackground, BadgeDarkColorSchemePastelSuccessBorder, BadgeDarkColorSchemePastelSuccessColor, BadgeDarkColorSchemePastelWarningBackground, BadgeDarkColorSchemePastelWarningBorder, BadgeDarkColorSchemePastelWarningColor, BadgeDarkColorSchemeSolidErrorBackground, BadgeDarkColorSchemeSolidErrorBorder, BadgeDarkColorSchemeSolidErrorColor, BadgeDarkColorSchemeSolidInfoBackground, BadgeDarkColorSchemeSolidInfoBorder, BadgeDarkColorSchemeSolidInfoColor, BadgeDarkColorSchemeSolidLightBackground, BadgeDarkColorSchemeSolidLightBorder, BadgeDarkColorSchemeSolidLightColor, BadgeDarkColorSchemeSolidPrimaryBackground, BadgeDarkColorSchemeSolidPrimaryBorder, BadgeDarkColorSchemeSolidPrimaryColor, BadgeDarkColorSchemeSolidSecondBackground, BadgeDarkColorSchemeSolidSecondBorder, BadgeDarkColorSchemeSolidSecondColor, BadgeDarkColorSchemeSolidSuccessBackground, BadgeDarkColorSchemeSolidSuccessBorder, BadgeDarkColorSchemeSolidSuccessColor, BadgeDarkColorSchemeSolidTransparentBackground, BadgeDarkColorSchemeSolidTransparentBorder, BadgeDarkColorSchemeSolidTransparentColor, BadgeDarkColorSchemeSolidWarningBackground, BadgeDarkColorSchemeSolidWarningBorder, BadgeDarkColorSchemeSolidWarningColor, BadgeFontDefaultCaps, BadgeFontDefaultDefault, BadgeFontDefaultMono, BadgeFontMiniCaps, BadgeFontMiniDefault, BadgeFontMiniMono, BadgeLightColorSchemePastelErrorBackground, BadgeLightColorSchemePastelErrorBorder, BadgeLightColorSchemePastelErrorColor, BadgeLightColorSchemePastelInfoBackground, BadgeLightColorSchemePastelInfoBorder, BadgeLightColorSchemePastelInfoColor, BadgeLightColorSchemePastelPrimaryBackground, BadgeLightColorSchemePastelPrimaryBorder, BadgeLightColorSchemePastelPrimaryColor, BadgeLightColorSchemePastelSuccessBackground, BadgeLightColorSchemePastelSuccessBorder, BadgeLightColorSchemePastelSuccessColor, BadgeLightColorSchemePastelWarningBackground, BadgeLightColorSchemePastelWarningBorder, BadgeLightColorSchemePastelWarningColor, BadgeLightColorSchemeSolidErrorBackground, BadgeLightColorSchemeSolidErrorBorder, BadgeLightColorSchemeSolidErrorColor, BadgeLightColorSchemeSolidInfoBackground, BadgeLightColorSchemeSolidInfoBorder, BadgeLightColorSchemeSolidInfoColor, BadgeLightColorSchemeSolidLightBackground, BadgeLightColorSchemeSolidLightBorder, BadgeLightColorSchemeSolidLightColor, BadgeLightColorSchemeSolidPrimaryBackground, BadgeLightColorSchemeSolidPrimaryBorder, BadgeLightColorSchemeSolidPrimaryColor, BadgeLightColorSchemeSolidSecondBackground, BadgeLightColorSchemeSolidSecondBorder, BadgeLightColorSchemeSolidSecondColor, BadgeLightColorSchemeSolidSuccessBackground, BadgeLightColorSchemeSolidSuccessBorder, BadgeLightColorSchemeSolidSuccessColor, BadgeLightColorSchemeSolidTransparentBackground, BadgeLightColorSchemeSolidTransparentBorder, BadgeLightColorSchemeSolidTransparentColor, BadgeLightColorSchemeSolidWarningBackground, BadgeLightColorSchemeSolidWarningBorder, BadgeLightColorSchemeSolidWarningColor, BadgeSizeDefaultBorderRadius, BadgeSizeDefaultBorderWidth, BadgeSizeDefaultFontCaps, BadgeSizeDefaultFontDefault, BadgeSizeDefaultFontMono, BadgeSizeDefaultHeight, BadgeSizeDefaultMinWidth, BadgeSizeDefaultPadding, BadgeSizeMiniBorderRadius, BadgeSizeMiniBorderWidth, BadgeSizeMiniFontCaps, BadgeSizeMiniFontDefault, BadgeSizeMiniFontMono, BadgeSizeMiniHeight, BadgeSizeMiniMinWidth, BadgeSizeMiniPadding, ButtonDarkColorSchemeActiveShadow, ButtonDarkColorSchemeErrorBackground, ButtonDarkColorSchemeErrorBorder, ButtonDarkColorSchemeErrorColor, ButtonDarkColorSchemeErrorIcon, ButtonDarkColorSchemeErrorStatesActiveBackground, ButtonDarkColorSchemeErrorStatesActiveBorder, ButtonDarkColorSchemePrimaryBackground, ButtonDarkColorSchemePrimaryBorder, ButtonDarkColorSchemePrimaryColor, ButtonDarkColorSchemePrimaryIcon, ButtonDarkColorSchemePrimaryStatesActiveBackground, ButtonDarkColorSchemePrimaryStatesActiveBorder, ButtonDarkColorSchemePrimaryTransparentColor, ButtonDarkColorSchemePrimaryTransparentIcon, ButtonDarkColorSchemePrimaryTransparentStatesActiveColor, ButtonDarkColorSchemePrimaryTransparentStatesActiveIcon, ButtonDarkColorSchemePrimaryTransparentStatesHoverColor, ButtonDarkColorSchemePrimaryTransparentStatesHoverIcon, ButtonDarkColorSchemeSecondBackground, ButtonDarkColorSchemeSecondBorder, ButtonDarkColorSchemeSecondColor, ButtonDarkColorSchemeSecondIcon, ButtonDarkColorSchemeSecondStatesActiveBackground, ButtonDarkColorSchemeSecondStatesActiveBorder, ButtonFontDefault, ButtonFontPrimary, ButtonFontPrimaryTransparent, ButtonLightColorSchemeActiveShadow, ButtonLightColorSchemeErrorBackground, ButtonLightColorSchemeErrorBorder, ButtonLightColorSchemeErrorColor, ButtonLightColorSchemeErrorIcon, ButtonLightColorSchemeErrorStatesActiveBackground, ButtonLightColorSchemeErrorStatesActiveBorder, ButtonLightColorSchemePrimaryBackground, ButtonLightColorSchemePrimaryBorder, ButtonLightColorSchemePrimaryColor, ButtonLightColorSchemePrimaryIcon, ButtonLightColorSchemePrimaryStatesActiveBackground, ButtonLightColorSchemePrimaryStatesActiveBorder, ButtonLightColorSchemePrimaryTransparentColor, ButtonLightColorSchemePrimaryTransparentIcon, ButtonLightColorSchemePrimaryTransparentStatesActiveColor, ButtonLightColorSchemePrimaryTransparentStatesActiveIcon, ButtonLightColorSchemePrimaryTransparentStatesHoverColor, ButtonLightColorSchemePrimaryTransparentStatesHoverIcon, ButtonLightColorSchemeSecondBackground, ButtonLightColorSchemeSecondBorder, ButtonLightColorSchemeSecondColor, ButtonLightColorSchemeSecondIcon, ButtonLightColorSchemeSecondStatesActiveBackground, ButtonLightColorSchemeSecondStatesActiveBorder, ButtonSizeBorderRadius, ButtonSizeBorderWidth, ButtonSizeHorizontalPadding, ButtonSizeVerticalPadding, ButtonToggleSizeBorderRadius, ButtonToggleSizeBorderSize, CardDarkColorSchemeErrorBackground, CardDarkColorSchemeErrorShadow, CardDarkColorSchemeErrorVerticalLine, CardDarkColorSchemeInfoBackground, CardDarkColorSchemeInfoShadow, CardDarkColorSchemeInfoVerticalLine, CardDarkColorSchemeSuccessBackground, CardDarkColorSchemeSuccessShadow, CardDarkColorSchemeSuccessVerticalLine, CardDarkColorSchemeWarningBackground, CardDarkColorSchemeWarningShadow, CardDarkColorSchemeWarningVerticalLine, CardLightColorSchemeErrorBackground, CardLightColorSchemeErrorShadow, CardLightColorSchemeErrorVerticalLine, CardLightColorSchemeInfoBackground, CardLightColorSchemeInfoShadow, CardLightColorSchemeInfoVerticalLine, CardLightColorSchemeSuccessBackground, CardLightColorSchemeSuccessShadow, CardLightColorSchemeSuccessVerticalLine, CardLightColorSchemeWarningBackground, CardLightColorSchemeWarningShadow, CardLightColorSchemeWarningVerticalLine, CardSizeVerticalLine, CheckboxDarkColorSchemeBorder, CheckboxDarkColorSchemeStatesCheckedBackground, CheckboxDarkColorSchemeStatesCheckedBorder, CheckboxDarkColorSchemeStatesFocusedBorder, CheckboxDarkColorSchemeStatesFocusedShadow, CheckboxFontDefault, CheckboxLightColorSchemeBorder, CheckboxLightColorSchemeStatesCheckedBackground, CheckboxLightColorSchemeStatesCheckedBorder, CheckboxLightColorSchemeStatesFocusedBorder, CheckboxLightColorSchemeStatesFocusedShadow, CheckboxSizeBorderWidth, CheckboxSizeLabelMargin, CheckboxSizeToggleBoxShadow, CheckboxSizeWidth, ColorBluePalette, ColorGreenPalette, ColorGreyPalette, ColorRedPalette, ColorYellowPalette, DarkColorSchemeBackgroundBackground, DarkColorSchemeBackgroundBackgroundDisabled, DarkColorSchemeBackgroundOverlayActive, DarkColorSchemeBackgroundOverlayDisabled, DarkColorSchemeBackgroundOverlayHover, DarkColorSchemeErrorDefault, DarkColorSchemeErrorPalette, DarkColorSchemeForegroundBorder, DarkColorSchemeForegroundDivider, DarkColorSchemeForegroundIcon, DarkColorSchemeForegroundText, DarkColorSchemeForegroundTextDisabled, DarkColorSchemeForegroundTextLessContrast, DarkColorSchemeInfoDefault, DarkColorSchemeInfoPalette, DarkColorSchemePrimaryDefault, DarkColorSchemePrimaryPalette, DarkColorSchemeSecondDefault, DarkColorSchemeSecondPalette, DarkColorSchemeStatesDisabledOpacity, DarkColorSchemeStatesFocusedColor, DarkColorSchemeStatesPressedShadow, DarkColorSchemeStatesSelectedColor, DarkColorSchemeSuccessDefault, DarkColorSchemeSuccessPalette, DarkColorSchemeWarningDefault, DarkColorSchemeWarningPalette, DatepickerBodyDarkColorSchemeStatesSelectedBackground, DatepickerBodyDarkColorSchemeStatesSelectedColor, DatepickerBodyFontLabel, DatepickerBodyFontToday, DatepickerBodyLightColorSchemeStatesSelectedBackground, DatepickerBodyLightColorSchemeStatesSelectedColor, DatepickerBodySizeCellBorderWidth, DatepickerBodySizeCellMargin, DatepickerBodySizeCellMinSize, DatepickerBodySizeCellPadding, DatepickerBodySizeLabelPaddings, DatepickerCalendarFontDefault, DatepickerCalendarFontHeader, DatepickerCalendarSizeDividerWidth, DatepickerCalendarSizeIconBorderWidth, DatepickerCalendarSizeIconNexIconTransform, DatepickerCalendarSizeIconPrevIconTransform, DatepickerCalendarSizePaddingBlocks, DatepickerCalendarSizePaddingBottom, DatepickerCalendarSizePaddingHorizontal, DatepickerCalendarSizePaddingTop, DatepickerInputSizeWidth, DatepickerToggleSizeHeight, DatepickerToggleSizeWidth, DividerSizeInsetMargin, DividerSizeWidth, DropdownDividerSizeHeight, DropdownDividerSizeMargin, DropdownGroupHeaderFontDefault, DropdownGroupHeaderFontSmall, DropdownGroupHeaderSizeDefaultPadding, DropdownGroupHeaderSizeSmallPadding, DropdownItemFontCaption, DropdownItemFontDefault, DropdownItemSizeIconPadding, DropdownItemSizePadding, DropdownPanelSizeBorderRadius, DropdownPanelSizeBorderWidth, DropdownPanelSizeMaxWidth, DropdownPanelSizePadding, DropdownTriggerSizeIconPaddingRight, ExtendedTooltipDarkColorSchemeBackground, ExtendedTooltipDarkColorSchemeBorder, ExtendedTooltipDarkColorSchemeShadow, ExtendedTooltipDarkColorSchemeText, ExtendedTooltipFontDefault, ExtendedTooltipHeaderDarkColorSchemeBackground, ExtendedTooltipHeaderDarkColorSchemeBorder, ExtendedTooltipHeaderDarkColorSchemeText, ExtendedTooltipHeaderFontDefault, ExtendedTooltipHeaderLightColorSchemeBackground, ExtendedTooltipHeaderLightColorSchemeBorder, ExtendedTooltipHeaderLightColorSchemeText, ExtendedTooltipHeaderSizeHeight, ExtendedTooltipHeaderSizePadding, ExtendedTooltipLightColorSchemeBackground, ExtendedTooltipLightColorSchemeBorder, ExtendedTooltipLightColorSchemeShadow, ExtendedTooltipLightColorSchemeText, ExtendedTooltipSizeArrowSize, ExtendedTooltipSizeBorderRadius, ExtendedTooltipSizeMaxHeight, ExtendedTooltipSizePadding, ExtendedTooltipSizeTriggerMargin, FontFamilyBase, FontFamilyMonospace, FormFieldDarkColorSchemeBackground, FormFieldDarkColorSchemeBorder, FormFieldDarkColorSchemeStatesHoverBorder, FormFieldDarkColorSchemeStatesInvalidBackground, FormFieldDarkColorSchemeStatesInvalidBorder, FormFieldFontDefault, FormFieldHintFontDefault, FormFieldHintSizeMarginTop, FormFieldLightColorSchemeBackground, FormFieldLightColorSchemeBorder, FormFieldLightColorSchemeStatesHoverBorder, FormFieldLightColorSchemeStatesInvalidBackground, FormFieldLightColorSchemeStatesInvalidBorder, FormFieldSizeBorderRadius, FormFieldSizeBorderWidth, FormFieldSizeButtonWidth, FormsDarkColorSchemeLabel, FormsDarkColorSchemeLegend, FormsFontDefaultLabel, FormsFontDefaultLegend, FormsLightColorSchemeLabel, FormsLightColorSchemeLegend, FormsSizeHorizontalControlPaddingLeft, FormsSizeHorizontalLabelPaddingBottom, FormsSizeHorizontalLabelPaddingTop, FormsSizeHorizontalLegendMarginBottom, FormsSizeHorizontalLegendMarginTop, FormsSizeHorizontalRowMarginBottom, FormsSizeVerticalControlPaddingLeft, FormsSizeVerticalLabelPaddingBottom, FormsSizeVerticalLabelPaddingTop, FormsSizeVerticalLegendMarginBottom, FormsSizeVerticalLegendMarginTop, FormsSizeVerticalRowMarginBottom, IconButtonSizeHorizontalPadding, IconButtonSizeIconHorizontalPadding, IconButtonSizeVerticalPadding, InputFontDefault, InputFontMonospace, InputSizeMinHeight, InputSizePadding, InputSizeWidth, LightColorSchemeBackgroundBackground, LightColorSchemeBackgroundBackgroundDisabled, LightColorSchemeBackgroundOverlayActive, LightColorSchemeBackgroundOverlayDisabled, LightColorSchemeBackgroundOverlayHover, LightColorSchemeErrorDefault, LightColorSchemeErrorPalette, LightColorSchemeForegroundBorder, LightColorSchemeForegroundDivider, LightColorSchemeForegroundIcon, LightColorSchemeForegroundText, LightColorSchemeForegroundTextDisabled, LightColorSchemeForegroundTextLessContrast, LightColorSchemeInfoDefault, LightColorSchemeInfoPalette, LightColorSchemePrimaryDefault, LightColorSchemePrimaryPalette, LightColorSchemeSecondDefault, LightColorSchemeSecondPalette, LightColorSchemeStatesDisabledOpacity, LightColorSchemeStatesFocusedColor, LightColorSchemeStatesPressedShadow, LightColorSchemeStatesSelectedColor, LightColorSchemeSuccessDefault, LightColorSchemeSuccessPalette, LightColorSchemeWarningDefault, LightColorSchemeWarningPalette, LinkAnimationStateHoverTransition, LinkAnimationTransition, LinkDarkColorSchemeBorderBottom, LinkDarkColorSchemeStateActive, LinkDarkColorSchemeStateFocusedOutline, LinkDarkColorSchemeStateHoverBorderBottom, LinkDarkColorSchemeStateHoverText, LinkDarkColorSchemeStateVisitedBorderBottom, LinkDarkColorSchemeStateVisitedText, LinkDarkColorSchemeText, LinkFontDefault, LinkLightColorSchemeBorderBottom, LinkLightColorSchemeStateActive, LinkLightColorSchemeStateFocusedOutline, LinkLightColorSchemeStateHoverBorderBottom, LinkLightColorSchemeStateHoverText, LinkLightColorSchemeStateVisitedBorderBottom, LinkLightColorSchemeStateVisitedText, LinkLightColorSchemeText, LinkSizeIconMargin, LinkSizeStateFocusedOutlineOffset, LinkSizeStateFocusedOutlineWidth, ListFontItem, ListSizeHorizontalPadding, ListSizeIconPadding, ListSizeIconWidth, ListSizeItemHeight, ModalBodyFontDefault, ModalBodySizeMaxHeight, ModalBodySizePadding, ModalConfirmSizePadding, ModalDarkColorSchemeBackgroundMask, ModalDarkColorSchemeBodyBottomShadow, ModalDarkColorSchemeBodyTopShadow, ModalDarkColorSchemeShadow, ModalFooterSizeBorderRadius, ModalFooterSizePadding, ModalHeaderFontDefault, ModalHeaderSizeBorderRadius, ModalHeaderSizePadding, ModalLightColorSchemeBackgroundMask, ModalLightColorSchemeBodyBottomShadow, ModalLightColorSchemeBodyTopShadow, ModalLightColorSchemeShadow, ModalSizeBorderRadius, ModalSizeBorderWidth, ModalSizeCloseWidth, ModalSizeLarge, ModalSizeNormal, ModalSizeSmall, ModalSizeTop, NavbarBrandFontTitle, NavbarBrandSizeMarginRight, NavbarBrandSizePadding, NavbarDarkColorSchemeBackground, NavbarDarkColorSchemeDividerBackground, NavbarFontTitle, NavbarItemDarkColorSchemeIcon, NavbarItemDarkColorSchemeStatesActive, NavbarItemDarkColorSchemeStatesDisabledOpacity, NavbarItemDarkColorSchemeStatesHover, NavbarItemDarkColorSchemeStatesProgress, NavbarItemDarkColorSchemeText, NavbarItemLightColorSchemeIcon, NavbarItemLightColorSchemeStatesActive, NavbarItemLightColorSchemeStatesDisabledOpacity, NavbarItemLightColorSchemeStatesHover, NavbarItemLightColorSchemeStatesProgress, NavbarItemLightColorSchemeText, NavbarItemSizeHeight, NavbarItemSizeHeightVertical, NavbarItemSizePadding, NavbarLightColorSchemeBackground, NavbarLightColorSchemeDividerBackground, NavbarSizeIconMargin, OptgroupFontDefault, OptgroupSizePaddingLeft, OptionFontDefault, OptionSizeBorderWidth, OptionSizeHeight, OptionSizeHorizontalPadding, PaletteBlue100, PaletteBlue200, PaletteBlue300, PaletteBlue40, PaletteBlue400, PaletteBlue500, PaletteBlue560, PaletteBlue60, PaletteBlue600, PaletteBlue700, PaletteBlue800, PaletteBlueA100, PaletteBlueA200, PaletteBlueContrast100, PaletteBlueContrast200, PaletteBlueContrast300, PaletteBlueContrast40, PaletteBlueContrast400, PaletteBlueContrast500, PaletteBlueContrast560, PaletteBlueContrast60, PaletteBlueContrast600, PaletteBlueContrast700, PaletteBlueContrast800, PaletteBlueContrastA100, PaletteBlueContrastA200, PaletteGreen100, PaletteGreen200, PaletteGreen300, PaletteGreen40, PaletteGreen400, PaletteGreen500, PaletteGreen560, PaletteGreen60, PaletteGreen600, PaletteGreen700, PaletteGreen800, PaletteGreenA100, PaletteGreenContrast100, PaletteGreenContrast200, PaletteGreenContrast300, PaletteGreenContrast40, PaletteGreenContrast400, PaletteGreenContrast500, PaletteGreenContrast560, PaletteGreenContrast60, PaletteGreenContrast600, PaletteGreenContrast700, PaletteGreenContrast800, PaletteGreenContrastA100, PaletteGrey100, PaletteGrey200, PaletteGrey300, PaletteGrey40, PaletteGrey400, PaletteGrey500, PaletteGrey560, PaletteGrey60, PaletteGrey600, PaletteGrey700, PaletteGrey800, PaletteGreyA100, PaletteGreyA200, PaletteGreyA300, PaletteGreyA40, PaletteGreyA500, PaletteGreyA60, PaletteGreyContrast100, PaletteGreyContrast200, PaletteGreyContrast300, PaletteGreyContrast40, PaletteGreyContrast400, PaletteGreyContrast500, PaletteGreyContrast560, PaletteGreyContrast60, PaletteGreyContrast600, PaletteGreyContrast700, PaletteGreyContrast800, PaletteRed100, PaletteRed200, PaletteRed300, PaletteRed40, PaletteRed400, PaletteRed500, PaletteRed560, PaletteRed60, PaletteRed600, PaletteRed700, PaletteRed800, PaletteRedA100, PaletteRedContrast100, PaletteRedContrast200, PaletteRedContrast300, PaletteRedContrast40, PaletteRedContrast400, PaletteRedContrast500, PaletteRedContrast560, PaletteRedContrast60, PaletteRedContrast600, PaletteRedContrast700, PaletteRedContrast800, PaletteRedContrastA100, PaletteYellow100, PaletteYellow200, PaletteYellow300, PaletteYellow40, PaletteYellow400, PaletteYellow500, PaletteYellow560, PaletteYellow60, PaletteYellow600, PaletteYellow700, PaletteYellow800, PaletteYellowA100, PaletteYellowContrast100, PaletteYellowContrast200, PaletteYellowContrast300, PaletteYellowContrast40, PaletteYellowContrast400, PaletteYellowContrast500, PaletteYellowContrast560, PaletteYellowContrast60, PaletteYellowContrast600, PaletteYellowContrast700, PaletteYellowContrast800, PaletteYellowContrastA100, PopoverDarkColorSchemeBackground, PopoverDarkColorSchemeBorder, PopoverDarkColorSchemeShadow, PopoverDarkColorSchemeText, PopoverFontDefault, PopoverFooterDarkColorSchemeBackground, PopoverFooterDarkColorSchemeBorder, PopoverFooterFontDefault, PopoverFooterLightColorSchemeBackground, PopoverFooterLightColorSchemeBorder, PopoverFooterSizeHeight, PopoverFooterSizeMarginTop, PopoverFooterSizePadding, PopoverHeaderDarkColorSchemeBackground, PopoverHeaderDarkColorSchemeBorder, PopoverHeaderDarkColorSchemeText, PopoverHeaderFontDefault, PopoverHeaderLightColorSchemeBackground, PopoverHeaderLightColorSchemeBorder, PopoverHeaderLightColorSchemeText, PopoverHeaderSizeHeight, PopoverHeaderSizePadding, PopoverLightColorSchemeBackground, PopoverLightColorSchemeBorder, PopoverLightColorSchemeShadow, PopoverLightColorSchemeText, PopoverSizeArrowSize, PopoverSizeBorderRadius, PopoverSizeLargeWidth, PopoverSizeMaxHeight, PopoverSizeNormalWidth, PopoverSizePadding, PopoverSizeSmallWidth, PopoverSizeTriggerMargin, PopupDarkColorSchemeBackground, PopupDarkColorSchemeBorder, PopupDarkColorSchemeDivider, PopupDarkColorSchemeFooterBackground, PopupDarkColorSchemeShadow, PopupLightColorSchemeBackground, PopupLightColorSchemeBorder, PopupLightColorSchemeDivider, PopupLightColorSchemeFooterBackground, PopupLightColorSchemeShadow, ProgressBarDarkColorSchemeBackground, ProgressBarLightColorSchemeBackground, ProgressBarSizeHeight, ProgressSpinnerSizeSize, RadioDarkColorSchemeInnerCircleBorder, RadioDarkColorSchemeOuterCircleBorder, RadioDarkColorSchemeStatesCheckedInnerCircleBorder, RadioDarkColorSchemeStatesCheckedOuterCircleBorder, RadioDarkColorSchemeStatesFocusedInnerCircleShadow, RadioDarkColorSchemeStatesFocusedOuterCircleBorder, RadioDarkColorSchemeStatesFocusedOuterCircleShadow, RadioFontDefault, RadioLightColorSchemeInnerCircleBorder, RadioLightColorSchemeOuterCircleBorder, RadioLightColorSchemeStatesCheckedInnerCircleBorder, RadioLightColorSchemeStatesCheckedOuterCircleBorder, RadioLightColorSchemeStatesFocusedInnerCircleShadow, RadioLightColorSchemeStatesFocusedOuterCircleBorder, RadioLightColorSchemeStatesFocusedOuterCircleShadow, RadioSizeLabelMargin, RadioSizeSize, SelectFontDefault, SelectPanelFontDefault, SelectPanelSizeBorderRadius, SelectPanelSizeBorderWidth, SelectPanelSizeMaxHeight, SelectPanelSizeMaxWidth, SelectPanelSizeVerticalPadding, SelectSizeHeight, SelectSizeLeftPadding, SelectSizeLeftPaddingMultiple, SelectSizeRightPadding, SidepanelDarkColorSchemeBorder, SidepanelFontDefault, SidepanelFooterFontDefault, SidepanelFooterSizePadding, SidepanelHeaderFontDefault, SidepanelHeaderSizeClosePadding, SidepanelHeaderSizePadding, SidepanelLightColorSchemeBorder, TableFontBody, TableFontHeader, TableSizeBorderWidth, TableSizeRowPaddingHorizontal, TableSizeRowPaddingVertical, TabsDarkColorSchemeBorder, TabsDarkColorSchemeStateActive, TabsDarkColorSchemeStateDisabledOverlay, TabsFontDefault, TabsLightColorSchemeBorder, TabsLightColorSchemeStateActive, TabsLightColorSchemeStateDisabledOverlay, TabsSizeBorderRadius, TabsSizeBorderWidth, TabsSizeHeight, TabsSizeHighlightHeight, TabsSizeLabelIconMargin, TabsSizePaddingHorizontal, TagInputFontDefault, TagInputSizeHeight, TagInputSizeMargin, TagListSizeMinHeight, TagListSizePadding, TagsDarkColorSchemeErrorBackground, TagsDarkColorSchemeErrorBorder, TagsDarkColorSchemeErrorIcon, TagsDarkColorSchemeErrorStatesDisabledBackground, TagsDarkColorSchemeErrorStatesDisabledText, TagsDarkColorSchemeErrorStatesFocused, TagsDarkColorSchemeErrorStatesHoverIcon, TagsDarkColorSchemePrimaryBackground, TagsDarkColorSchemePrimaryBorder, TagsDarkColorSchemePrimaryIcon, TagsDarkColorSchemePrimaryStatesDisabledBackground, TagsDarkColorSchemePrimaryStatesDisabledText, TagsDarkColorSchemePrimaryStatesFocused, TagsDarkColorSchemePrimaryStatesHoverIcon, TagsDarkColorSchemeSecondBackground, TagsDarkColorSchemeSecondBorder, TagsDarkColorSchemeSecondIcon, TagsDarkColorSchemeSecondStatesDisabledBackground, TagsDarkColorSchemeSecondStatesDisabledText, TagsDarkColorSchemeSecondStatesFocused, TagsDarkColorSchemeSecondStatesHoverIcon, TagsFontCaps, TagsFontDefault, TagsFontMono, TagsLightColorSchemeErrorBackground, TagsLightColorSchemeErrorBorder, TagsLightColorSchemeErrorIcon, TagsLightColorSchemeErrorStatesDisabledBackground, TagsLightColorSchemeErrorStatesDisabledText, TagsLightColorSchemeErrorStatesFocused, TagsLightColorSchemeErrorStatesHoverIcon, TagsLightColorSchemePrimaryBackground, TagsLightColorSchemePrimaryBorder, TagsLightColorSchemePrimaryIcon, TagsLightColorSchemePrimaryStatesDisabledBackground, TagsLightColorSchemePrimaryStatesDisabledText, TagsLightColorSchemePrimaryStatesFocused, TagsLightColorSchemePrimaryStatesHoverIcon, TagsLightColorSchemeSecondBackground, TagsLightColorSchemeSecondBorder, TagsLightColorSchemeSecondIcon, TagsLightColorSchemeSecondStatesDisabledBackground, TagsLightColorSchemeSecondStatesDisabledText, TagsLightColorSchemeSecondStatesFocused, TagsLightColorSchemeSecondStatesHoverIcon, TagsSizeBorderRadius, TagsSizeBorderWidth, TagsSizeHeight, TagsSizeIconPadding, TagsSizeMargin, TagsSizeTextMargin, TextareaFontDefault, TextareaFontMono, TextareaSizeMinHeight, TextareaSizePadding, TimepickerSizePaddingRight, ToggleDarkColorSchemeBackground, ToggleDarkColorSchemeBorder, ToggleDarkColorSchemeCircleBackground, ToggleDarkColorSchemeCircleBorder, ToggleDarkColorSchemeStatesFocusedShadow, ToggleFontDefault, ToggleLightColorSchemeBackground, ToggleLightColorSchemeBorder, ToggleLightColorSchemeCircleBackground, ToggleLightColorSchemeCircleBorder, ToggleLightColorSchemeStatesFocusedShadow, ToggleSizeBorderRadius, ToggleSizeHeight, ToggleSizeLabelMargin, ToggleSizeWidth, ToggleSmallFontDefault, ToggleSmallSizeBorderRadius, ToggleSmallSizeHeight, ToggleSmallSizeWidth, TooltipDarkColorSchemeBackground, TooltipDarkColorSchemeBorder, TooltipDarkColorSchemeShadow, TooltipDarkColorSchemeText, TooltipDarkColorSchemeWarningBackground, TooltipDarkColorSchemeWarningBorder, TooltipDarkColorSchemeWarningText, TooltipFontDefault, TooltipLightColorSchemeBackground, TooltipLightColorSchemeBorder, TooltipLightColorSchemeShadow, TooltipLightColorSchemeText, TooltipLightColorSchemeWarningBackground, TooltipLightColorSchemeWarningBorder, TooltipLightColorSchemeWarningText, TooltipSizeArrowSize, TooltipSizeBorderRadius, TooltipSizeBorderWidth, TooltipSizeMaxWidth, TooltipSizePadding, TooltipSizeTriggerMargin, TreeFontNode, TreeSizeNodeHeight, TreeSizePaddingLeft, TreeSizePaddingRight, TypographyBodyCapsFontFamily, TypographyBodyCapsFontSize, TypographyBodyCapsFontWeight, TypographyBodyCapsLetterSpacing, TypographyBodyCapsLineHeight, TypographyBodyCapsTextTransform, TypographyBodyFontFamily, TypographyBodyFontSize, TypographyBodyFontWeight, TypographyBodyLetterSpacing, TypographyBodyLineHeight, TypographyBodyMonoFontFamily, TypographyBodyMonoFontSize, TypographyBodyMonoFontWeight, TypographyBodyMonoLetterSpacing, TypographyBodyMonoLineHeight, TypographyBodyMonoTextTransform, TypographyBodyStrongFontFamily, TypographyBodyStrongFontSize, TypographyBodyStrongFontWeight, TypographyBodyStrongLetterSpacing, TypographyBodyStrongLineHeight, TypographyBodyStrongTextTransform, TypographyBodyTextTransform, TypographyCaptionCapsFontFamily, TypographyCaptionCapsFontSize, TypographyCaptionCapsFontWeight, TypographyCaptionCapsLetterSpacing, TypographyCaptionCapsLineHeight, TypographyCaptionCapsTextTransform, TypographyCaptionFontFamily, TypographyCaptionFontSize, TypographyCaptionFontWeight, TypographyCaptionLetterSpacing, TypographyCaptionLineHeight, TypographyCaptionMonoFontFamily, TypographyCaptionMonoFontSize, TypographyCaptionMonoFontWeight, TypographyCaptionMonoLetterSpacing, TypographyCaptionMonoLineHeight, TypographyCaptionMonoTextTransform, TypographyCaptionTextTransform, TypographyDisplay1FontFamily, TypographyDisplay1FontSize, TypographyDisplay1FontWeight, TypographyDisplay1LetterSpacing, TypographyDisplay1LineHeight, TypographyDisplay1TextTransform, TypographyDisplay2FontFamily, TypographyDisplay2FontSize, TypographyDisplay2FontWeight, TypographyDisplay2LetterSpacing, TypographyDisplay2LineHeight, TypographyDisplay2TextTransform, TypographyDisplay3FontFamily, TypographyDisplay3FontSize, TypographyDisplay3FontWeight, TypographyDisplay3LetterSpacing, TypographyDisplay3LineHeight, TypographyDisplay3TextTransform, TypographyExtraSmallTextCapsFontFamily, TypographyExtraSmallTextCapsFontSize, TypographyExtraSmallTextCapsFontWeight, TypographyExtraSmallTextCapsLetterSpacing, TypographyExtraSmallTextCapsLineHeight, TypographyExtraSmallTextCapsTextTransform, TypographyExtraSmallTextFontFamily, TypographyExtraSmallTextFontSize, TypographyExtraSmallTextFontWeight, TypographyExtraSmallTextLetterSpacing, TypographyExtraSmallTextLineHeight, TypographyExtraSmallTextMonoFontFamily, TypographyExtraSmallTextMonoFontSize, TypographyExtraSmallTextMonoFontWeight, TypographyExtraSmallTextMonoLetterSpacing, TypographyExtraSmallTextMonoLineHeight, TypographyExtraSmallTextMonoTextTransform, TypographyExtraSmallTextTextTransform, TypographyHeadlineFontFamily, TypographyHeadlineFontSize, TypographyHeadlineFontWeight, TypographyHeadlineLetterSpacing, TypographyHeadlineLineHeight, TypographyHeadlineTextTransform, TypographySmallTextFontFamily, TypographySmallTextFontSize, TypographySmallTextFontWeight, TypographySmallTextLetterSpacing, TypographySmallTextLineHeight, TypographySmallTextTextTransform, TypographySubheadingFontFamily, TypographySubheadingFontSize, TypographySubheadingFontWeight, TypographySubheadingLetterSpacing, TypographySubheadingLineHeight, TypographySubheadingTextTransform, TypographyTitleFontFamily, TypographyTitleFontSize, TypographyTitleFontWeight, TypographyTitleLetterSpacing, TypographyTitleLineHeight, TypographyTitleTextTransform, VerticalNavbarSizeIconMargin, VerticalNavbarSizeStatesCollapsedWidth, VerticalNavbarSizeStatesExpandedWidth };
939
+ //# sourceMappingURL=ptsecurity-mosaic-design-tokens.mjs.map