image_builder/colors.rs
1/// The library provides a variety of basic colors for quick use but imposes no limits on the
2/// choice of colors used. Any RGBA color can be used as long as it follows this structure.
3pub type Color = [u8; 4];
4
5pub const YELLOW: Color = [255, 255, 0, 255];
6pub const GREEN: Color = [0, 176, 80, 255];
7pub const GRAY: Color = [191, 191, 191, 255];
8pub const RED: Color = [255, 0, 0, 255];
9pub const BLUE: Color = [0, 112, 192, 255];
10pub const ORANGE: Color = [255, 153, 0, 255];
11pub const PURPLE: Color = [112, 48, 160, 255];
12pub const WHITE: Color = [255, 255, 255, 255];
13pub const BLACK: Color = [0, 0, 0, 255];