use image::Rgb;
pub type Color = Rgb<u8>;
pub const RED: Color = Rgb([243, 97, 97]);
pub const ORANGE: Color = Rgb([247, 184, 85]);
pub const YELLOW: Color = Rgb([243, 243, 97]);
pub const GREEN: Color = Rgb([150, 217, 77]);
pub const BLUE: Color = Rgb([129, 196, 238]);
pub const PURPLE: Color = Rgb([151, 93, 201]);
pub const PINK: Color = Rgb([221, 95, 114]);
pub const WHITE: Color = Rgb([255, 255, 255]);
pub const BLACK: Color = Rgb([0, 0, 0]);
pub const MAUVE: Color = Rgb([199, 171, 175]);
pub const GREY: Color = Rgb([226, 215, 216]);