@ng-matero/extensions 19.4.1 → 20.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (283) hide show
  1. package/_index.scss +1 -1
  2. package/alert/_alert-theme.scss +26 -31
  3. package/alert/_m2-alert.scss +59 -0
  4. package/alert/_m3-alert.scss +41 -0
  5. package/alert/alert.scss +27 -31
  6. package/alert/index.d.ts +30 -5
  7. package/button/index.d.ts +31 -5
  8. package/checkbox-group/index.d.ts +117 -5
  9. package/colorpicker/_colorpicker-theme.scss +31 -36
  10. package/{core/tokens/m2/mtx/_colorpicker.scss → colorpicker/_m2-colorpicker.scss} +6 -10
  11. package/colorpicker/_m3-colorpicker.scss +23 -0
  12. package/colorpicker/colorpicker-toggle.scss +4 -9
  13. package/colorpicker/index.d.ts +285 -3
  14. package/column-resize/index.d.ts +456 -3
  15. package/core/index.d.ts +147 -5
  16. package/core/theming/_color-api-backwards-compatibility.scss +8 -15
  17. package/core/theming/_definition.scss +81 -75
  18. package/core/theming/_palettes.scss +1036 -0
  19. package/core/tokens/{m2/_index.scss → _m2-tokens.scss} +22 -22
  20. package/core/tokens/_m2-utils.scss +108 -0
  21. package/core/tokens/_m3-system.scss +128 -106
  22. package/core/tokens/_m3-tokens.scss +36 -282
  23. package/core/tokens/_m3-utils.scss +48 -0
  24. package/core/tokens/_token-utils.scss +67 -239
  25. package/core/tokens/m3/_index.scss +7 -0
  26. package/core/tokens/m3/_md-sys-color.scss +156 -0
  27. package/core/tokens/m3/_md-sys-elevation.scss +15 -0
  28. package/core/tokens/m3/_md-sys-motion.scss +35 -0
  29. package/core/tokens/m3/_md-sys-shape.scss +21 -0
  30. package/core/tokens/m3/_md-sys-state.scss +13 -0
  31. package/core/tokens/m3/_md-sys-typescale.scss +128 -0
  32. package/core/tokens/m3/_theme.scss +47 -0
  33. package/datetimepicker/_datetimepicker-theme.scss +29 -39
  34. package/datetimepicker/_m2-datetimepicker.scss +149 -0
  35. package/datetimepicker/_m3-datetimepicker.scss +81 -0
  36. package/datetimepicker/calendar-body.scss +31 -56
  37. package/datetimepicker/calendar.scss +43 -79
  38. package/datetimepicker/clock.scss +28 -47
  39. package/datetimepicker/datetimepicker-content.scss +9 -15
  40. package/datetimepicker/datetimepicker-toggle.scss +4 -9
  41. package/datetimepicker/index.d.ts +1208 -3
  42. package/datetimepicker/time-view.scss +26 -32
  43. package/dialog/index.d.ts +54 -5
  44. package/drawer/_drawer-theme.scss +25 -30
  45. package/{core/tokens/m2/mtx/_drawer.scss → drawer/_m2-drawer.scss} +9 -12
  46. package/drawer/_m3-drawer.scss +24 -0
  47. package/drawer/drawer-container.scss +13 -24
  48. package/drawer/index.d.ts +221 -3
  49. package/fesm2022/mtxAlert.mjs +7 -7
  50. package/fesm2022/mtxAlert.mjs.map +1 -1
  51. package/fesm2022/mtxButton.mjs +11 -11
  52. package/fesm2022/mtxButton.mjs.map +1 -1
  53. package/fesm2022/mtxCheckboxGroup.mjs +7 -7
  54. package/fesm2022/mtxColorpicker.mjs +21 -21
  55. package/fesm2022/mtxColorpicker.mjs.map +1 -1
  56. package/fesm2022/mtxColumnResize.mjs +232 -103
  57. package/fesm2022/mtxColumnResize.mjs.map +1 -1
  58. package/fesm2022/mtxCore.mjs +21 -21
  59. package/fesm2022/mtxDatetimepicker.mjs +63 -67
  60. package/fesm2022/mtxDatetimepicker.mjs.map +1 -1
  61. package/fesm2022/mtxDialog.mjs +10 -10
  62. package/fesm2022/mtxDialog.mjs.map +1 -1
  63. package/fesm2022/mtxDrawer.mjs +10 -10
  64. package/fesm2022/mtxGrid.mjs +78 -77
  65. package/fesm2022/mtxGrid.mjs.map +1 -1
  66. package/fesm2022/mtxLoader.mjs +7 -7
  67. package/fesm2022/mtxPhotoviewer.mjs +7 -7
  68. package/fesm2022/mtxPopover.mjs +24 -25
  69. package/fesm2022/mtxPopover.mjs.map +1 -1
  70. package/fesm2022/mtxProgress.mjs +7 -7
  71. package/fesm2022/mtxSelect.mjs +54 -54
  72. package/fesm2022/mtxSelect.mjs.map +1 -1
  73. package/fesm2022/mtxSplit.mjs +10 -10
  74. package/fesm2022/mtxTooltip.mjs +13 -13
  75. package/fesm2022/mtxTooltip.mjs.map +1 -1
  76. package/grid/_grid-theme.scss +24 -34
  77. package/grid/_m2-grid.scss +66 -0
  78. package/grid/_m3-grid.scss +35 -0
  79. package/grid/column-menu.scss +6 -23
  80. package/grid/column-resize/_column-resize.scss +35 -30
  81. package/grid/grid.scss +41 -74
  82. package/grid/index.d.ts +799 -3
  83. package/index.d.ts +2 -5
  84. package/loader/_loader-theme.scss +26 -31
  85. package/{core/tokens/m2/mtx/_loader.scss → loader/_m2-loader.scss} +5 -10
  86. package/loader/_m3-loader.scss +20 -0
  87. package/loader/index.d.ts +43 -5
  88. package/loader/loader.scss +4 -5
  89. package/package.json +28 -28
  90. package/photoviewer/index.d.ts +26 -5
  91. package/{core/tokens/m2/mtx/_popover.scss → popover/_m2-popover.scss} +9 -12
  92. package/popover/_m3-popover.scss +26 -0
  93. package/popover/_popover-theme.scss +26 -31
  94. package/popover/index.d.ts +399 -3
  95. package/popover/popover.scss +23 -29
  96. package/prebuilt-themes/azure-blue.css +1 -1
  97. package/prebuilt-themes/cyan-orange.css +1 -1
  98. package/prebuilt-themes/deeppurple-amber.css +1 -1
  99. package/prebuilt-themes/indigo-pink.css +1 -1
  100. package/prebuilt-themes/magenta-violet.css +1 -1
  101. package/prebuilt-themes/pink-bluegrey.css +1 -1
  102. package/prebuilt-themes/purple-green.css +1 -1
  103. package/prebuilt-themes/rose-red.css +1 -1
  104. package/progress/_m2-progress.scss +53 -0
  105. package/progress/_m3-progress.scss +33 -0
  106. package/progress/_progress-theme.scss +22 -34
  107. package/progress/index.d.ts +35 -5
  108. package/progress/progress.scss +28 -43
  109. package/select/_m2-select.scss +79 -0
  110. package/select/_m3-select.scss +46 -0
  111. package/select/_select-theme.scss +27 -37
  112. package/select/index.d.ts +381 -3
  113. package/select/select.scss +189 -205
  114. package/{core/tokens/m2/mtx/_split.scss → split/_m2-split.scss} +6 -9
  115. package/split/_m3-split.scss +23 -0
  116. package/split/_split-theme.scss +31 -34
  117. package/split/index.d.ts +255 -3
  118. package/split/split.scss +8 -11
  119. package/tooltip/_m2-tooltip.scss +50 -0
  120. package/tooltip/_m3-tooltip.scss +28 -0
  121. package/tooltip/_tooltip-theme.scss +23 -47
  122. package/tooltip/index.d.ts +345 -3
  123. package/tooltip/tooltip.scss +11 -15
  124. package/alert/alert-module.d.ts +0 -8
  125. package/alert/alert.d.ts +0 -19
  126. package/alert/public-api.d.ts +0 -2
  127. package/button/button-loading.d.ts +0 -19
  128. package/button/button-module.d.ts +0 -10
  129. package/button/public-api.d.ts +0 -2
  130. package/checkbox-group/checkbox-group-module.d.ts +0 -11
  131. package/checkbox-group/checkbox-group.d.ts +0 -86
  132. package/checkbox-group/interfaces.d.ts +0 -17
  133. package/checkbox-group/public-api.d.ts +0 -3
  134. package/colorpicker/colorpicker-animations.d.ts +0 -9
  135. package/colorpicker/colorpicker-input.d.ts +0 -88
  136. package/colorpicker/colorpicker-module.d.ts +0 -15
  137. package/colorpicker/colorpicker-toggle.d.ts +0 -39
  138. package/colorpicker/colorpicker.d.ts +0 -140
  139. package/colorpicker/public-api.d.ts +0 -5
  140. package/column-resize/column-resize-directives/column-resize-flex.d.ts +0 -29
  141. package/column-resize/column-resize-directives/column-resize.d.ts +0 -29
  142. package/column-resize/column-resize-directives/constants.d.ts +0 -10
  143. package/column-resize/column-resize-module.d.ts +0 -12
  144. package/column-resize/column-resize-notifier.d.ts +0 -48
  145. package/column-resize/column-resize.d.ts +0 -39
  146. package/column-resize/column-size-store.d.ts +0 -12
  147. package/column-resize/event-dispatcher.d.ts +0 -35
  148. package/column-resize/overlay-handle.d.ts +0 -43
  149. package/column-resize/polyfill.d.ts +0 -9
  150. package/column-resize/public-api.d.ts +0 -12
  151. package/column-resize/resizable.d.ts +0 -63
  152. package/column-resize/resize-ref.d.ts +0 -17
  153. package/column-resize/resize-strategy.d.ts +0 -84
  154. package/column-resize/selectors.d.ts +0 -10
  155. package/core/datetime/datetime-adapter.d.ts +0 -45
  156. package/core/datetime/datetime-formats.d.ts +0 -22
  157. package/core/datetime/datetime.module.d.ts +0 -15
  158. package/core/datetime/index.d.ts +0 -5
  159. package/core/datetime/native-datetime-adapter.d.ts +0 -40
  160. package/core/datetime/native-datetime-formats.d.ts +0 -2
  161. package/core/pipes/index.d.ts +0 -3
  162. package/core/pipes/is-template-ref.pipe.d.ts +0 -7
  163. package/core/pipes/pipes.module.d.ts +0 -9
  164. package/core/pipes/to-observable.pipe.d.ts +0 -8
  165. package/core/public-api.d.ts +0 -2
  166. package/core/theming/_inspection.scss +0 -38
  167. package/core/theming/_validation.scss +0 -5
  168. package/core/tokens/_density.scss +0 -49
  169. package/core/tokens/_format-tokens.scss +0 -5
  170. package/core/tokens/_token-definition.scss +0 -271
  171. package/core/tokens/m2/mdc/_plain-tooltip.scss +0 -63
  172. package/core/tokens/m2/mtx/_alert.scss +0 -62
  173. package/core/tokens/m2/mtx/_datetimepicker.scss +0 -152
  174. package/core/tokens/m2/mtx/_grid.scss +0 -69
  175. package/core/tokens/m2/mtx/_progress.scss +0 -56
  176. package/core/tokens/m2/mtx/_select.scss +0 -82
  177. package/core/tokens/m3/definitions/_index.scss +0 -9
  178. package/core/tokens/m3/definitions/_md-comp-plain-tooltip.scss +0 -51
  179. package/core/tokens/m3/definitions/_md-ref-palette.scss +0 -100
  180. package/core/tokens/m3/definitions/_md-ref-typeface.scss +0 -14
  181. package/core/tokens/m3/definitions/_md-sys-color.scss +0 -126
  182. package/core/tokens/m3/definitions/_md-sys-elevation.scss +0 -15
  183. package/core/tokens/m3/definitions/_md-sys-motion.scss +0 -46
  184. package/core/tokens/m3/definitions/_md-sys-shape.scss +0 -24
  185. package/core/tokens/m3/definitions/_md-sys-state.scss +0 -13
  186. package/core/tokens/m3/definitions/_md-sys-typescale.scss +0 -308
  187. package/core/tokens/m3/index.scss +0 -47
  188. package/core/tokens/m3/mdc/_plain-tooltip.scss +0 -15
  189. package/core/tokens/m3/mtx/_alert.scss +0 -41
  190. package/core/tokens/m3/mtx/_colorpicker.scss +0 -19
  191. package/core/tokens/m3/mtx/_datetimepicker.scss +0 -140
  192. package/core/tokens/m3/mtx/_drawer.scss +0 -22
  193. package/core/tokens/m3/mtx/_grid.scss +0 -32
  194. package/core/tokens/m3/mtx/_loader.scss +0 -22
  195. package/core/tokens/m3/mtx/_popover.scss +0 -25
  196. package/core/tokens/m3/mtx/_progress.scss +0 -32
  197. package/core/tokens/m3/mtx/_select.scss +0 -76
  198. package/core/tokens/m3/mtx/_split.scss +0 -30
  199. package/datetimepicker/calendar-body.d.ts +0 -66
  200. package/datetimepicker/calendar.d.ts +0 -157
  201. package/datetimepicker/clock.d.ts +0 -101
  202. package/datetimepicker/datetimepicker-actions.d.ts +0 -36
  203. package/datetimepicker/datetimepicker-animations.d.ts +0 -11
  204. package/datetimepicker/datetimepicker-errors.d.ts +0 -2
  205. package/datetimepicker/datetimepicker-filtertype.d.ts +0 -5
  206. package/datetimepicker/datetimepicker-input.d.ts +0 -105
  207. package/datetimepicker/datetimepicker-intl.d.ts +0 -53
  208. package/datetimepicker/datetimepicker-module.d.ts +0 -22
  209. package/datetimepicker/datetimepicker-toggle.d.ts +0 -42
  210. package/datetimepicker/datetimepicker-types.d.ts +0 -6
  211. package/datetimepicker/datetimepicker.d.ts +0 -274
  212. package/datetimepicker/month-view.d.ts +0 -80
  213. package/datetimepicker/multi-year-view.d.ts +0 -86
  214. package/datetimepicker/public-api.d.ts +0 -16
  215. package/datetimepicker/time-view.d.ts +0 -147
  216. package/datetimepicker/year-view.d.ts +0 -68
  217. package/dialog/dialog-config.d.ts +0 -17
  218. package/dialog/dialog-container.d.ts +0 -11
  219. package/dialog/dialog-module.d.ts +0 -12
  220. package/dialog/dialog.d.ts +0 -15
  221. package/dialog/public-api.d.ts +0 -4
  222. package/drawer/drawer-animations.d.ts +0 -8
  223. package/drawer/drawer-config.d.ts +0 -63
  224. package/drawer/drawer-container.d.ts +0 -35
  225. package/drawer/drawer-module.d.ts +0 -10
  226. package/drawer/drawer-ref.d.ts +0 -53
  227. package/drawer/drawer.d.ts +0 -59
  228. package/drawer/public-api.d.ts +0 -6
  229. package/grid/cell.d.ts +0 -32
  230. package/grid/column-menu.d.ts +0 -39
  231. package/grid/column-resize/column-resize-directives/column-resize-flex.d.ts +0 -24
  232. package/grid/column-resize/column-resize-directives/column-resize.d.ts +0 -24
  233. package/grid/column-resize/column-resize-directives/common.d.ts +0 -13
  234. package/grid/column-resize/column-resize-module.d.ts +0 -17
  235. package/grid/column-resize/index.d.ts +0 -7
  236. package/grid/column-resize/overlay-handle.d.ts +0 -32
  237. package/grid/column-resize/resizable-directives/common.d.ts +0 -19
  238. package/grid/column-resize/resizable-directives/resizable.d.ts +0 -32
  239. package/grid/column-resize/resize-strategy.d.ts +0 -20
  240. package/grid/expansion-toggle.d.ts +0 -17
  241. package/grid/grid-module.d.ts +0 -31
  242. package/grid/grid-pipes.d.ts +0 -39
  243. package/grid/grid-utils.d.ts +0 -33
  244. package/grid/grid.d.ts +0 -268
  245. package/grid/interfaces.d.ts +0 -180
  246. package/grid/public-api.d.ts +0 -17
  247. package/grid/selectable-cell.d.ts +0 -16
  248. package/loader/loader-module.d.ts +0 -10
  249. package/loader/loader.d.ts +0 -30
  250. package/loader/public-api.d.ts +0 -2
  251. package/photoviewer/photoviewer-module.d.ts +0 -7
  252. package/photoviewer/photoviewer.d.ts +0 -17
  253. package/photoviewer/public-api.d.ts +0 -2
  254. package/popover/popover-animations.d.ts +0 -11
  255. package/popover/popover-content.d.ts +0 -43
  256. package/popover/popover-errors.d.ts +0 -14
  257. package/popover/popover-interfaces.d.ts +0 -50
  258. package/popover/popover-module.d.ts +0 -13
  259. package/popover/popover-target.d.ts +0 -7
  260. package/popover/popover-trigger.d.ts +0 -132
  261. package/popover/popover-types.d.ts +0 -10
  262. package/popover/popover.d.ts +0 -147
  263. package/popover/public-api.d.ts +0 -8
  264. package/progress/progress-module.d.ts +0 -8
  265. package/progress/progress.d.ts +0 -24
  266. package/progress/public-api.d.ts +0 -2
  267. package/public-api.d.ts +0 -2
  268. package/select/option.d.ts +0 -21
  269. package/select/public-api.d.ts +0 -5
  270. package/select/select-intl.d.ts +0 -18
  271. package/select/select-module.d.ts +0 -12
  272. package/select/select.d.ts +0 -270
  273. package/select/templates.d.ts +0 -67
  274. package/split/interfaces.d.ts +0 -52
  275. package/split/public-api.d.ts +0 -5
  276. package/split/split-module.d.ts +0 -9
  277. package/split/split-pane.d.ts +0 -53
  278. package/split/split.d.ts +0 -133
  279. package/split/utils.d.ts +0 -13
  280. package/tooltip/public-api.d.ts +0 -3
  281. package/tooltip/tooltip-animations.d.ts +0 -9
  282. package/tooltip/tooltip-module.d.ts +0 -13
  283. package/tooltip/tooltip.d.ts +0 -321
@@ -0,0 +1,1036 @@
1
+ @use 'sass:map';
2
+
3
+ /// Adds the error colors to the given palette.
4
+ @function _patch-error-palette($palette) {
5
+ @return map.merge(
6
+ $palette,
7
+ (
8
+ error: (
9
+ 0: #000000,
10
+ 10: #410002,
11
+ 20: #690005,
12
+ 25: #7e0007,
13
+ 30: #93000a,
14
+ 35: #a80710,
15
+ 40: #ba1a1a,
16
+ 50: #de3730,
17
+ 60: #ff5449,
18
+ 70: #ff897d,
19
+ 80: #ffb4ab,
20
+ 90: #ffdad6,
21
+ 95: #ffedea,
22
+ 98: #fff8f7,
23
+ 99: #fffbff,
24
+ 100: #ffffff,
25
+ ),
26
+ )
27
+ );
28
+ }
29
+
30
+ /// Red color palette to be used as primary or tertiary palette.
31
+ $red-palette: _patch-error-palette((
32
+ 0: #000,
33
+ 10: #410000,
34
+ 20: #690100,
35
+ 25: #7e0100,
36
+ 30: #930100,
37
+ 35: #a90100,
38
+ 40: #c00100,
39
+ 50: #ef0000,
40
+ 60: #ff5540,
41
+ 70: #ff8a78,
42
+ 80: #ffb4a8,
43
+ 90: #ffdad4,
44
+ 95: #ffedea,
45
+ 98: #fff8f6,
46
+ 99: #fffbff,
47
+ 100: #fff,
48
+ secondary: (
49
+ 0: #000,
50
+ 10: #2c1512,
51
+ 20: #442925,
52
+ 25: #513430,
53
+ 30: #5d3f3b,
54
+ 35: #6a4b46,
55
+ 40: #775651,
56
+ 50: #926f69,
57
+ 60: #ae8882,
58
+ 70: #caa29c,
59
+ 80: #e7bdb6,
60
+ 90: #ffdad4,
61
+ 95: #ffedea,
62
+ 98: #fff8f6,
63
+ 99: #fffbff,
64
+ 100: #fff,
65
+ ),
66
+ neutral: (
67
+ 0: #000,
68
+ 10: #201a19,
69
+ 20: #362f2e,
70
+ 25: #413a38,
71
+ 30: #4d4544,
72
+ 35: #59504f,
73
+ 40: #655c5b,
74
+ 50: #7f7573,
75
+ 60: #998e8d,
76
+ 70: #b4a9a7,
77
+ 80: #d0c4c2,
78
+ 90: #ede0dd,
79
+ 95: #fbeeec,
80
+ 98: #fff8f6,
81
+ 99: #fffbff,
82
+ 100: #fff,
83
+ 4: #130d0c,
84
+ 6: #181211,
85
+ 12: #251e1d,
86
+ 17: #302828,
87
+ 22: #3b3332,
88
+ 24: #3f3737,
89
+ 87: #e4d7d6,
90
+ 92: #f3e5e4,
91
+ 94: #f9ebe9,
92
+ 96: #fef1ef,
93
+ ),
94
+ neutral-variant: (
95
+ 0: #000,
96
+ 10: #251917,
97
+ 20: #3b2d2b,
98
+ 25: #473836,
99
+ 30: #534341,
100
+ 35: #5f4f4c,
101
+ 40: #6c5a58,
102
+ 50: #857370,
103
+ 60: #a08c89,
104
+ 70: #bca7a3,
105
+ 80: #d8c2be,
106
+ 90: #f5ddda,
107
+ 95: #ffedea,
108
+ 98: #fff8f6,
109
+ 99: #fffbff,
110
+ 100: #fff,
111
+ ),
112
+ ));
113
+
114
+ /// Green color palette to be used as primary or tertiary palette.
115
+ $green-palette: _patch-error-palette((
116
+ 0: #000,
117
+ 10: #020,
118
+ 20: #013a00,
119
+ 25: #014600,
120
+ 30: #015300,
121
+ 35: #026100,
122
+ 40: #026e00,
123
+ 50: #038b00,
124
+ 60: #03a800,
125
+ 70: #03c700,
126
+ 80: #02e600,
127
+ 90: #77ff61,
128
+ 95: #cbffb8,
129
+ 98: #edffe1,
130
+ 99: #f7ffee,
131
+ 100: #fff,
132
+ secondary: (
133
+ 0: #000,
134
+ 10: #121f0e,
135
+ 20: #263422,
136
+ 25: #313f2c,
137
+ 30: #3c4b37,
138
+ 35: #485642,
139
+ 40: #54634d,
140
+ 50: #6c7b65,
141
+ 60: #86957e,
142
+ 70: #a0b097,
143
+ 80: #bbcbb2,
144
+ 90: #d7e8cd,
145
+ 95: #e5f6da,
146
+ 98: #eeffe3,
147
+ 99: #f7ffee,
148
+ 100: #fff,
149
+ ),
150
+ neutral: (
151
+ 0: #000,
152
+ 10: #1a1c18,
153
+ 20: #2f312d,
154
+ 25: #3a3c38,
155
+ 30: #454743,
156
+ 35: #51534e,
157
+ 40: #5d5f5a,
158
+ 50: #767872,
159
+ 60: #90918c,
160
+ 70: #abaca6,
161
+ 80: #c6c7c1,
162
+ 90: #e2e3dc,
163
+ 95: #f1f1eb,
164
+ 98: #f9faf3,
165
+ 99: #fcfdf6,
166
+ 100: #fff,
167
+ 4: #0c0f0b,
168
+ 6: #121410,
169
+ 12: #1e201c,
170
+ 17: #282b26,
171
+ 22: #333531,
172
+ 24: #383a35,
173
+ 87: #dadbd3,
174
+ 92: #e8e9e1,
175
+ 94: #eeeee7,
176
+ 96: #f3f4ed,
177
+ ),
178
+ neutral-variant: (
179
+ 0: #000,
180
+ 10: #181d15,
181
+ 20: #2c3229,
182
+ 25: #373d34,
183
+ 30: #43483f,
184
+ 35: #4e544a,
185
+ 40: #5a6056,
186
+ 50: #73796e,
187
+ 60: #8d9387,
188
+ 70: #a7ada1,
189
+ 80: #c3c8bc,
190
+ 90: #dfe4d7,
191
+ 95: #edf3e5,
192
+ 98: #f6fbee,
193
+ 99: #f9fef1,
194
+ 100: #fff,
195
+ ),
196
+ ));
197
+
198
+ /// Blue color palette to be used as primary or tertiary palette.
199
+ $blue-palette: _patch-error-palette((
200
+ 0: #000,
201
+ 10: #00006e,
202
+ 20: #0001ac,
203
+ 25: #0001cd,
204
+ 30: #0000ef,
205
+ 35: #1a21ff,
206
+ 40: #343dff,
207
+ 50: #5a64ff,
208
+ 60: #7c84ff,
209
+ 70: #9da3ff,
210
+ 80: #bec2ff,
211
+ 90: #e0e0ff,
212
+ 95: #f1efff,
213
+ 98: #fbf8ff,
214
+ 99: #fffbff,
215
+ 100: #fff,
216
+ secondary: (
217
+ 0: #000,
218
+ 10: #191a2c,
219
+ 20: #2e2f42,
220
+ 25: #393a4d,
221
+ 30: #444559,
222
+ 35: #505165,
223
+ 40: #5c5d72,
224
+ 50: #75758b,
225
+ 60: #8f8fa6,
226
+ 70: #a9a9c1,
227
+ 80: #c5c4dd,
228
+ 90: #e1e0f9,
229
+ 95: #f1efff,
230
+ 98: #fbf8ff,
231
+ 99: #fffbff,
232
+ 100: #fff,
233
+ ),
234
+ neutral: (
235
+ 0: #000,
236
+ 10: #1b1b1f,
237
+ 20: #303034,
238
+ 25: #3c3b3f,
239
+ 30: #47464a,
240
+ 35: #535256,
241
+ 40: #5f5e62,
242
+ 50: #78767a,
243
+ 60: #929094,
244
+ 70: #adaaaf,
245
+ 80: #c8c5ca,
246
+ 90: #e5e1e6,
247
+ 95: #f3eff4,
248
+ 98: #fcf8fd,
249
+ 99: #fffbff,
250
+ 100: #fff,
251
+ 4: #0e0e11,
252
+ 6: #131316,
253
+ 12: #201f22,
254
+ 17: #2a292d,
255
+ 22: #353438,
256
+ 24: #3a393c,
257
+ 87: #dcd9dd,
258
+ 92: #ebe7eb,
259
+ 94: #f0edf1,
260
+ 96: #f6f2f7,
261
+ ),
262
+ neutral-variant: (
263
+ 0: #000,
264
+ 10: #1b1b23,
265
+ 20: #303038,
266
+ 25: #3b3b43,
267
+ 30: #46464f,
268
+ 35: #52515b,
269
+ 40: #5e5d67,
270
+ 50: #777680,
271
+ 60: #91909a,
272
+ 70: #acaab4,
273
+ 80: #c7c5d0,
274
+ 90: #e4e1ec,
275
+ 95: #f2effa,
276
+ 98: #fbf8ff,
277
+ 99: #fffbff,
278
+ 100: #fff,
279
+ ),
280
+ ));
281
+
282
+ /// Yellow color palette to be used as primary or tertiary palette.
283
+ $yellow-palette: _patch-error-palette((
284
+ 0: #000,
285
+ 10: #1d1d00,
286
+ 20: #323200,
287
+ 25: #3e3e00,
288
+ 30: #494900,
289
+ 35: #550,
290
+ 40: #626200,
291
+ 50: #7b7b00,
292
+ 60: #969600,
293
+ 70: #b1b100,
294
+ 80: #cdcd00,
295
+ 90: #eaea00,
296
+ 95: #f9f900,
297
+ 98: #fffeac,
298
+ 99: #fffbff,
299
+ 100: #fff,
300
+ secondary: (
301
+ 0: #000,
302
+ 10: #1d1d06,
303
+ 20: #323218,
304
+ 25: #3d3d22,
305
+ 30: #49482d,
306
+ 35: #545438,
307
+ 40: #606043,
308
+ 50: #7a795a,
309
+ 60: #949272,
310
+ 70: #aead8b,
311
+ 80: #cac8a5,
312
+ 90: #e7e4bf,
313
+ 95: #f5f3cd,
314
+ 98: #fefbd5,
315
+ 99: #fffbff,
316
+ 100: #fff,
317
+ ),
318
+ neutral: (
319
+ 0: #000,
320
+ 10: #1c1c17,
321
+ 20: #31312b,
322
+ 25: #3c3c35,
323
+ 30: #484741,
324
+ 35: #54524c,
325
+ 40: #605e58,
326
+ 50: #797770,
327
+ 60: #939189,
328
+ 70: #aeaba3,
329
+ 80: #c9c6be,
330
+ 90: #e6e2d9,
331
+ 95: #f4f0e8,
332
+ 98: #fdf9f0,
333
+ 99: #fffbff,
334
+ 100: #fff,
335
+ 4: #0f0e0a,
336
+ 6: #14140f,
337
+ 12: #20201b,
338
+ 17: #2b2a25,
339
+ 22: #36352f,
340
+ 24: #3a3933,
341
+ 87: #dddad1,
342
+ 92: #ece8df,
343
+ 94: #f1ede5,
344
+ 96: #f7f3ea,
345
+ ),
346
+ neutral-variant: (
347
+ 0: #000,
348
+ 10: #1c1c11,
349
+ 20: #313125,
350
+ 25: #3d3c2f,
351
+ 30: #48473a,
352
+ 35: #545345,
353
+ 40: #605f51,
354
+ 50: #797869,
355
+ 60: #939182,
356
+ 70: #aeac9b,
357
+ 80: #cac7b6,
358
+ 90: #e6e3d1,
359
+ 95: #f4f1df,
360
+ 98: #fdfae7,
361
+ 99: #fffbff,
362
+ 100: #fff,
363
+ ),
364
+ ));
365
+
366
+ /// Cyan color palette to be used as primary or tertiary palette.
367
+ $cyan-palette: _patch-error-palette((
368
+ 0: #000,
369
+ 10: #002020,
370
+ 20: #003737,
371
+ 25: #004343,
372
+ 30: #004f4f,
373
+ 35: #005c5c,
374
+ 40: #006a6a,
375
+ 50: #008585,
376
+ 60: #00a1a1,
377
+ 70: #00bebe,
378
+ 80: #0dd,
379
+ 90: #00fbfb,
380
+ 95: #adfffe,
381
+ 98: #e2fffe,
382
+ 99: #f1fffe,
383
+ 100: #fff,
384
+ secondary: (
385
+ 0: #000,
386
+ 10: #051f1f,
387
+ 20: #1b3534,
388
+ 25: #27403f,
389
+ 30: #324b4b,
390
+ 35: #3e5757,
391
+ 40: #4a6363,
392
+ 50: #627c7b,
393
+ 60: #7b9695,
394
+ 70: #95b0b0,
395
+ 80: #b0cccb,
396
+ 90: #cce8e7,
397
+ 95: #daf6f5,
398
+ 98: #e3fffe,
399
+ 99: #f1fffe,
400
+ 100: #fff,
401
+ ),
402
+ neutral: (
403
+ 0: #000,
404
+ 10: #191c1c,
405
+ 20: #2d3131,
406
+ 25: #383c3c,
407
+ 30: #444747,
408
+ 35: #4f5353,
409
+ 40: #5b5f5f,
410
+ 50: #747877,
411
+ 60: #8e9191,
412
+ 70: #a9acab,
413
+ 80: #c4c7c6,
414
+ 90: #e0e3e2,
415
+ 95: #eff1f0,
416
+ 98: #f7faf9,
417
+ 99: #fafdfc,
418
+ 100: #fff,
419
+ 4: #0b0f0e,
420
+ 6: #101414,
421
+ 12: #1c2020,
422
+ 17: #272b2a,
423
+ 22: #313635,
424
+ 24: #363a39,
425
+ 87: #d7dbd9,
426
+ 92: #e6e9e7,
427
+ 94: #ebefed,
428
+ 96: #f1f4f3,
429
+ ),
430
+ neutral-variant: (
431
+ 0: #000,
432
+ 10: #141d1d,
433
+ 20: #293232,
434
+ 25: #343d3d,
435
+ 30: #3f4948,
436
+ 35: #4a5454,
437
+ 40: #566060,
438
+ 50: #6f7979,
439
+ 60: #889392,
440
+ 70: #a3adad,
441
+ 80: #bec9c8,
442
+ 90: #dae5e4,
443
+ 95: #e9f3f2,
444
+ 98: #f1fbfa,
445
+ 99: #f4fefd,
446
+ 100: #fff,
447
+ ),
448
+ ));
449
+
450
+ /// Magenta color palette to be used as primary or tertiary palette.
451
+ $magenta-palette: _patch-error-palette((
452
+ 0: #000,
453
+ 10: #380038,
454
+ 20: #5b005b,
455
+ 25: #6e006e,
456
+ 30: #810081,
457
+ 35: #950094,
458
+ 40: #a900a9,
459
+ 50: #d200d2,
460
+ 60: #fe00fe,
461
+ 70: #ff76f6,
462
+ 80: #ffabf3,
463
+ 90: #ffd7f5,
464
+ 95: #ffebf8,
465
+ 98: #fff7f9,
466
+ 99: #fffbff,
467
+ 100: #fff,
468
+ secondary: (
469
+ 0: #000,
470
+ 10: #271624,
471
+ 20: #3d2b3a,
472
+ 25: #493545,
473
+ 30: #554151,
474
+ 35: #614c5d,
475
+ 40: #6e5869,
476
+ 50: #877082,
477
+ 60: #a2899c,
478
+ 70: #bea4b7,
479
+ 80: #dabfd2,
480
+ 90: #f7daef,
481
+ 95: #ffebf8,
482
+ 98: #fff7f9,
483
+ 99: #fffbff,
484
+ 100: #fff,
485
+ ),
486
+ neutral: (
487
+ 0: #000,
488
+ 10: #1e1a1d,
489
+ 20: #342f32,
490
+ 25: #3f3a3d,
491
+ 30: #4b4548,
492
+ 35: #575154,
493
+ 40: #635d60,
494
+ 50: #7c7579,
495
+ 60: #968f92,
496
+ 70: #b1a9ad,
497
+ 80: #cdc4c8,
498
+ 90: #e9e0e4,
499
+ 95: #f8eef2,
500
+ 98: #fff7f9,
501
+ 99: #fffbff,
502
+ 100: #fff,
503
+ 4: #110d10,
504
+ 6: #161215,
505
+ 12: #231e22,
506
+ 17: #2d292c,
507
+ 22: #383337,
508
+ 24: #3d383b,
509
+ 87: #e1d7dc,
510
+ 92: #efe6ea,
511
+ 94: #f5ebf0,
512
+ 96: #fbf1f5,
513
+ ),
514
+ neutral-variant: (
515
+ 0: #000,
516
+ 10: #21191f,
517
+ 20: #372e34,
518
+ 25: #423940,
519
+ 30: #4e444b,
520
+ 35: #5a4f57,
521
+ 40: #665b63,
522
+ 50: #80747c,
523
+ 60: #9a8d95,
524
+ 70: #b5a7b0,
525
+ 80: #d1c2cb,
526
+ 90: #eedee7,
527
+ 95: #fcecf5,
528
+ 98: #fff7f9,
529
+ 99: #fffbff,
530
+ 100: #fff,
531
+ ),
532
+ ));
533
+
534
+ /// Orange color palette to be used as primary or tertiary palette.
535
+ $orange-palette: _patch-error-palette((
536
+ 0: #000,
537
+ 10: #311300,
538
+ 20: #502400,
539
+ 25: #612d00,
540
+ 30: #723600,
541
+ 35: #843f00,
542
+ 40: #964900,
543
+ 50: #bc5d00,
544
+ 60: #e37100,
545
+ 70: #ff8e36,
546
+ 80: #ffb787,
547
+ 90: #ffdcc7,
548
+ 95: #ffede4,
549
+ 98: #fff8f5,
550
+ 99: #fffbff,
551
+ 100: #fff,
552
+ secondary: (
553
+ 0: #000,
554
+ 10: #2b1708,
555
+ 20: #422b1b,
556
+ 25: #4f3625,
557
+ 30: #5b4130,
558
+ 35: #684c3b,
559
+ 40: #755846,
560
+ 50: #90715d,
561
+ 60: #ab8a75,
562
+ 70: #c8a48e,
563
+ 80: #e5bfa8,
564
+ 90: #ffdcc7,
565
+ 95: #ffede4,
566
+ 98: #fff8f5,
567
+ 99: #fffbff,
568
+ 100: #fff,
569
+ ),
570
+ neutral: (
571
+ 0: #000,
572
+ 10: #201a17,
573
+ 20: #362f2b,
574
+ 25: #413a36,
575
+ 30: #4d4541,
576
+ 35: #59514d,
577
+ 40: #655d58,
578
+ 50: #7e7571,
579
+ 60: #998f8a,
580
+ 70: #b4a9a4,
581
+ 80: #d0c4bf,
582
+ 90: #ece0da,
583
+ 95: #fbeee8,
584
+ 98: #fff8f5,
585
+ 99: #fffbff,
586
+ 100: #fff,
587
+ 4: #120d0b,
588
+ 6: #181210,
589
+ 12: #241e1b,
590
+ 17: #2f2926,
591
+ 22: #3a3330,
592
+ 24: #3f3834,
593
+ 87: #e3d8d3,
594
+ 92: #f2e6e1,
595
+ 94: #f8ebe6,
596
+ 96: #fef1ec,
597
+ ),
598
+ neutral-variant: (
599
+ 0: #000,
600
+ 10: #241912,
601
+ 20: #3a2e26,
602
+ 25: #463931,
603
+ 30: #52443c,
604
+ 35: #5e4f47,
605
+ 40: #6b5b52,
606
+ 50: #84746a,
607
+ 60: #9f8d83,
608
+ 70: #baa79d,
609
+ 80: #d7c3b8,
610
+ 90: #f4ded3,
611
+ 95: #ffede4,
612
+ 98: #fff8f5,
613
+ 99: #fffbff,
614
+ 100: #fff,
615
+ ),
616
+ ));
617
+
618
+ /// Chartreuse color palette to be used as primary or tertiary palette.
619
+ $chartreuse-palette: _patch-error-palette((
620
+ 0: #000,
621
+ 10: #0b2000,
622
+ 20: #173800,
623
+ 25: #1e4400,
624
+ 30: #245100,
625
+ 35: #2b5e00,
626
+ 40: #326b00,
627
+ 50: #418700,
628
+ 60: #50a400,
629
+ 70: #60c100,
630
+ 80: #70e000,
631
+ 90: #82ff10,
632
+ 95: #cfffa9,
633
+ 98: #eeffdc,
634
+ 99: #f8ffeb,
635
+ 100: #fff,
636
+ secondary: (
637
+ 0: #000,
638
+ 10: #141e0c,
639
+ 20: #293420,
640
+ 25: #333f2a,
641
+ 30: #3f4a35,
642
+ 35: #4a5640,
643
+ 40: #56624b,
644
+ 50: #6f7b62,
645
+ 60: #88957b,
646
+ 70: #a2b094,
647
+ 80: #becbaf,
648
+ 90: #dae7ca,
649
+ 95: #e8f5d7,
650
+ 98: #f0fee0,
651
+ 99: #f8ffeb,
652
+ 100: #fff,
653
+ ),
654
+ neutral: (
655
+ 0: #000,
656
+ 10: #1a1c18,
657
+ 20: #2f312c,
658
+ 25: #3a3c37,
659
+ 30: #464742,
660
+ 35: #52534e,
661
+ 40: #5e5f5a,
662
+ 50: #767872,
663
+ 60: #90918b,
664
+ 70: #abaca5,
665
+ 80: #c7c7c0,
666
+ 90: #e3e3dc,
667
+ 95: #f1f1ea,
668
+ 98: #fafaf2,
669
+ 99: #fdfdf5,
670
+ 100: #fff,
671
+ 4: #0c0f0b,
672
+ 6: #121410,
673
+ 12: #1e201c,
674
+ 17: #282b26,
675
+ 22: #333531,
676
+ 24: #383a35,
677
+ 87: #dadbd3,
678
+ 92: #e8e9e1,
679
+ 94: #eeeee7,
680
+ 96: #f3f4ed,
681
+ ),
682
+ neutral-variant: (
683
+ 0: #000,
684
+ 10: #181d14,
685
+ 20: #2d3228,
686
+ 25: #383d33,
687
+ 30: #44483e,
688
+ 35: #4f5449,
689
+ 40: #5b6055,
690
+ 50: #74796d,
691
+ 60: #8e9286,
692
+ 70: #a8ada0,
693
+ 80: #c4c8bb,
694
+ 90: #e0e4d6,
695
+ 95: #eef2e4,
696
+ 98: #f7fbec,
697
+ 99: #fafeef,
698
+ 100: #fff,
699
+ ),
700
+ ));
701
+
702
+ /// Spring Green color palette to be used as primary or tertiary palette.
703
+ $spring-green-palette: _patch-error-palette((
704
+ 0: #000,
705
+ 10: #00210b,
706
+ 20: #003917,
707
+ 25: #00461e,
708
+ 30: #005225,
709
+ 35: #00602c,
710
+ 40: #006d33,
711
+ 50: #008942,
712
+ 60: #00a751,
713
+ 70: #00c561,
714
+ 80: #00e472,
715
+ 90: #63ff94,
716
+ 95: #c4ffcb,
717
+ 98: #eaffe9,
718
+ 99: #f5fff2,
719
+ 100: #fff,
720
+ secondary: (
721
+ 0: #000,
722
+ 10: #0e1f12,
723
+ 20: #233425,
724
+ 25: #2e4030,
725
+ 30: #394b3b,
726
+ 35: #445746,
727
+ 40: #506352,
728
+ 50: #697c6a,
729
+ 60: #829682,
730
+ 70: #9cb19c,
731
+ 80: #b7ccb7,
732
+ 90: #d3e8d2,
733
+ 95: #e1f6e0,
734
+ 98: #eaffe9,
735
+ 99: #f5fff2,
736
+ 100: #fff,
737
+ ),
738
+ neutral: (
739
+ 0: #000,
740
+ 10: #191c19,
741
+ 20: #2e312e,
742
+ 25: #393c39,
743
+ 30: #454744,
744
+ 35: #51534f,
745
+ 40: #5d5f5b,
746
+ 50: #757873,
747
+ 60: #8f918d,
748
+ 70: #aaaca7,
749
+ 80: #c5c7c2,
750
+ 90: #e2e3de,
751
+ 95: #f0f1ec,
752
+ 98: #f9faf4,
753
+ 99: #fcfdf7,
754
+ 100: #fff,
755
+ 4: #0c0f0c,
756
+ 6: #111411,
757
+ 12: #1d201d,
758
+ 17: #282b27,
759
+ 22: #323632,
760
+ 24: #373a36,
761
+ 87: #d9dbd5,
762
+ 92: #e7e9e3,
763
+ 94: #edefe8,
764
+ 96: #f2f4ee,
765
+ ),
766
+ neutral-variant: (
767
+ 0: #000,
768
+ 10: #161d17,
769
+ 20: #2b322b,
770
+ 25: #363d36,
771
+ 30: #414941,
772
+ 35: #4d544c,
773
+ 40: #596058,
774
+ 50: #717970,
775
+ 60: #8b9389,
776
+ 70: #a6ada4,
777
+ 80: #c1c9be,
778
+ 90: #dde5da,
779
+ 95: #ebf3e8,
780
+ 98: #f4fcf0,
781
+ 99: #f7fef3,
782
+ 100: #fff,
783
+ ),
784
+ ));
785
+
786
+ /// Azure color palette to be used as primary or tertiary palette.
787
+ $azure-palette: _patch-error-palette((
788
+ 0: #000,
789
+ 10: #001b3f,
790
+ 20: #002f65,
791
+ 25: #003a7a,
792
+ 30: #00458f,
793
+ 35: #0050a5,
794
+ 40: #005cbb,
795
+ 50: #0074e9,
796
+ 60: #438fff,
797
+ 70: #7cabff,
798
+ 80: #abc7ff,
799
+ 90: #d7e3ff,
800
+ 95: #ecf0ff,
801
+ 98: #f9f9ff,
802
+ 99: #fdfbff,
803
+ 100: #fff,
804
+ secondary: (
805
+ 0: #000,
806
+ 10: #131c2b,
807
+ 20: #283041,
808
+ 25: #333c4d,
809
+ 30: #3e4759,
810
+ 35: #4a5365,
811
+ 40: #565e71,
812
+ 50: #6f778b,
813
+ 60: #8891a5,
814
+ 70: #a3abc0,
815
+ 80: #bec6dc,
816
+ 90: #dae2f9,
817
+ 95: #ecf0ff,
818
+ 98: #f9f9ff,
819
+ 99: #fdfbff,
820
+ 100: #fff,
821
+ ),
822
+ neutral: (
823
+ 0: #000,
824
+ 10: #1a1b1f,
825
+ 20: #2f3033,
826
+ 25: #3b3b3f,
827
+ 30: #46464a,
828
+ 35: #525256,
829
+ 40: #5e5e62,
830
+ 50: #77777a,
831
+ 60: #919094,
832
+ 70: #ababaf,
833
+ 80: #c7c6ca,
834
+ 90: #e3e2e6,
835
+ 95: #f2f0f4,
836
+ 98: #faf9fd,
837
+ 99: #fdfbff,
838
+ 100: #fff,
839
+ 4: #0d0e11,
840
+ 6: #121316,
841
+ 12: #1f2022,
842
+ 17: #292a2c,
843
+ 22: #343537,
844
+ 24: #38393c,
845
+ 87: #dbd9dd,
846
+ 92: #e9e7eb,
847
+ 94: #efedf0,
848
+ 96: #f4f3f6,
849
+ ),
850
+ neutral-variant: (
851
+ 0: #000,
852
+ 10: #181c22,
853
+ 20: #2d3038,
854
+ 25: #383b43,
855
+ 30: #44474e,
856
+ 35: #4f525a,
857
+ 40: #5b5e66,
858
+ 50: #74777f,
859
+ 60: #8e9099,
860
+ 70: #a9abb4,
861
+ 80: #c4c6d0,
862
+ 90: #e0e2ec,
863
+ 95: #eff0fa,
864
+ 98: #f9f9ff,
865
+ 99: #fdfbff,
866
+ 100: #fff,
867
+ ),
868
+ ));
869
+
870
+ /// Violet color palette to be used as primary or tertiary palette.
871
+ $violet-palette: _patch-error-palette((
872
+ 0: #000,
873
+ 10: #270057,
874
+ 20: #42008a,
875
+ 25: #5000a4,
876
+ 30: #5f00c0,
877
+ 35: #6e00dc,
878
+ 40: #7d00fa,
879
+ 50: #944aff,
880
+ 60: #a974ff,
881
+ 70: #bf98ff,
882
+ 80: #d5baff,
883
+ 90: #ecdcff,
884
+ 95: #f7edff,
885
+ 98: #fef7ff,
886
+ 99: #fffbff,
887
+ 100: #fff,
888
+ secondary: (
889
+ 0: #000,
890
+ 10: #1f182a,
891
+ 20: #352d40,
892
+ 25: #40384c,
893
+ 30: #4b4357,
894
+ 35: #574f63,
895
+ 40: #645b70,
896
+ 50: #7d7389,
897
+ 60: #978ca4,
898
+ 70: #b2a7bf,
899
+ 80: #cec2db,
900
+ 90: #eadef7,
901
+ 95: #f7edff,
902
+ 98: #fef7ff,
903
+ 99: #fffbff,
904
+ 100: #fff,
905
+ ),
906
+ neutral: (
907
+ 0: #000,
908
+ 10: #1d1b1e,
909
+ 20: #323033,
910
+ 25: #3d3a3e,
911
+ 30: #49464a,
912
+ 35: #545155,
913
+ 40: #605d61,
914
+ 50: #7a767a,
915
+ 60: #948f94,
916
+ 70: #aeaaae,
917
+ 80: #cac5ca,
918
+ 90: #e6e1e6,
919
+ 95: #f5eff4,
920
+ 98: #fef8fc,
921
+ 99: #fffbff,
922
+ 100: #fff,
923
+ 4: #0f0d11,
924
+ 6: #151316,
925
+ 12: #211f22,
926
+ 17: #2b292d,
927
+ 22: #363437,
928
+ 24: #3b383c,
929
+ 87: #ded8dd,
930
+ 92: #ede6eb,
931
+ 94: #f2ecf1,
932
+ 96: #f8f2f6,
933
+ ),
934
+ neutral-variant: (
935
+ 0: #000,
936
+ 10: #1d1a22,
937
+ 20: #332f37,
938
+ 25: #3e3a42,
939
+ 30: #49454e,
940
+ 35: #55515a,
941
+ 40: #615c66,
942
+ 50: #7b757f,
943
+ 60: #958e99,
944
+ 70: #b0a9b3,
945
+ 80: #cbc4cf,
946
+ 90: #e8e0eb,
947
+ 95: #f6eef9,
948
+ 98: #fef7ff,
949
+ 99: #fffbff,
950
+ 100: #fff,
951
+ ),
952
+ ));
953
+
954
+ /// Rose color palette to be used as primary or tertiary palette.
955
+ $rose-palette: _patch-error-palette((
956
+ 0: #000,
957
+ 10: #3f001b,
958
+ 20: #65002f,
959
+ 25: #7a003a,
960
+ 30: #8f0045,
961
+ 35: #a40050,
962
+ 40: #ba005c,
963
+ 50: #e80074,
964
+ 60: #ff4a8e,
965
+ 70: #ff84a9,
966
+ 80: #ffb1c5,
967
+ 90: #ffd9e1,
968
+ 95: #ffecef,
969
+ 98: #fff8f8,
970
+ 99: #fffbff,
971
+ 100: #fff,
972
+ secondary: (
973
+ 0: #000,
974
+ 10: #2b151b,
975
+ 20: #422930,
976
+ 25: #4f343b,
977
+ 30: #5b3f46,
978
+ 35: #684b52,
979
+ 40: #74565d,
980
+ 50: #8f6f76,
981
+ 60: #aa888f,
982
+ 70: #c6a2aa,
983
+ 80: #e3bdc5,
984
+ 90: #ffd9e1,
985
+ 95: #ffecef,
986
+ 98: #fff8f8,
987
+ 99: #fffbff,
988
+ 100: #fff,
989
+ ),
990
+ neutral: (
991
+ 0: #000,
992
+ 10: #201a1b,
993
+ 20: #352f30,
994
+ 25: #413a3b,
995
+ 30: #4c4546,
996
+ 35: #585052,
997
+ 40: #655c5e,
998
+ 50: #7e7576,
999
+ 60: #988e90,
1000
+ 70: #b3a9aa,
1001
+ 80: #cfc4c5,
1002
+ 90: #ece0e1,
1003
+ 95: #faeeef,
1004
+ 98: #fff8f8,
1005
+ 99: #fffbff,
1006
+ 100: #fff,
1007
+ 4: #120d0e,
1008
+ 6: #171213,
1009
+ 12: #241e1f,
1010
+ 17: #2f2829,
1011
+ 22: #3a3334,
1012
+ 24: #3e3738,
1013
+ 87: #e3d7d8,
1014
+ 92: #f1e5e6,
1015
+ 94: #f7ebec,
1016
+ 96: #fdf1f2,
1017
+ ),
1018
+ neutral-variant: (
1019
+ 0: #000,
1020
+ 10: #24191b,
1021
+ 20: #3a2d30,
1022
+ 25: #45383b,
1023
+ 30: #514346,
1024
+ 35: #5d4f52,
1025
+ 40: #6a5a5e,
1026
+ 50: #847376,
1027
+ 60: #9e8c90,
1028
+ 70: #baa7aa,
1029
+ 80: #d6c2c5,
1030
+ 90: #f3dde1,
1031
+ 95: #ffecef,
1032
+ 98: #fff8f8,
1033
+ 99: #fffbff,
1034
+ 100: #fff,
1035
+ ),
1036
+ ));