1use gpui::{Hsla, Rgba};
2
3use crate::ColorScale;
4use crate::scale::{ColorScaleSet, ColorScales};
5use crate::{SystemColors, ThemeColors};
6
7pub(crate) fn neutral() -> ColorScaleSet {
8 sand()
9}
10
11const ADDED_COLOR: Hsla = Hsla {
12 h: 142. / 360.,
13 s: 0.68,
14 l: 0.45,
15 a: 1.0,
16};
17const MODIFIED_COLOR: Hsla = Hsla {
18 h: 48. / 360.,
19 s: 0.76,
20 l: 0.47,
21 a: 1.0,
22};
23const REMOVED_COLOR: Hsla = Hsla {
24 h: 355. / 360.,
25 s: 0.65,
26 l: 0.65,
27 a: 1.0,
28};
29
30/// The default colors for the theme.
31///
32/// Themes that do not specify all colors are refined off of these defaults.
33impl ThemeColors {
34 /// Returns the default colors for light themes.
35 ///
36 /// Themes that do not specify all colors are refined off of these defaults.
37 pub fn light() -> Self {
38 let system = SystemColors::default();
39
40 Self {
41 border: neutral().light().step_6(),
42 border_variant: neutral().light().step_5(),
43 border_focused: blue().light().step_5(),
44 border_selected: blue().light().step_5(),
45 border_transparent: system.transparent,
46 border_disabled: neutral().light().step_3(),
47 elevated_surface_background: neutral().light().step_2(),
48 surface_background: neutral().light().step_2(),
49 background: neutral().light().step_1(),
50 element_background: neutral().light().step_3(),
51 element_hover: neutral().light_alpha().step_4(),
52 element_active: neutral().light_alpha().step_5(),
53 element_selected: neutral().light_alpha().step_5(),
54 element_disabled: neutral().light_alpha().step_3(),
55 element_selection_background: blue().light().step_3().alpha(0.25),
56 drop_target_background: blue().light_alpha().step_2(),
57 drop_target_border: neutral().light().step_12(),
58 ghost_element_background: system.transparent,
59 ghost_element_hover: neutral().light_alpha().step_3(),
60 ghost_element_active: neutral().light_alpha().step_4(),
61 ghost_element_selected: neutral().light_alpha().step_5(),
62 ghost_element_disabled: neutral().light_alpha().step_3(),
63 text: neutral().light().step_12(),
64 text_muted: neutral().light().step_10(),
65 text_placeholder: neutral().light().step_10(),
66 text_disabled: neutral().light().step_9(),
67 text_accent: blue().light().step_11(),
68 icon: neutral().light().step_11(),
69 icon_muted: neutral().light().step_10(),
70 icon_disabled: neutral().light().step_9(),
71 icon_placeholder: neutral().light().step_10(),
72 icon_accent: blue().light().step_11(),
73 debugger_accent: red().light().step_10(),
74 status_bar_background: neutral().light().step_2(),
75 title_bar_background: neutral().light().step_2(),
76 title_bar_inactive_background: neutral().light().step_3(),
77 toolbar_background: neutral().light().step_1(),
78 tab_bar_background: neutral().light().step_2(),
79 tab_inactive_background: neutral().light().step_2(),
80 tab_active_background: neutral().light().step_1(),
81 search_match_background: neutral().light().step_5(),
82 panel_background: neutral().light().step_2(),
83 panel_focused_border: blue().light().step_10(),
84 panel_indent_guide: neutral().light_alpha().step_5(),
85 panel_indent_guide_hover: neutral().light_alpha().step_6(),
86 panel_indent_guide_active: neutral().light_alpha().step_6(),
87 panel_overlay_background: neutral().light().step_2(),
88 panel_overlay_hover: neutral().light_alpha().step_4(),
89 pane_focused_border: blue().light().step_5(),
90 pane_group_border: neutral().light().step_6(),
91 scrollbar_thumb_background: neutral().light_alpha().step_3(),
92 scrollbar_thumb_hover_background: neutral().light_alpha().step_4(),
93 scrollbar_thumb_active_background: neutral().light_alpha().step_5(),
94 scrollbar_thumb_border: gpui::transparent_black(),
95 scrollbar_track_background: gpui::transparent_black(),
96 scrollbar_track_border: neutral().light().step_5(),
97 minimap_thumb_background: neutral().light_alpha().step_3().alpha(0.7),
98 minimap_thumb_hover_background: neutral().light_alpha().step_4().alpha(0.7),
99 minimap_thumb_active_background: neutral().light_alpha().step_5().alpha(0.7),
100 minimap_thumb_border: gpui::transparent_black(),
101 editor_foreground: neutral().light().step_12(),
102 editor_background: neutral().light().step_1(),
103 editor_gutter_background: neutral().light().step_1(),
104 editor_subheader_background: neutral().light().step_2(),
105 editor_active_line_background: neutral().light_alpha().step_3(),
106 editor_highlighted_line_background: neutral().light_alpha().step_3(),
107 editor_debugger_active_line_background: yellow().dark_alpha().step_3(),
108 editor_line_number: neutral().light().step_10(),
109 editor_hover_line_number: neutral().light().step_12(),
110 editor_active_line_number: neutral().light().step_11(),
111 editor_invisible: neutral().light().step_10(),
112 editor_wrap_guide: neutral().light_alpha().step_7(),
113 editor_active_wrap_guide: neutral().light_alpha().step_8(),
114 editor_indent_guide: neutral().light_alpha().step_5(),
115 editor_indent_guide_active: neutral().light_alpha().step_6(),
116 editor_document_highlight_read_background: neutral().light_alpha().step_3(),
117 editor_document_highlight_write_background: neutral().light_alpha().step_4(),
118 editor_document_highlight_bracket_background: green().light_alpha().step_5(),
119 terminal_background: neutral().light().step_1(),
120 terminal_foreground: black().light().step_12(),
121 terminal_bright_foreground: black().light().step_11(),
122 terminal_dim_foreground: black().light().step_10(),
123 terminal_ansi_background: neutral().light().step_1(),
124 terminal_ansi_bright_black: black().light().step_11(),
125 terminal_ansi_bright_red: red().light().step_10(),
126 terminal_ansi_bright_green: green().light().step_10(),
127 terminal_ansi_bright_yellow: yellow().light().step_10(),
128 terminal_ansi_bright_blue: blue().light().step_10(),
129 terminal_ansi_bright_magenta: violet().light().step_10(),
130 terminal_ansi_bright_cyan: cyan().light().step_10(),
131 terminal_ansi_bright_white: neutral().light().step_11(),
132 terminal_ansi_black: black().light().step_12(),
133 terminal_ansi_red: red().light().step_11(),
134 terminal_ansi_green: green().light().step_11(),
135 terminal_ansi_yellow: yellow().light().step_11(),
136 terminal_ansi_blue: blue().light().step_11(),
137 terminal_ansi_magenta: violet().light().step_11(),
138 terminal_ansi_cyan: cyan().light().step_11(),
139 terminal_ansi_white: neutral().light().step_12(),
140 terminal_ansi_dim_black: black().light().step_11(),
141 terminal_ansi_dim_red: red().light().step_10(),
142 terminal_ansi_dim_green: green().light().step_10(),
143 terminal_ansi_dim_yellow: yellow().light().step_10(),
144 terminal_ansi_dim_blue: blue().light().step_10(),
145 terminal_ansi_dim_magenta: violet().light().step_10(),
146 terminal_ansi_dim_cyan: cyan().light().step_10(),
147 terminal_ansi_dim_white: neutral().light().step_11(),
148 link_text_hover: orange().light().step_10(),
149 version_control_added: ADDED_COLOR,
150 version_control_deleted: REMOVED_COLOR,
151 version_control_modified: MODIFIED_COLOR,
152 version_control_renamed: MODIFIED_COLOR,
153 version_control_conflict: orange().light().step_12(),
154 version_control_ignored: gray().light().step_12(),
155 version_control_conflict_marker_ours: green().light().step_10().alpha(0.5),
156 version_control_conflict_marker_theirs: blue().light().step_10().alpha(0.5),
157 version_control_blame_age_new: orange().light().step_10(),
158 version_control_blame_age_old: blue().light().step_10(),
159 }
160 }
161
162 /// Returns the default colors for dark themes.
163 ///
164 /// Themes that do not specify all colors are refined off of these defaults.
165 pub fn dark() -> Self {
166 let system = SystemColors::default();
167
168 Self {
169 border: neutral().dark().step_6(),
170 border_variant: neutral().dark().step_5(),
171 border_focused: blue().dark().step_5(),
172 border_selected: blue().dark().step_5(),
173 border_transparent: system.transparent,
174 border_disabled: neutral().dark().step_3(),
175 elevated_surface_background: neutral().dark().step_2(),
176 surface_background: neutral().dark().step_2(),
177 background: neutral().dark().step_1(),
178 element_background: neutral().dark().step_3(),
179 element_hover: neutral().dark_alpha().step_4(),
180 element_active: neutral().dark_alpha().step_5(),
181 element_selected: neutral().dark_alpha().step_5(),
182 element_disabled: neutral().dark_alpha().step_3(),
183 element_selection_background: blue().dark().step_3().alpha(0.25),
184 drop_target_background: blue().dark_alpha().step_2(),
185 drop_target_border: neutral().dark().step_12(),
186 ghost_element_background: system.transparent,
187 ghost_element_hover: neutral().dark_alpha().step_4(),
188 ghost_element_active: neutral().dark_alpha().step_5(),
189 ghost_element_selected: neutral().dark_alpha().step_5(),
190 ghost_element_disabled: neutral().dark_alpha().step_3(),
191 text: neutral().dark().step_12(),
192 text_muted: neutral().dark().step_11(),
193 text_placeholder: neutral().dark().step_10(),
194 text_disabled: neutral().dark().step_9(),
195 text_accent: blue().dark().step_11(),
196 icon: neutral().dark().step_11(),
197 icon_muted: neutral().dark().step_10(),
198 icon_disabled: neutral().dark().step_9(),
199 icon_placeholder: neutral().dark().step_10(),
200 icon_accent: blue().dark().step_11(),
201 debugger_accent: red().light().step_10(),
202 status_bar_background: neutral().dark().step_2(),
203 title_bar_background: neutral().dark().step_2(),
204 title_bar_inactive_background: neutral().dark().step_3(),
205 toolbar_background: neutral().dark().step_1(),
206 tab_bar_background: neutral().dark().step_2(),
207 tab_inactive_background: neutral().dark().step_2(),
208 tab_active_background: neutral().dark().step_1(),
209 search_match_background: neutral().dark().step_5(),
210 panel_background: neutral().dark().step_2(),
211 panel_focused_border: blue().dark().step_8(),
212 panel_indent_guide: neutral().dark_alpha().step_4(),
213 panel_indent_guide_hover: neutral().dark_alpha().step_6(),
214 panel_indent_guide_active: neutral().dark_alpha().step_6(),
215 panel_overlay_background: neutral().dark().step_2(),
216 panel_overlay_hover: neutral().dark_alpha().step_4(),
217 pane_focused_border: blue().dark().step_5(),
218 pane_group_border: neutral().dark().step_6(),
219 scrollbar_thumb_background: neutral().dark_alpha().step_3(),
220 scrollbar_thumb_hover_background: neutral().dark_alpha().step_4(),
221 scrollbar_thumb_active_background: neutral().dark_alpha().step_5(),
222 scrollbar_thumb_border: gpui::transparent_black(),
223 scrollbar_track_background: gpui::transparent_black(),
224 scrollbar_track_border: neutral().dark().step_5(),
225 minimap_thumb_background: neutral().dark_alpha().step_3().alpha(0.7),
226 minimap_thumb_hover_background: neutral().dark_alpha().step_4().alpha(0.7),
227 minimap_thumb_active_background: neutral().dark_alpha().step_5().alpha(0.7),
228 minimap_thumb_border: gpui::transparent_black(),
229 editor_foreground: neutral().dark().step_12(),
230 editor_background: neutral().dark().step_1(),
231 editor_gutter_background: neutral().dark().step_1(),
232 editor_subheader_background: neutral().dark().step_3(),
233 editor_active_line_background: neutral().dark_alpha().step_3(),
234 editor_highlighted_line_background: yellow().dark_alpha().step_4(),
235 editor_debugger_active_line_background: yellow().dark_alpha().step_3(),
236 editor_line_number: neutral().dark_alpha().step_10(),
237 editor_hover_line_number: neutral().dark_alpha().step_12(),
238 editor_active_line_number: neutral().dark_alpha().step_11(),
239 editor_invisible: neutral().dark_alpha().step_4(),
240 editor_wrap_guide: neutral().dark_alpha().step_4(),
241 editor_active_wrap_guide: neutral().dark_alpha().step_4(),
242 editor_indent_guide: neutral().dark_alpha().step_4(),
243 editor_indent_guide_active: neutral().dark_alpha().step_6(),
244 editor_document_highlight_read_background: neutral().dark_alpha().step_4(),
245 editor_document_highlight_write_background: neutral().dark_alpha().step_4(),
246 editor_document_highlight_bracket_background: green().dark_alpha().step_6(),
247 terminal_background: neutral().dark().step_1(),
248 terminal_ansi_background: neutral().dark().step_1(),
249 terminal_foreground: white().dark().step_12(),
250 terminal_bright_foreground: white().dark().step_11(),
251 terminal_dim_foreground: white().dark().step_10(),
252 terminal_ansi_black: black().dark().step_12(),
253 terminal_ansi_bright_black: black().dark().step_11(),
254 terminal_ansi_dim_black: black().dark().step_10(),
255 terminal_ansi_red: red().dark().step_11(),
256 terminal_ansi_bright_red: red().dark().step_10(),
257 terminal_ansi_dim_red: red().dark().step_9(),
258 terminal_ansi_green: green().dark().step_11(),
259 terminal_ansi_bright_green: green().dark().step_10(),
260 terminal_ansi_dim_green: green().dark().step_9(),
261 terminal_ansi_yellow: yellow().dark().step_11(),
262 terminal_ansi_bright_yellow: yellow().dark().step_10(),
263 terminal_ansi_dim_yellow: yellow().dark().step_9(),
264 terminal_ansi_blue: blue().dark().step_11(),
265 terminal_ansi_bright_blue: blue().dark().step_10(),
266 terminal_ansi_dim_blue: blue().dark().step_9(),
267 terminal_ansi_magenta: violet().dark().step_11(),
268 terminal_ansi_bright_magenta: violet().dark().step_10(),
269 terminal_ansi_dim_magenta: violet().dark().step_9(),
270 terminal_ansi_cyan: cyan().dark().step_11(),
271 terminal_ansi_bright_cyan: cyan().dark().step_10(),
272 terminal_ansi_dim_cyan: cyan().dark().step_9(),
273 terminal_ansi_white: neutral().dark().step_12(),
274 terminal_ansi_bright_white: neutral().dark().step_11(),
275 terminal_ansi_dim_white: neutral().dark().step_10(),
276 link_text_hover: orange().dark().step_10(),
277 version_control_added: ADDED_COLOR,
278 version_control_deleted: REMOVED_COLOR,
279 version_control_modified: MODIFIED_COLOR,
280 version_control_renamed: MODIFIED_COLOR,
281 version_control_conflict: orange().dark().step_12(),
282 version_control_ignored: gray().dark().step_12(),
283 version_control_conflict_marker_ours: green().dark().step_10().alpha(0.5),
284 version_control_conflict_marker_theirs: blue().dark().step_10().alpha(0.5),
285 version_control_blame_age_new: orange().dark().step_10(),
286 version_control_blame_age_old: blue().dark().step_10(),
287 }
288 }
289}
290
291type StaticColorScale = [&'static str; 12];
292
293struct StaticColorScaleSet {
294 scale: &'static str,
295 light: StaticColorScale,
296 light_alpha: StaticColorScale,
297 dark: StaticColorScale,
298 dark_alpha: StaticColorScale,
299}
300
301impl TryFrom<StaticColorScaleSet> for ColorScaleSet {
302 type Error = anyhow::Error;
303
304 fn try_from(value: StaticColorScaleSet) -> Result<Self, Self::Error> {
305 fn to_color_scale(scale: StaticColorScale) -> anyhow::Result<ColorScale> {
306 scale
307 .into_iter()
308 .map(|color| Rgba::try_from(color).map(Hsla::from))
309 .collect::<Result<Vec<_>, _>>()
310 .map(ColorScale::from_iter)
311 }
312
313 Ok(Self::new(
314 value.scale,
315 to_color_scale(value.light)?,
316 to_color_scale(value.light_alpha)?,
317 to_color_scale(value.dark)?,
318 to_color_scale(value.dark_alpha)?,
319 ))
320 }
321}
322
323/// Color scales used to build the default themes.
324pub fn default_color_scales() -> ColorScales {
325 ColorScales {
326 gray: gray(),
327 mauve: mauve(),
328 slate: slate(),
329 sage: sage(),
330 olive: olive(),
331 sand: sand(),
332 gold: gold(),
333 bronze: bronze(),
334 brown: brown(),
335 yellow: yellow(),
336 amber: amber(),
337 orange: orange(),
338 tomato: tomato(),
339 red: red(),
340 ruby: ruby(),
341 crimson: crimson(),
342 pink: pink(),
343 plum: plum(),
344 purple: purple(),
345 violet: violet(),
346 iris: iris(),
347 indigo: indigo(),
348 blue: blue(),
349 cyan: cyan(),
350 teal: teal(),
351 jade: jade(),
352 green: green(),
353 grass: grass(),
354 lime: lime(),
355 mint: mint(),
356 sky: sky(),
357 black: black(),
358 white: white(),
359 }
360}
361
362pub(crate) fn gray() -> ColorScaleSet {
363 StaticColorScaleSet {
364 scale: "Gray",
365 light: [
366 "#fcfcfcff",
367 "#f9f9f9ff",
368 "#f0f0f0ff",
369 "#e8e8e8ff",
370 "#e0e0e0ff",
371 "#d9d9d9ff",
372 "#cececeff",
373 "#bbbbbbff",
374 "#8d8d8dff",
375 "#838383ff",
376 "#646464ff",
377 "#202020ff",
378 ],
379 light_alpha: [
380 "#00000003",
381 "#00000006",
382 "#0000000f",
383 "#00000017",
384 "#0000001f",
385 "#00000026",
386 "#00000031",
387 "#00000044",
388 "#00000072",
389 "#0000007c",
390 "#0000009b",
391 "#000000df",
392 ],
393 dark: [
394 "#111111ff",
395 "#191919ff",
396 "#222222ff",
397 "#2a2a2aff",
398 "#313131ff",
399 "#3a3a3aff",
400 "#484848ff",
401 "#606060ff",
402 "#6e6e6eff",
403 "#7b7b7bff",
404 "#b4b4b4ff",
405 "#eeeeeeff",
406 ],
407 dark_alpha: [
408 "#00000000",
409 "#ffffff09",
410 "#ffffff12",
411 "#ffffff1b",
412 "#ffffff22",
413 "#ffffff2c",
414 "#ffffff3b",
415 "#ffffff55",
416 "#ffffff64",
417 "#ffffff72",
418 "#ffffffaf",
419 "#ffffffed",
420 ],
421 }
422 .try_into()
423 .unwrap()
424}
425
426pub(crate) fn mauve() -> ColorScaleSet {
427 StaticColorScaleSet {
428 scale: "Mauve",
429 light: [
430 "#fdfcfdff",
431 "#faf9fbff",
432 "#f2eff3ff",
433 "#eae7ecff",
434 "#e3dfe6ff",
435 "#dbd8e0ff",
436 "#d0cdd7ff",
437 "#bcbac7ff",
438 "#8e8c99ff",
439 "#84828eff",
440 "#65636dff",
441 "#211f26ff",
442 ],
443 light_alpha: [
444 "#55005503",
445 "#2b005506",
446 "#30004010",
447 "#20003618",
448 "#20003820",
449 "#14003527",
450 "#10003332",
451 "#08003145",
452 "#05001d73",
453 "#0500197d",
454 "#0400119c",
455 "#020008e0",
456 ],
457 dark: [
458 "#121113ff",
459 "#1a191bff",
460 "#232225ff",
461 "#2b292dff",
462 "#323035ff",
463 "#3c393fff",
464 "#49474eff",
465 "#625f69ff",
466 "#6f6d78ff",
467 "#7c7a85ff",
468 "#b5b2bcff",
469 "#eeeef0ff",
470 ],
471 dark_alpha: [
472 "#00000000",
473 "#f5f4f609",
474 "#ebeaf814",
475 "#eee5f81d",
476 "#efe6fe25",
477 "#f1e6fd30",
478 "#eee9ff40",
479 "#eee7ff5d",
480 "#eae6fd6e",
481 "#ece9fd7c",
482 "#f5f1ffb7",
483 "#fdfdffef",
484 ],
485 }
486 .try_into()
487 .unwrap()
488}
489
490pub(crate) fn slate() -> ColorScaleSet {
491 StaticColorScaleSet {
492 scale: "Slate",
493 light: [
494 "#fcfcfdff",
495 "#f9f9fbff",
496 "#f0f0f3ff",
497 "#e8e8ecff",
498 "#e0e1e6ff",
499 "#d9d9e0ff",
500 "#cdced6ff",
501 "#b9bbc6ff",
502 "#8b8d98ff",
503 "#80838dff",
504 "#60646cff",
505 "#1c2024ff",
506 ],
507 light_alpha: [
508 "#00005503",
509 "#00005506",
510 "#0000330f",
511 "#00002d17",
512 "#0009321f",
513 "#00002f26",
514 "#00062e32",
515 "#00083046",
516 "#00051d74",
517 "#00071b7f",
518 "#0007149f",
519 "#000509e3",
520 ],
521 dark: [
522 "#111113ff",
523 "#18191bff",
524 "#212225ff",
525 "#272a2dff",
526 "#2e3135ff",
527 "#363a3fff",
528 "#43484eff",
529 "#5a6169ff",
530 "#696e77ff",
531 "#777b84ff",
532 "#b0b4baff",
533 "#edeef0ff",
534 ],
535 dark_alpha: [
536 "#00000000",
537 "#d8f4f609",
538 "#ddeaf814",
539 "#d3edf81d",
540 "#d9edfe25",
541 "#d6ebfd30",
542 "#d9edff40",
543 "#d9edff5d",
544 "#dfebfd6d",
545 "#e5edfd7b",
546 "#f1f7feb5",
547 "#fcfdffef",
548 ],
549 }
550 .try_into()
551 .unwrap()
552}
553
554pub(crate) fn sage() -> ColorScaleSet {
555 StaticColorScaleSet {
556 scale: "Sage",
557 light: [
558 "#fbfdfcff",
559 "#f7f9f8ff",
560 "#eef1f0ff",
561 "#e6e9e8ff",
562 "#dfe2e0ff",
563 "#d7dad9ff",
564 "#cbcfcdff",
565 "#b8bcbaff",
566 "#868e8bff",
567 "#7c8481ff",
568 "#5f6563ff",
569 "#1a211eff",
570 ],
571 light_alpha: [
572 "#00804004",
573 "#00402008",
574 "#002d1e11",
575 "#001f1519",
576 "#00180820",
577 "#00140d28",
578 "#00140a34",
579 "#000f0847",
580 "#00110b79",
581 "#00100a83",
582 "#000a07a0",
583 "#000805e5",
584 ],
585 dark: [
586 "#101211ff",
587 "#171918ff",
588 "#202221ff",
589 "#272a29ff",
590 "#2e3130ff",
591 "#373b39ff",
592 "#444947ff",
593 "#5b625fff",
594 "#63706bff",
595 "#717d79ff",
596 "#adb5b2ff",
597 "#eceeedff",
598 ],
599 dark_alpha: [
600 "#00000000",
601 "#f0f2f108",
602 "#f3f5f412",
603 "#f2fefd1a",
604 "#f1fbfa22",
605 "#edfbf42d",
606 "#edfcf73c",
607 "#ebfdf657",
608 "#dffdf266",
609 "#e5fdf674",
610 "#f4fefbb0",
611 "#fdfffeed",
612 ],
613 }
614 .try_into()
615 .unwrap()
616}
617
618pub(crate) fn olive() -> ColorScaleSet {
619 StaticColorScaleSet {
620 scale: "Olive",
621 light: [
622 "#fcfdfcff",
623 "#f8faf8ff",
624 "#eff1efff",
625 "#e7e9e7ff",
626 "#dfe2dfff",
627 "#d7dad7ff",
628 "#cccfccff",
629 "#b9bcb8ff",
630 "#898e87ff",
631 "#7f847dff",
632 "#60655fff",
633 "#1d211cff",
634 ],
635 light_alpha: [
636 "#00550003",
637 "#00490007",
638 "#00200010",
639 "#00160018",
640 "#00180020",
641 "#00140028",
642 "#000f0033",
643 "#040f0047",
644 "#050f0078",
645 "#040e0082",
646 "#020a00a0",
647 "#010600e3",
648 ],
649 dark: [
650 "#111210ff",
651 "#181917ff",
652 "#212220ff",
653 "#282a27ff",
654 "#2f312eff",
655 "#383a36ff",
656 "#454843ff",
657 "#5c625bff",
658 "#687066ff",
659 "#767d74ff",
660 "#afb5adff",
661 "#eceeecff",
662 ],
663 dark_alpha: [
664 "#00000000",
665 "#f1f2f008",
666 "#f4f5f312",
667 "#f3fef21a",
668 "#f2fbf122",
669 "#f4faed2c",
670 "#f2fced3b",
671 "#edfdeb57",
672 "#ebfde766",
673 "#f0fdec74",
674 "#f6fef4b0",
675 "#fdfffded",
676 ],
677 }
678 .try_into()
679 .unwrap()
680}
681
682pub(crate) fn sand() -> ColorScaleSet {
683 StaticColorScaleSet {
684 scale: "Sand",
685 light: [
686 "#fdfdfcff",
687 "#f9f9f8ff",
688 "#f1f0efff",
689 "#e9e8e6ff",
690 "#e2e1deff",
691 "#dad9d6ff",
692 "#cfcecaff",
693 "#bcbbb5ff",
694 "#8d8d86ff",
695 "#82827cff",
696 "#63635eff",
697 "#21201cff",
698 ],
699 light_alpha: [
700 "#55550003",
701 "#25250007",
702 "#20100010",
703 "#1f150019",
704 "#1f180021",
705 "#19130029",
706 "#19140035",
707 "#1915014a",
708 "#0f0f0079",
709 "#0c0c0083",
710 "#080800a1",
711 "#060500e3",
712 ],
713 dark: [
714 "#111110ff",
715 "#191918ff",
716 "#222221ff",
717 "#2a2a28ff",
718 "#31312eff",
719 "#3b3a37ff",
720 "#494844ff",
721 "#62605bff",
722 "#6f6d66ff",
723 "#7c7b74ff",
724 "#b5b3adff",
725 "#eeeeecff",
726 ],
727 dark_alpha: [
728 "#00000000",
729 "#f4f4f309",
730 "#f6f6f513",
731 "#fefef31b",
732 "#fbfbeb23",
733 "#fffaed2d",
734 "#fffbed3c",
735 "#fff9eb57",
736 "#fffae965",
737 "#fffdee73",
738 "#fffcf4b0",
739 "#fffffded",
740 ],
741 }
742 .try_into()
743 .unwrap()
744}
745
746pub(crate) fn gold() -> ColorScaleSet {
747 StaticColorScaleSet {
748 scale: "Gold",
749 light: [
750 "#fdfdfcff",
751 "#faf9f2ff",
752 "#f2f0e7ff",
753 "#eae6dbff",
754 "#e1dccfff",
755 "#d8d0bfff",
756 "#cbc0aaff",
757 "#b9a88dff",
758 "#978365ff",
759 "#8c7a5eff",
760 "#71624bff",
761 "#3b352bff",
762 ],
763 light_alpha: [
764 "#55550003",
765 "#9d8a000d",
766 "#75600018",
767 "#6b4e0024",
768 "#60460030",
769 "#64440040",
770 "#63420055",
771 "#633d0072",
772 "#5332009a",
773 "#492d00a1",
774 "#362100b4",
775 "#130c00d4",
776 ],
777 dark: [
778 "#121211ff",
779 "#1b1a17ff",
780 "#24231fff",
781 "#2d2b26ff",
782 "#38352eff",
783 "#444039ff",
784 "#544f46ff",
785 "#696256ff",
786 "#978365ff",
787 "#a39073ff",
788 "#cbb99fff",
789 "#e8e2d9ff",
790 ],
791 dark_alpha: [
792 "#91911102",
793 "#f9e29d0b",
794 "#f8ecbb15",
795 "#ffeec41e",
796 "#feecc22a",
797 "#feebcb37",
798 "#ffedcd48",
799 "#fdeaca5f",
800 "#ffdba690",
801 "#fedfb09d",
802 "#fee7c6c8",
803 "#fef7ede7",
804 ],
805 }
806 .try_into()
807 .unwrap()
808}
809
810pub(crate) fn bronze() -> ColorScaleSet {
811 StaticColorScaleSet {
812 scale: "Bronze",
813 light: [
814 "#fdfcfcff",
815 "#fdf7f5ff",
816 "#f6edeaff",
817 "#efe4dfff",
818 "#e7d9d3ff",
819 "#dfcdc5ff",
820 "#d3bcb3ff",
821 "#c2a499ff",
822 "#a18072ff",
823 "#957468ff",
824 "#7d5e54ff",
825 "#43302bff",
826 ],
827 light_alpha: [
828 "#55000003",
829 "#cc33000a",
830 "#92250015",
831 "#80280020",
832 "#7423002c",
833 "#7324003a",
834 "#6c1f004c",
835 "#671c0066",
836 "#551a008d",
837 "#4c150097",
838 "#3d0f00ab",
839 "#1d0600d4",
840 ],
841 dark: [
842 "#141110ff",
843 "#1c1917ff",
844 "#262220ff",
845 "#302a27ff",
846 "#3b3330ff",
847 "#493e3aff",
848 "#5a4c47ff",
849 "#6f5f58ff",
850 "#a18072ff",
851 "#ae8c7eff",
852 "#d4b3a5ff",
853 "#ede0d9ff",
854 ],
855 dark_alpha: [
856 "#d1110004",
857 "#fbbc910c",
858 "#faceb817",
859 "#facdb622",
860 "#ffd2c12d",
861 "#ffd1c03c",
862 "#fdd0c04f",
863 "#ffd6c565",
864 "#fec7b09b",
865 "#fecab5a9",
866 "#ffd7c6d1",
867 "#fff1e9ec",
868 ],
869 }
870 .try_into()
871 .unwrap()
872}
873
874pub(crate) fn brown() -> ColorScaleSet {
875 StaticColorScaleSet {
876 scale: "Brown",
877 light: [
878 "#fefdfcff",
879 "#fcf9f6ff",
880 "#f6eee7ff",
881 "#f0e4d9ff",
882 "#ebdacaff",
883 "#e4cdb7ff",
884 "#dcbc9fff",
885 "#cea37eff",
886 "#ad7f58ff",
887 "#a07553ff",
888 "#815e46ff",
889 "#3e332eff",
890 ],
891 light_alpha: [
892 "#aa550003",
893 "#aa550009",
894 "#a04b0018",
895 "#9b4a0026",
896 "#9f4d0035",
897 "#a04e0048",
898 "#a34e0060",
899 "#9f4a0081",
900 "#823c00a7",
901 "#723300ac",
902 "#522100b9",
903 "#140600d1",
904 ],
905 dark: [
906 "#12110fff",
907 "#1c1816ff",
908 "#28211dff",
909 "#322922ff",
910 "#3e3128ff",
911 "#4d3c2fff",
912 "#614a39ff",
913 "#7c5f46ff",
914 "#ad7f58ff",
915 "#b88c67ff",
916 "#dbb594ff",
917 "#f2e1caff",
918 ],
919 dark_alpha: [
920 "#91110002",
921 "#fba67c0c",
922 "#fcb58c19",
923 "#fbbb8a24",
924 "#fcb88931",
925 "#fdba8741",
926 "#ffbb8856",
927 "#ffbe8773",
928 "#feb87da8",
929 "#ffc18cb3",
930 "#fed1aad9",
931 "#feecd4f2",
932 ],
933 }
934 .try_into()
935 .unwrap()
936}
937
938pub(crate) fn yellow() -> ColorScaleSet {
939 StaticColorScaleSet {
940 scale: "Yellow",
941 light: [
942 "#fdfdf9ff",
943 "#fefce9ff",
944 "#fffab8ff",
945 "#fff394ff",
946 "#ffe770ff",
947 "#f3d768ff",
948 "#e4c767ff",
949 "#d5ae39ff",
950 "#ffe629ff",
951 "#ffdc00ff",
952 "#9e6c00ff",
953 "#473b1fff",
954 ],
955 light_alpha: [
956 "#aaaa0006",
957 "#f4dd0016",
958 "#ffee0047",
959 "#ffe3016b",
960 "#ffd5008f",
961 "#ebbc0097",
962 "#d2a10098",
963 "#c99700c6",
964 "#ffe100d6",
965 "#ffdc00ff",
966 "#9e6c00ff",
967 "#2e2000e0",
968 ],
969 dark: [
970 "#14120bff",
971 "#1b180fff",
972 "#2d2305ff",
973 "#362b00ff",
974 "#433500ff",
975 "#524202ff",
976 "#665417ff",
977 "#836a21ff",
978 "#ffe629ff",
979 "#ffff57ff",
980 "#f5e147ff",
981 "#f6eeb4ff",
982 ],
983 dark_alpha: [
984 "#d1510004",
985 "#f9b4000b",
986 "#ffaa001e",
987 "#fdb70028",
988 "#febb0036",
989 "#fec40046",
990 "#fdcb225c",
991 "#fdca327b",
992 "#ffe629ff",
993 "#ffff57ff",
994 "#fee949f5",
995 "#fef6baf6",
996 ],
997 }
998 .try_into()
999 .unwrap()
1000}
1001
1002pub(crate) fn amber() -> ColorScaleSet {
1003 StaticColorScaleSet {
1004 scale: "Amber",
1005 light: [
1006 "#fefdfbff",
1007 "#fefbe9ff",
1008 "#fff7c2ff",
1009 "#ffee9cff",
1010 "#fbe577ff",
1011 "#f3d673ff",
1012 "#e9c162ff",
1013 "#e2a336ff",
1014 "#ffc53dff",
1015 "#ffba18ff",
1016 "#ab6400ff",
1017 "#4f3422ff",
1018 ],
1019 light_alpha: [
1020 "#c0800004",
1021 "#f4d10016",
1022 "#ffde003d",
1023 "#ffd40063",
1024 "#f8cf0088",
1025 "#eab5008c",
1026 "#dc9b009d",
1027 "#da8a00c9",
1028 "#ffb300c2",
1029 "#ffb300e7",
1030 "#ab6400ff",
1031 "#341500dd",
1032 ],
1033 dark: [
1034 "#16120cff",
1035 "#1d180fff",
1036 "#302008ff",
1037 "#3f2700ff",
1038 "#4d3000ff",
1039 "#5c3d05ff",
1040 "#714f19ff",
1041 "#8f6424ff",
1042 "#ffc53dff",
1043 "#ffd60aff",
1044 "#ffca16ff",
1045 "#ffe7b3ff",
1046 ],
1047 dark_alpha: [
1048 "#e63c0006",
1049 "#fd9b000d",
1050 "#fa820022",
1051 "#fc820032",
1052 "#fd8b0041",
1053 "#fd9b0051",
1054 "#ffab2567",
1055 "#ffae3587",
1056 "#ffc53dff",
1057 "#ffd60aff",
1058 "#ffca16ff",
1059 "#ffe7b3ff",
1060 ],
1061 }
1062 .try_into()
1063 .unwrap()
1064}
1065
1066pub(crate) fn orange() -> ColorScaleSet {
1067 StaticColorScaleSet {
1068 scale: "Orange",
1069 light: [
1070 "#fefcfbff",
1071 "#fff7edff",
1072 "#ffefd6ff",
1073 "#ffdfb5ff",
1074 "#ffd19aff",
1075 "#ffc182ff",
1076 "#f5ae73ff",
1077 "#ec9455ff",
1078 "#f76b15ff",
1079 "#ef5f00ff",
1080 "#cc4e00ff",
1081 "#582d1dff",
1082 ],
1083 light_alpha: [
1084 "#c0400004",
1085 "#ff8e0012",
1086 "#ff9c0029",
1087 "#ff91014a",
1088 "#ff8b0065",
1089 "#ff81007d",
1090 "#ed6c008c",
1091 "#e35f00aa",
1092 "#f65e00ea",
1093 "#ef5f00ff",
1094 "#cc4e00ff",
1095 "#431200e2",
1096 ],
1097 dark: [
1098 "#17120eff",
1099 "#1e160fff",
1100 "#331e0bff",
1101 "#462100ff",
1102 "#562800ff",
1103 "#66350cff",
1104 "#7e451dff",
1105 "#a35829ff",
1106 "#f76b15ff",
1107 "#ff801fff",
1108 "#ffa057ff",
1109 "#ffe0c2ff",
1110 ],
1111 dark_alpha: [
1112 "#ec360007",
1113 "#fe6d000e",
1114 "#fb6a0025",
1115 "#ff590039",
1116 "#ff61004a",
1117 "#fd75045c",
1118 "#ff832c75",
1119 "#fe84389d",
1120 "#fe6d15f7",
1121 "#ff801fff",
1122 "#ffa057ff",
1123 "#ffe0c2ff",
1124 ],
1125 }
1126 .try_into()
1127 .unwrap()
1128}
1129
1130pub(crate) fn tomato() -> ColorScaleSet {
1131 StaticColorScaleSet {
1132 scale: "Tomato",
1133 light: [
1134 "#fffcfcff",
1135 "#fff8f7ff",
1136 "#feebe7ff",
1137 "#ffdcd3ff",
1138 "#ffcdc2ff",
1139 "#fdbdafff",
1140 "#f5a898ff",
1141 "#ec8e7bff",
1142 "#e54d2eff",
1143 "#dd4425ff",
1144 "#d13415ff",
1145 "#5c271fff",
1146 ],
1147 light_alpha: [
1148 "#ff000003",
1149 "#ff200008",
1150 "#f52b0018",
1151 "#ff35002c",
1152 "#ff2e003d",
1153 "#f92d0050",
1154 "#e7280067",
1155 "#db250084",
1156 "#df2600d1",
1157 "#d72400da",
1158 "#cd2200ea",
1159 "#460900e0",
1160 ],
1161 dark: [
1162 "#181111ff",
1163 "#1f1513ff",
1164 "#391714ff",
1165 "#4e1511ff",
1166 "#5e1c16ff",
1167 "#6e2920ff",
1168 "#853a2dff",
1169 "#ac4d39ff",
1170 "#e54d2eff",
1171 "#ec6142ff",
1172 "#ff977dff",
1173 "#fbd3cbff",
1174 ],
1175 dark_alpha: [
1176 "#f1121208",
1177 "#ff55330f",
1178 "#ff35232b",
1179 "#fd201142",
1180 "#fe332153",
1181 "#ff4f3864",
1182 "#fd644a7d",
1183 "#fe6d4ea7",
1184 "#fe5431e4",
1185 "#ff6847eb",
1186 "#ff977dff",
1187 "#ffd6cefb",
1188 ],
1189 }
1190 .try_into()
1191 .unwrap()
1192}
1193
1194pub(crate) fn red() -> ColorScaleSet {
1195 StaticColorScaleSet {
1196 scale: "Red",
1197 light: [
1198 "#fffcfcff",
1199 "#fff7f7ff",
1200 "#feebecff",
1201 "#ffdbdcff",
1202 "#ffcdceff",
1203 "#fdbdbeff",
1204 "#f4a9aaff",
1205 "#eb8e90ff",
1206 "#e5484dff",
1207 "#dc3e42ff",
1208 "#ce2c31ff",
1209 "#641723ff",
1210 ],
1211 light_alpha: [
1212 "#ff000003",
1213 "#ff000008",
1214 "#f3000d14",
1215 "#ff000824",
1216 "#ff000632",
1217 "#f8000442",
1218 "#df000356",
1219 "#d2000571",
1220 "#db0007b7",
1221 "#d10005c1",
1222 "#c40006d3",
1223 "#55000de8",
1224 ],
1225 dark: [
1226 "#191111ff",
1227 "#201314ff",
1228 "#3b1219ff",
1229 "#500f1cff",
1230 "#611623ff",
1231 "#72232dff",
1232 "#8c333aff",
1233 "#b54548ff",
1234 "#e5484dff",
1235 "#ec5d5eff",
1236 "#ff9592ff",
1237 "#ffd1d9ff",
1238 ],
1239 dark_alpha: [
1240 "#f4121209",
1241 "#f22f3e11",
1242 "#ff173f2d",
1243 "#fe0a3b44",
1244 "#ff204756",
1245 "#ff3e5668",
1246 "#ff536184",
1247 "#ff5d61b0",
1248 "#fe4e54e4",
1249 "#ff6465eb",
1250 "#ff9592ff",
1251 "#ffd1d9ff",
1252 ],
1253 }
1254 .try_into()
1255 .unwrap()
1256}
1257
1258pub(crate) fn ruby() -> ColorScaleSet {
1259 StaticColorScaleSet {
1260 scale: "Ruby",
1261 light: [
1262 "#fffcfdff",
1263 "#fff7f8ff",
1264 "#feeaedff",
1265 "#ffdce1ff",
1266 "#ffced6ff",
1267 "#f8bfc8ff",
1268 "#efacb8ff",
1269 "#e592a3ff",
1270 "#e54666ff",
1271 "#dc3b5dff",
1272 "#ca244dff",
1273 "#64172bff",
1274 ],
1275 light_alpha: [
1276 "#ff005503",
1277 "#ff002008",
1278 "#f3002515",
1279 "#ff002523",
1280 "#ff002a31",
1281 "#e4002440",
1282 "#ce002553",
1283 "#c300286d",
1284 "#db002cb9",
1285 "#d2002cc4",
1286 "#c10030db",
1287 "#550016e8",
1288 ],
1289 dark: [
1290 "#191113ff",
1291 "#1e1517ff",
1292 "#3a141eff",
1293 "#4e1325ff",
1294 "#5e1a2eff",
1295 "#6f2539ff",
1296 "#883447ff",
1297 "#b3445aff",
1298 "#e54666ff",
1299 "#ec5a72ff",
1300 "#ff949dff",
1301 "#fed2e1ff",
1302 ],
1303 dark_alpha: [
1304 "#f4124a09",
1305 "#fe5a7f0e",
1306 "#ff235d2c",
1307 "#fd195e42",
1308 "#fe2d6b53",
1309 "#ff447665",
1310 "#ff577d80",
1311 "#ff5c7cae",
1312 "#fe4c70e4",
1313 "#ff617beb",
1314 "#ff949dff",
1315 "#ffd3e2fe",
1316 ],
1317 }
1318 .try_into()
1319 .unwrap()
1320}
1321
1322pub(crate) fn crimson() -> ColorScaleSet {
1323 StaticColorScaleSet {
1324 scale: "Crimson",
1325 light: [
1326 "#fffcfdff",
1327 "#fef7f9ff",
1328 "#ffe9f0ff",
1329 "#fedce7ff",
1330 "#faceddff",
1331 "#f3bed1ff",
1332 "#eaacc3ff",
1333 "#e093b2ff",
1334 "#e93d82ff",
1335 "#df3478ff",
1336 "#cb1d63ff",
1337 "#621639ff",
1338 ],
1339 light_alpha: [
1340 "#ff005503",
1341 "#e0004008",
1342 "#ff005216",
1343 "#f8005123",
1344 "#e5004f31",
1345 "#d0004b41",
1346 "#bf004753",
1347 "#b6004a6c",
1348 "#e2005bc2",
1349 "#d70056cb",
1350 "#c4004fe2",
1351 "#530026e9",
1352 ],
1353 dark: [
1354 "#191114ff",
1355 "#201318ff",
1356 "#381525ff",
1357 "#4d122fff",
1358 "#5c1839ff",
1359 "#6d2545ff",
1360 "#873356ff",
1361 "#b0436eff",
1362 "#e93d82ff",
1363 "#ee518aff",
1364 "#ff92adff",
1365 "#fdd3e8ff",
1366 ],
1367 dark_alpha: [
1368 "#f4126709",
1369 "#f22f7a11",
1370 "#fe2a8b2a",
1371 "#fd158741",
1372 "#fd278f51",
1373 "#fe459763",
1374 "#fd559b7f",
1375 "#fe5b9bab",
1376 "#fe418de8",
1377 "#ff5693ed",
1378 "#ff92adff",
1379 "#ffd5eafd",
1380 ],
1381 }
1382 .try_into()
1383 .unwrap()
1384}
1385
1386pub(crate) fn pink() -> ColorScaleSet {
1387 StaticColorScaleSet {
1388 scale: "Pink",
1389 light: [
1390 "#fffcfeff",
1391 "#fef7fbff",
1392 "#fee9f5ff",
1393 "#fbdcefff",
1394 "#f6cee7ff",
1395 "#efbfddff",
1396 "#e7acd0ff",
1397 "#dd93c2ff",
1398 "#d6409fff",
1399 "#cf3897ff",
1400 "#c2298aff",
1401 "#651249ff",
1402 ],
1403 light_alpha: [
1404 "#ff00aa03",
1405 "#e0008008",
1406 "#f4008c16",
1407 "#e2008b23",
1408 "#d1008331",
1409 "#c0007840",
1410 "#b6006f53",
1411 "#af006f6c",
1412 "#c8007fbf",
1413 "#c2007ac7",
1414 "#b60074d6",
1415 "#59003bed",
1416 ],
1417 dark: [
1418 "#191117ff",
1419 "#21121dff",
1420 "#37172fff",
1421 "#4b143dff",
1422 "#591c47ff",
1423 "#692955ff",
1424 "#833869ff",
1425 "#a84885ff",
1426 "#d6409fff",
1427 "#de51a8ff",
1428 "#ff8dccff",
1429 "#fdd1eaff",
1430 ],
1431 dark_alpha: [
1432 "#f412bc09",
1433 "#f420bb12",
1434 "#fe37cc29",
1435 "#fc1ec43f",
1436 "#fd35c24e",
1437 "#fd51c75f",
1438 "#fd62c87b",
1439 "#ff68c8a2",
1440 "#fe49bcd4",
1441 "#ff5cc0dc",
1442 "#ff8dccff",
1443 "#ffd3ecfd",
1444 ],
1445 }
1446 .try_into()
1447 .unwrap()
1448}
1449
1450pub(crate) fn plum() -> ColorScaleSet {
1451 StaticColorScaleSet {
1452 scale: "Plum",
1453 light: [
1454 "#fefcffff",
1455 "#fdf7fdff",
1456 "#fbebfbff",
1457 "#f7def8ff",
1458 "#f2d1f3ff",
1459 "#e9c2ecff",
1460 "#deade3ff",
1461 "#cf91d8ff",
1462 "#ab4abaff",
1463 "#a144afff",
1464 "#953ea3ff",
1465 "#53195dff",
1466 ],
1467 light_alpha: [
1468 "#aa00ff03",
1469 "#c000c008",
1470 "#cc00cc14",
1471 "#c200c921",
1472 "#b700bd2e",
1473 "#a400b03d",
1474 "#9900a852",
1475 "#9000a56e",
1476 "#89009eb5",
1477 "#7f0092bb",
1478 "#730086c1",
1479 "#40004be6",
1480 ],
1481 dark: [
1482 "#181118ff",
1483 "#201320ff",
1484 "#351a35ff",
1485 "#451d47ff",
1486 "#512454ff",
1487 "#5e3061ff",
1488 "#734079ff",
1489 "#92549cff",
1490 "#ab4abaff",
1491 "#b658c4ff",
1492 "#e796f3ff",
1493 "#f4d4f4ff",
1494 ],
1495 dark_alpha: [
1496 "#f112f108",
1497 "#f22ff211",
1498 "#fd4cfd27",
1499 "#f646ff3a",
1500 "#f455ff48",
1501 "#f66dff56",
1502 "#f07cfd70",
1503 "#ee84ff95",
1504 "#e961feb6",
1505 "#ed70ffc0",
1506 "#f19cfef3",
1507 "#feddfef4",
1508 ],
1509 }
1510 .try_into()
1511 .unwrap()
1512}
1513
1514pub(crate) fn purple() -> ColorScaleSet {
1515 StaticColorScaleSet {
1516 scale: "Purple",
1517 light: [
1518 "#fefcfeff",
1519 "#fbf7feff",
1520 "#f7edfeff",
1521 "#f2e2fcff",
1522 "#ead5f9ff",
1523 "#e0c4f4ff",
1524 "#d1afecff",
1525 "#be93e4ff",
1526 "#8e4ec6ff",
1527 "#8347b9ff",
1528 "#8145b5ff",
1529 "#402060ff",
1530 ],
1531 light_alpha: [
1532 "#aa00aa03",
1533 "#8000e008",
1534 "#8e00f112",
1535 "#8d00e51d",
1536 "#8000db2a",
1537 "#7a01d03b",
1538 "#6d00c350",
1539 "#6600c06c",
1540 "#5c00adb1",
1541 "#53009eb8",
1542 "#52009aba",
1543 "#250049df",
1544 ],
1545 dark: [
1546 "#18111bff",
1547 "#1e1523ff",
1548 "#301c3bff",
1549 "#3d224eff",
1550 "#48295cff",
1551 "#54346bff",
1552 "#664282ff",
1553 "#8457aaff",
1554 "#8e4ec6ff",
1555 "#9a5cd0ff",
1556 "#d19dffff",
1557 "#ecd9faff",
1558 ],
1559 dark_alpha: [
1560 "#b412f90b",
1561 "#b744f714",
1562 "#c150ff2d",
1563 "#bb53fd42",
1564 "#be5cfd51",
1565 "#c16dfd61",
1566 "#c378fd7a",
1567 "#c47effa4",
1568 "#b661ffc2",
1569 "#bc6fffcd",
1570 "#d19dffff",
1571 "#f1ddfffa",
1572 ],
1573 }
1574 .try_into()
1575 .unwrap()
1576}
1577
1578pub(crate) fn violet() -> ColorScaleSet {
1579 StaticColorScaleSet {
1580 scale: "Violet",
1581 light: [
1582 "#fdfcfeff",
1583 "#faf8ffff",
1584 "#f4f0feff",
1585 "#ebe4ffff",
1586 "#e1d9ffff",
1587 "#d4cafeff",
1588 "#c2b5f5ff",
1589 "#aa99ecff",
1590 "#6e56cfff",
1591 "#654dc4ff",
1592 "#6550b9ff",
1593 "#2f265fff",
1594 ],
1595 light_alpha: [
1596 "#5500aa03",
1597 "#4900ff07",
1598 "#4400ee0f",
1599 "#4300ff1b",
1600 "#3600ff26",
1601 "#3100fb35",
1602 "#2d01dd4a",
1603 "#2b00d066",
1604 "#2400b7a9",
1605 "#2300abb2",
1606 "#1f0099af",
1607 "#0b0043d9",
1608 ],
1609 dark: [
1610 "#14121fff",
1611 "#1b1525ff",
1612 "#291f43ff",
1613 "#33255bff",
1614 "#3c2e69ff",
1615 "#473876ff",
1616 "#56468bff",
1617 "#6958adff",
1618 "#6e56cfff",
1619 "#7d66d9ff",
1620 "#baa7ffff",
1621 "#e2ddfeff",
1622 ],
1623 dark_alpha: [
1624 "#4422ff0f",
1625 "#853ff916",
1626 "#8354fe36",
1627 "#7d51fd50",
1628 "#845ffd5f",
1629 "#8f6cfd6d",
1630 "#9879ff83",
1631 "#977dfea8",
1632 "#8668ffcc",
1633 "#9176fed7",
1634 "#baa7ffff",
1635 "#e3defffe",
1636 ],
1637 }
1638 .try_into()
1639 .unwrap()
1640}
1641
1642pub(crate) fn iris() -> ColorScaleSet {
1643 StaticColorScaleSet {
1644 scale: "Iris",
1645 light: [
1646 "#fdfdffff",
1647 "#f8f8ffff",
1648 "#f0f1feff",
1649 "#e6e7ffff",
1650 "#dadcffff",
1651 "#cbcdffff",
1652 "#b8baf8ff",
1653 "#9b9ef0ff",
1654 "#5b5bd6ff",
1655 "#5151cdff",
1656 "#5753c6ff",
1657 "#272962ff",
1658 ],
1659 light_alpha: [
1660 "#0000ff02",
1661 "#0000ff07",
1662 "#0011ee0f",
1663 "#000bff19",
1664 "#000eff25",
1665 "#000aff34",
1666 "#0008e647",
1667 "#0008d964",
1668 "#0000c0a4",
1669 "#0000b6ae",
1670 "#0600abac",
1671 "#000246d8",
1672 ],
1673 dark: [
1674 "#13131eff",
1675 "#171625ff",
1676 "#202248ff",
1677 "#262a65ff",
1678 "#303374ff",
1679 "#3d3e82ff",
1680 "#4a4a95ff",
1681 "#5958b1ff",
1682 "#5b5bd6ff",
1683 "#6e6adeff",
1684 "#b1a9ffff",
1685 "#e0dffeff",
1686 ],
1687 dark_alpha: [
1688 "#3636fe0e",
1689 "#564bf916",
1690 "#525bff3b",
1691 "#4d58ff5a",
1692 "#5b62fd6b",
1693 "#6d6ffd7a",
1694 "#7777fe8e",
1695 "#7b7afeac",
1696 "#6a6afed4",
1697 "#7d79ffdc",
1698 "#b1a9ffff",
1699 "#e1e0fffe",
1700 ],
1701 }
1702 .try_into()
1703 .unwrap()
1704}
1705
1706pub(crate) fn indigo() -> ColorScaleSet {
1707 StaticColorScaleSet {
1708 scale: "Indigo",
1709 light: [
1710 "#fdfdfeff",
1711 "#f7f9ffff",
1712 "#edf2feff",
1713 "#e1e9ffff",
1714 "#d2deffff",
1715 "#c1d0ffff",
1716 "#abbdf9ff",
1717 "#8da4efff",
1718 "#3e63ddff",
1719 "#3358d4ff",
1720 "#3a5bc7ff",
1721 "#1f2d5cff",
1722 ],
1723 light_alpha: [
1724 "#00008002",
1725 "#0040ff08",
1726 "#0047f112",
1727 "#0044ff1e",
1728 "#0044ff2d",
1729 "#003eff3e",
1730 "#0037ed54",
1731 "#0034dc72",
1732 "#0031d2c1",
1733 "#002ec9cc",
1734 "#002bb7c5",
1735 "#001046e0",
1736 ],
1737 dark: [
1738 "#11131fff",
1739 "#141726ff",
1740 "#182449ff",
1741 "#1d2e62ff",
1742 "#253974ff",
1743 "#304384ff",
1744 "#3a4f97ff",
1745 "#435db1ff",
1746 "#3e63ddff",
1747 "#5472e4ff",
1748 "#9eb1ffff",
1749 "#d6e1ffff",
1750 ],
1751 dark_alpha: [
1752 "#1133ff0f",
1753 "#3354fa17",
1754 "#2f62ff3c",
1755 "#3566ff57",
1756 "#4171fd6b",
1757 "#5178fd7c",
1758 "#5a7fff90",
1759 "#5b81feac",
1760 "#4671ffdb",
1761 "#5c7efee3",
1762 "#9eb1ffff",
1763 "#d6e1ffff",
1764 ],
1765 }
1766 .try_into()
1767 .unwrap()
1768}
1769
1770pub(crate) fn blue() -> ColorScaleSet {
1771 StaticColorScaleSet {
1772 scale: "Blue",
1773 light: [
1774 "#fbfdffff",
1775 "#f4faffff",
1776 "#e6f4feff",
1777 "#d5efffff",
1778 "#c2e5ffff",
1779 "#acd8fcff",
1780 "#8ec8f6ff",
1781 "#5eb1efff",
1782 "#0090ffff",
1783 "#0588f0ff",
1784 "#0d74ceff",
1785 "#113264ff",
1786 ],
1787 light_alpha: [
1788 "#0080ff04",
1789 "#008cff0b",
1790 "#008ff519",
1791 "#009eff2a",
1792 "#0093ff3d",
1793 "#0088f653",
1794 "#0083eb71",
1795 "#0084e6a1",
1796 "#0090ffff",
1797 "#0086f0fa",
1798 "#006dcbf2",
1799 "#002359ee",
1800 ],
1801 dark: [
1802 "#0d1520ff",
1803 "#111927ff",
1804 "#0d2847ff",
1805 "#003362ff",
1806 "#004074ff",
1807 "#104d87ff",
1808 "#205d9eff",
1809 "#2870bdff",
1810 "#0090ffff",
1811 "#3b9effff",
1812 "#70b8ffff",
1813 "#c2e6ffff",
1814 ],
1815 dark_alpha: [
1816 "#004df211",
1817 "#1166fb18",
1818 "#0077ff3a",
1819 "#0075ff57",
1820 "#0081fd6b",
1821 "#0f89fd7f",
1822 "#2a91fe98",
1823 "#3094feb9",
1824 "#0090ffff",
1825 "#3b9effff",
1826 "#70b8ffff",
1827 "#c2e6ffff",
1828 ],
1829 }
1830 .try_into()
1831 .unwrap()
1832}
1833
1834pub(crate) fn cyan() -> ColorScaleSet {
1835 StaticColorScaleSet {
1836 scale: "Cyan",
1837 light: [
1838 "#fafdfeff",
1839 "#f2fafbff",
1840 "#def7f9ff",
1841 "#caf1f6ff",
1842 "#b5e9f0ff",
1843 "#9ddde7ff",
1844 "#7dcedcff",
1845 "#3db9cfff",
1846 "#00a2c7ff",
1847 "#0797b9ff",
1848 "#107d98ff",
1849 "#0d3c48ff",
1850 ],
1851 light_alpha: [
1852 "#0099cc05",
1853 "#009db10d",
1854 "#00c2d121",
1855 "#00bcd435",
1856 "#01b4cc4a",
1857 "#00a7c162",
1858 "#009fbb82",
1859 "#00a3c0c2",
1860 "#00a2c7ff",
1861 "#0094b7f8",
1862 "#007491ef",
1863 "#00323ef2",
1864 ],
1865 dark: [
1866 "#0b161aff",
1867 "#101b20ff",
1868 "#082c36ff",
1869 "#003848ff",
1870 "#004558ff",
1871 "#045468ff",
1872 "#12677eff",
1873 "#11809cff",
1874 "#00a2c7ff",
1875 "#23afd0ff",
1876 "#4ccce6ff",
1877 "#b6ecf7ff",
1878 ],
1879 dark_alpha: [
1880 "#0091f70a",
1881 "#02a7f211",
1882 "#00befd28",
1883 "#00baff3b",
1884 "#00befd4d",
1885 "#00c7fd5e",
1886 "#14cdff75",
1887 "#11cfff95",
1888 "#00cfffc3",
1889 "#28d6ffcd",
1890 "#52e1fee5",
1891 "#bbf3fef7",
1892 ],
1893 }
1894 .try_into()
1895 .unwrap()
1896}
1897
1898pub(crate) fn teal() -> ColorScaleSet {
1899 StaticColorScaleSet {
1900 scale: "Teal",
1901 light: [
1902 "#fafefdff",
1903 "#f3fbf9ff",
1904 "#e0f8f3ff",
1905 "#ccf3eaff",
1906 "#b8eae0ff",
1907 "#a1ded2ff",
1908 "#83cdc1ff",
1909 "#53b9abff",
1910 "#12a594ff",
1911 "#0d9b8aff",
1912 "#008573ff",
1913 "#0d3d38ff",
1914 ],
1915 light_alpha: [
1916 "#00cc9905",
1917 "#00aa800c",
1918 "#00c69d1f",
1919 "#00c39633",
1920 "#00b49047",
1921 "#00a6855e",
1922 "#0099807c",
1923 "#009783ac",
1924 "#009e8ced",
1925 "#009684f2",
1926 "#008573ff",
1927 "#00332df2",
1928 ],
1929 dark: [
1930 "#0d1514ff",
1931 "#111c1bff",
1932 "#0d2d2aff",
1933 "#023b37ff",
1934 "#084843ff",
1935 "#145750ff",
1936 "#1c6961ff",
1937 "#207e73ff",
1938 "#12a594ff",
1939 "#0eb39eff",
1940 "#0bd8b6ff",
1941 "#adf0ddff",
1942 ],
1943 dark_alpha: [
1944 "#00deab05",
1945 "#12fbe60c",
1946 "#00ffe61e",
1947 "#00ffe92d",
1948 "#00ffea3b",
1949 "#1cffe84b",
1950 "#2efde85f",
1951 "#32ffe775",
1952 "#13ffe49f",
1953 "#0dffe0ae",
1954 "#0afed5d6",
1955 "#b8ffebef",
1956 ],
1957 }
1958 .try_into()
1959 .unwrap()
1960}
1961
1962pub(crate) fn jade() -> ColorScaleSet {
1963 StaticColorScaleSet {
1964 scale: "Jade",
1965 light: [
1966 "#fbfefdff",
1967 "#f4fbf7ff",
1968 "#e6f7edff",
1969 "#d6f1e3ff",
1970 "#c3e9d7ff",
1971 "#acdec8ff",
1972 "#8bceb6ff",
1973 "#56ba9fff",
1974 "#29a383ff",
1975 "#26997bff",
1976 "#208368ff",
1977 "#1d3b31ff",
1978 ],
1979 light_alpha: [
1980 "#00c08004",
1981 "#00a3460b",
1982 "#00ae4819",
1983 "#00a85129",
1984 "#00a2553c",
1985 "#009a5753",
1986 "#00945f74",
1987 "#00976ea9",
1988 "#00916bd6",
1989 "#008764d9",
1990 "#007152df",
1991 "#002217e2",
1992 ],
1993 dark: [
1994 "#0d1512ff",
1995 "#121c18ff",
1996 "#0f2e22ff",
1997 "#0b3b2cff",
1998 "#114837ff",
1999 "#1b5745ff",
2000 "#246854ff",
2001 "#2a7e68ff",
2002 "#29a383ff",
2003 "#27b08bff",
2004 "#1fd8a4ff",
2005 "#adf0d4ff",
2006 ],
2007 dark_alpha: [
2008 "#00de4505",
2009 "#27fba60c",
2010 "#02f99920",
2011 "#00ffaa2d",
2012 "#11ffb63b",
2013 "#34ffc24b",
2014 "#45fdc75e",
2015 "#48ffcf75",
2016 "#38feca9d",
2017 "#31fec7ab",
2018 "#21fec0d6",
2019 "#b8ffe1ef",
2020 ],
2021 }
2022 .try_into()
2023 .unwrap()
2024}
2025
2026pub(crate) fn green() -> ColorScaleSet {
2027 StaticColorScaleSet {
2028 scale: "Green",
2029 light: [
2030 "#fbfefcff",
2031 "#f4fbf6ff",
2032 "#e6f6ebff",
2033 "#d6f1dfff",
2034 "#c4e8d1ff",
2035 "#adddc0ff",
2036 "#8eceaaff",
2037 "#5bb98bff",
2038 "#30a46cff",
2039 "#2b9a66ff",
2040 "#218358ff",
2041 "#193b2dff",
2042 ],
2043 light_alpha: [
2044 "#00c04004",
2045 "#00a32f0b",
2046 "#00a43319",
2047 "#00a83829",
2048 "#019c393b",
2049 "#00963c52",
2050 "#00914071",
2051 "#00924ba4",
2052 "#008f4acf",
2053 "#008647d4",
2054 "#00713fde",
2055 "#002616e6",
2056 ],
2057 dark: [
2058 "#0e1512ff",
2059 "#121b17ff",
2060 "#132d21ff",
2061 "#113b29ff",
2062 "#174933ff",
2063 "#20573eff",
2064 "#28684aff",
2065 "#2f7c57ff",
2066 "#30a46cff",
2067 "#33b074ff",
2068 "#3dd68cff",
2069 "#b1f1cbff",
2070 ],
2071 dark_alpha: [
2072 "#00de4505",
2073 "#29f99d0b",
2074 "#22ff991e",
2075 "#11ff992d",
2076 "#2bffa23c",
2077 "#44ffaa4b",
2078 "#50fdac5e",
2079 "#54ffad73",
2080 "#44ffa49e",
2081 "#43fea4ab",
2082 "#46fea5d4",
2083 "#bbffd7f0",
2084 ],
2085 }
2086 .try_into()
2087 .unwrap()
2088}
2089
2090pub(crate) fn grass() -> ColorScaleSet {
2091 StaticColorScaleSet {
2092 scale: "Grass",
2093 light: [
2094 "#fbfefbff",
2095 "#f5fbf5ff",
2096 "#e9f6e9ff",
2097 "#daf1dbff",
2098 "#c9e8caff",
2099 "#b2ddb5ff",
2100 "#94ce9aff",
2101 "#65ba74ff",
2102 "#46a758ff",
2103 "#3e9b4fff",
2104 "#2a7e3bff",
2105 "#203c25ff",
2106 ],
2107 light_alpha: [
2108 "#00c00004",
2109 "#0099000a",
2110 "#00970016",
2111 "#009f0725",
2112 "#00930536",
2113 "#008f0a4d",
2114 "#018b0f6b",
2115 "#008d199a",
2116 "#008619b9",
2117 "#007b17c1",
2118 "#006514d5",
2119 "#002006df",
2120 ],
2121 dark: [
2122 "#0e1511ff",
2123 "#141a15ff",
2124 "#1b2a1eff",
2125 "#1d3a24ff",
2126 "#25482dff",
2127 "#2d5736ff",
2128 "#366740ff",
2129 "#3e7949ff",
2130 "#46a758ff",
2131 "#53b365ff",
2132 "#71d083ff",
2133 "#c2f0c2ff",
2134 ],
2135 dark_alpha: [
2136 "#00de1205",
2137 "#5ef7780a",
2138 "#70fe8c1b",
2139 "#57ff802c",
2140 "#68ff8b3b",
2141 "#71ff8f4b",
2142 "#77fd925d",
2143 "#77fd9070",
2144 "#65ff82a1",
2145 "#72ff8dae",
2146 "#89ff9fcd",
2147 "#ceffceef",
2148 ],
2149 }
2150 .try_into()
2151 .unwrap()
2152}
2153
2154pub(crate) fn lime() -> ColorScaleSet {
2155 StaticColorScaleSet {
2156 scale: "Lime",
2157 light: [
2158 "#fcfdfaff",
2159 "#f8faf3ff",
2160 "#eef6d6ff",
2161 "#e2f0bdff",
2162 "#d3e7a6ff",
2163 "#c2da91ff",
2164 "#abc978ff",
2165 "#8db654ff",
2166 "#bdee63ff",
2167 "#b0e64cff",
2168 "#5c7c2fff",
2169 "#37401cff",
2170 ],
2171 light_alpha: [
2172 "#66990005",
2173 "#6b95000c",
2174 "#96c80029",
2175 "#8fc60042",
2176 "#81bb0059",
2177 "#72aa006e",
2178 "#61990087",
2179 "#559200ab",
2180 "#93e4009c",
2181 "#8fdc00b3",
2182 "#375f00d0",
2183 "#1e2900e3",
2184 ],
2185 dark: [
2186 "#11130cff",
2187 "#151a10ff",
2188 "#1f2917ff",
2189 "#29371dff",
2190 "#334423ff",
2191 "#3d522aff",
2192 "#496231ff",
2193 "#577538ff",
2194 "#bdee63ff",
2195 "#d4ff70ff",
2196 "#bde56cff",
2197 "#e3f7baff",
2198 ],
2199 dark_alpha: [
2200 "#11bb0003",
2201 "#78f7000a",
2202 "#9bfd4c1a",
2203 "#a7fe5c29",
2204 "#affe6537",
2205 "#b2fe6d46",
2206 "#b6ff6f57",
2207 "#b6fd6d6c",
2208 "#caff69ed",
2209 "#d4ff70ff",
2210 "#d1fe77e4",
2211 "#e9febff7",
2212 ],
2213 }
2214 .try_into()
2215 .unwrap()
2216}
2217
2218pub(crate) fn mint() -> ColorScaleSet {
2219 StaticColorScaleSet {
2220 scale: "Mint",
2221 light: [
2222 "#f9fefdff",
2223 "#f2fbf9ff",
2224 "#ddf9f2ff",
2225 "#c8f4e9ff",
2226 "#b3ecdeff",
2227 "#9ce0d0ff",
2228 "#7ecfbdff",
2229 "#4cbba5ff",
2230 "#86ead4ff",
2231 "#7de0cbff",
2232 "#027864ff",
2233 "#16433cff",
2234 ],
2235 light_alpha: [
2236 "#00d5aa06",
2237 "#00b18a0d",
2238 "#00d29e22",
2239 "#00cc9937",
2240 "#00c0914c",
2241 "#00b08663",
2242 "#00a17d81",
2243 "#009e7fb3",
2244 "#00d3a579",
2245 "#00c39982",
2246 "#007763fd",
2247 "#00312ae9",
2248 ],
2249 dark: [
2250 "#0e1515ff",
2251 "#0f1b1bff",
2252 "#092c2bff",
2253 "#003a38ff",
2254 "#004744ff",
2255 "#105650ff",
2256 "#1e685fff",
2257 "#277f70ff",
2258 "#86ead4ff",
2259 "#a8f5e5ff",
2260 "#58d5baff",
2261 "#c4f5e1ff",
2262 ],
2263 dark_alpha: [
2264 "#00dede05",
2265 "#00f9f90b",
2266 "#00fff61d",
2267 "#00fff42c",
2268 "#00fff23a",
2269 "#0effeb4a",
2270 "#34fde55e",
2271 "#41ffdf76",
2272 "#92ffe7e9",
2273 "#aefeedf5",
2274 "#67ffded2",
2275 "#cbfee9f5",
2276 ],
2277 }
2278 .try_into()
2279 .unwrap()
2280}
2281
2282pub(crate) fn sky() -> ColorScaleSet {
2283 StaticColorScaleSet {
2284 scale: "Sky",
2285 light: [
2286 "#f9feffff",
2287 "#f1fafdff",
2288 "#e1f6fdff",
2289 "#d1f0faff",
2290 "#bee7f5ff",
2291 "#a9daedff",
2292 "#8dcae3ff",
2293 "#60b3d7ff",
2294 "#7ce2feff",
2295 "#74daf8ff",
2296 "#00749eff",
2297 "#1d3e56ff",
2298 ],
2299 light_alpha: [
2300 "#00d5ff06",
2301 "#00a4db0e",
2302 "#00b3ee1e",
2303 "#00ace42e",
2304 "#00a1d841",
2305 "#0092ca56",
2306 "#0089c172",
2307 "#0085bf9f",
2308 "#00c7fe83",
2309 "#00bcf38b",
2310 "#00749eff",
2311 "#002540e2",
2312 ],
2313 dark: [
2314 "#0d141fff",
2315 "#111a27ff",
2316 "#112840ff",
2317 "#113555ff",
2318 "#154467ff",
2319 "#1b537bff",
2320 "#1f6692ff",
2321 "#197caeff",
2322 "#7ce2feff",
2323 "#a8eeffff",
2324 "#75c7f0ff",
2325 "#c2f3ffff",
2326 ],
2327 dark_alpha: [
2328 "#0044ff0f",
2329 "#1171fb18",
2330 "#1184fc33",
2331 "#128fff49",
2332 "#1c9dfd5d",
2333 "#28a5ff72",
2334 "#2badfe8b",
2335 "#1db2fea9",
2336 "#7ce3fffe",
2337 "#a8eeffff",
2338 "#7cd3ffef",
2339 "#c2f3ffff",
2340 ],
2341 }
2342 .try_into()
2343 .unwrap()
2344}
2345
2346pub(crate) fn black() -> ColorScaleSet {
2347 StaticColorScaleSet {
2348 scale: "Black",
2349 light: [
2350 "#0000000d",
2351 "#0000001a",
2352 "#00000026",
2353 "#00000033",
2354 "#0000004d",
2355 "#00000066",
2356 "#00000080",
2357 "#00000099",
2358 "#000000b3",
2359 "#000000cc",
2360 "#000000e6",
2361 "#000000f2",
2362 ],
2363 light_alpha: [
2364 "#0000000d",
2365 "#0000001a",
2366 "#00000026",
2367 "#00000033",
2368 "#0000004d",
2369 "#00000066",
2370 "#00000080",
2371 "#00000099",
2372 "#000000b3",
2373 "#000000cc",
2374 "#000000e6",
2375 "#000000f2",
2376 ],
2377 dark: [
2378 "#0000000d",
2379 "#0000001a",
2380 "#00000026",
2381 "#00000033",
2382 "#0000004d",
2383 "#00000066",
2384 "#00000080",
2385 "#00000099",
2386 "#000000b3",
2387 "#000000cc",
2388 "#000000e6",
2389 "#000000f2",
2390 ],
2391 dark_alpha: [
2392 "#0000000d",
2393 "#0000001a",
2394 "#00000026",
2395 "#00000033",
2396 "#0000004d",
2397 "#00000066",
2398 "#00000080",
2399 "#00000099",
2400 "#000000b3",
2401 "#000000cc",
2402 "#000000e6",
2403 "#000000f2",
2404 ],
2405 }
2406 .try_into()
2407 .unwrap()
2408}
2409
2410pub(crate) fn white() -> ColorScaleSet {
2411 StaticColorScaleSet {
2412 scale: "White",
2413 light: [
2414 "#ffffff0d",
2415 "#ffffff1a",
2416 "#ffffff26",
2417 "#ffffff33",
2418 "#ffffff4d",
2419 "#ffffff66",
2420 "#ffffff80",
2421 "#ffffff99",
2422 "#ffffffb3",
2423 "#ffffffcc",
2424 "#ffffffe6",
2425 "#fffffff2",
2426 ],
2427 light_alpha: [
2428 "#ffffff0d",
2429 "#ffffff1a",
2430 "#ffffff26",
2431 "#ffffff33",
2432 "#ffffff4d",
2433 "#ffffff66",
2434 "#ffffff80",
2435 "#ffffff99",
2436 "#ffffffb3",
2437 "#ffffffcc",
2438 "#ffffffe6",
2439 "#fffffff2",
2440 ],
2441 dark: [
2442 "#ffffff0d",
2443 "#ffffff1a",
2444 "#ffffff26",
2445 "#ffffff33",
2446 "#ffffff4d",
2447 "#ffffff66",
2448 "#ffffff80",
2449 "#ffffff99",
2450 "#ffffffb3",
2451 "#ffffffcc",
2452 "#ffffffe6",
2453 "#fffffff2",
2454 ],
2455 dark_alpha: [
2456 "#ffffff0d",
2457 "#ffffff1a",
2458 "#ffffff26",
2459 "#ffffff33",
2460 "#ffffff4d",
2461 "#ffffff66",
2462 "#ffffff80",
2463 "#ffffff99",
2464 "#ffffffb3",
2465 "#ffffffcc",
2466 "#ffffffe6",
2467 "#fffffff2",
2468 ],
2469 }
2470 .try_into()
2471 .unwrap()
2472}