Struct const_css_color::Color
source · [−]Expand description
Color in rgba format, where {red,green,blue} in 0..255, alpha in 0.0..1.0 https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgba()
Fields
r: u8red channel, ranges from 0 to 255
g: u8green channel, ranges from 0 to 255
b: u8blue channel, ranges from 0 to 255
a: f32alpha channel, ranges from 0.0 to 1.0
Implementations
Parse predefined colors at compile time https://www.w3.org/wiki/CSS/Properties/color/keywords
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Color
impl UnwindSafe for Color
Blanket Implementations
Mutably borrows from an owned value. Read more