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