Type Definition attheme::Color

source ·
pub type Color = [u8; 4];
Expand description

Represents colors.

The order of channels is [red, green, blue, alpha]. An array was chosen so it should be simplier to use this color with other crates, rather than if we used a struct.