pub type Rgb<T = f64> = RGB<T>;
struct Rgb<T = f64> { pub r: T, pub g: T, pub b: T, }
r: T
Red Component
g: T
Green Component
b: T
Blue Component