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