pub const LIGHTGRAY: rgb::RGB8 = rgb::RGB8::new(200, 200, 200);
pub const GRAY: rgb::RGB8 = rgb::RGB8::new(130, 130, 130);
pub const DARKGRAY: rgb::RGB8 = rgb::RGB8::new(80, 80, 80);
pub const YELLOW: rgb::RGB8 = rgb::RGB8::new(253, 249, 0);
pub const GOLD: rgb::RGB8 = rgb::RGB8::new(255, 203, 0);
pub const ORANGE: rgb::RGB8 = rgb::RGB8::new(255, 161, 0);
pub const PINK: rgb::RGB8 = rgb::RGB8::new(255, 109, 194);
pub const RED: rgb::RGB8 = rgb::RGB8::new(230, 41, 55);
pub const MAROON: rgb::RGB8 = rgb::RGB8::new(190, 33, 55);
pub const GREEN: rgb::RGB8 = rgb::RGB8::new(0, 228, 48);
pub const LIME: rgb::RGB8 = rgb::RGB8::new(0, 158, 47);
pub const DARKGREEN: rgb::RGB8 = rgb::RGB8::new(0, 117, 44);
pub const SKYBLUE: rgb::RGB8 = rgb::RGB8::new(102, 191, 255);
pub const BLUE: rgb::RGB8 = rgb::RGB8::new(0, 121, 241);
pub const DARKBLUE: rgb::RGB8 = rgb::RGB8::new(0, 82, 172);
pub const PURPLE: rgb::RGB8 = rgb::RGB8::new(200, 122, 255);
pub const VIOLET: rgb::RGB8 = rgb::RGB8::new(135, 60, 190);
pub const DARKPURPLE: rgb::RGB8 = rgb::RGB8::new(112, 31, 126);
pub const BEIGE: rgb::RGB8 = rgb::RGB8::new(211, 176, 131);
pub const BROWN: rgb::RGB8 = rgb::RGB8::new(127, 106, 79);
pub const DARKBROWN: rgb::RGB8 = rgb::RGB8::new(76, 63, 47);
pub const WHITE: rgb::RGB8 = rgb::RGB8::new(255, 255, 255);
pub const BLACK: rgb::RGB8 = rgb::RGB8::new(0, 0, 0);
pub const BLANK: rgb::RGBA8 = rgb::RGBA8::new(0, 0, 0, 0);
pub const MAGENTA: rgb::RGB8 = rgb::RGB8::new(255, 0, 255);
pub const RAYWHITE: rgb::RGB8 = rgb::RGB8::new(245, 245, 245);