Type Definition three::Color

source ·
pub type Color = u32;
Expand description

sRGB color represented by a 4-byte hexadecimal number.

let red = 0xFF0000;
let green = 0x00FF00;
let blue = 0x0000FF;