sb_rust_library/plotter/
color.rs1use image::Rgb;
2
3pub type Color = Rgb<u8>;
5
6pub const RED: Color = Rgb([243, 97, 97]);
8pub const ORANGE: Color = Rgb([247, 184, 85]);
10pub const YELLOW: Color = Rgb([243, 243, 97]);
12pub const GREEN: Color = Rgb([150, 217, 77]);
14pub const BLUE: Color = Rgb([129, 196, 238]);
16pub const PURPLE: Color = Rgb([151, 93, 201]);
18pub const PINK: Color = Rgb([221, 95, 114]);
20pub const WHITE: Color = Rgb([255, 255, 255]);
22pub const BLACK: Color = Rgb([0, 0, 0]);
24pub const MAUVE: Color = Rgb([199, 171, 175]);
26pub const GREY: Color = Rgb([226, 215, 216]);