irox_imagery/colormaps/
tableau.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: MIT
// Copyright 2024 IROX Contributors
//

use crate::colormaps::Colormap;
use crate::Color;

pub static TABLEAU_10: &[Color; 10] = &[
    Color::rgb_hex(0x4E79A7),
    Color::rgb_hex(0xF28E2B),
    Color::rgb_hex(0xE15759),
    Color::rgb_hex(0x76B7B2),
    Color::rgb_hex(0x59A14F),
    Color::rgb_hex(0xEDC948),
    Color::rgb_hex(0xB07AA1),
    Color::rgb_hex(0xFF9DA7),
    Color::rgb_hex(0x9C755F),
    Color::rgb_hex(0xBAB0AC),
];

pub static TABLEAU_10_COLORMAP: Colormap = Colormap::new(TABLEAU_10);