#[repr(C)]pub struct Color {
pub r: f32,
pub g: f32,
pub b: f32,
pub a: f32,
}
Expand description
A color with red, green, blue and alpha components.
Fields§
§r: f32
The red component of the color.
g: f32
The green component of the color.
b: f32
The blue component of the color.
a: f32
The alpha component of the color.
Implementations§
Source§impl Color
impl Color
Sourcepub const fn rgba(r: f32, g: f32, b: f32, a: f32) -> Color
pub const fn rgba(r: f32, g: f32, b: f32, a: f32) -> Color
Create a new color with the given red, green, blue and alpha components.
Sourcepub const fn rgb(r: f32, g: f32, b: f32) -> Color
pub const fn rgb(r: f32, g: f32, b: f32) -> Color
Create a new color with the given red, green and blue components.
Sourcepub fn rgba8(r: u8, g: u8, b: u8, a: u8) -> Color
pub fn rgba8(r: u8, g: u8, b: u8, a: u8) -> Color
Create a new color with the given red, green, blue and alpha components.
Sourcepub fn to_hex(self) -> DisplayHex
pub fn to_hex(self) -> DisplayHex
Convert the color to hex.
Sourcepub fn hsla(h: f32, s: f32, l: f32, a: f32) -> Color
pub fn hsla(h: f32, s: f32, l: f32, a: f32) -> Color
Returns a new color with the given hue, saturation, lightness and alpha components.
Sourcepub fn hsl(h: f32, s: f32, l: f32) -> Color
pub fn hsl(h: f32, s: f32, l: f32) -> Color
Returns a new color with the given hue, saturation, lightness and alpha components.
Sourcepub fn to_hsla(self) -> (f32, f32, f32, f32)
pub fn to_hsla(self) -> (f32, f32, f32, f32)
Convert the color to a hue, saturation, lightness and alpha tuple.
Sourcepub fn to_hsl(self) -> (f32, f32, f32)
pub fn to_hsl(self) -> (f32, f32, f32)
Convert the color to a hue, saturation, lightness tuple.
Sourcepub fn hsva(h: f32, s: f32, v: f32, a: f32) -> Color
pub fn hsva(h: f32, s: f32, v: f32, a: f32) -> Color
Returns a new color with the given hue, saturation, value and alpha components.
Sourcepub fn hsv(h: f32, s: f32, v: f32) -> Color
pub fn hsv(h: f32, s: f32, v: f32) -> Color
Returns a new color with the given hue, saturation and value.
Sourcepub fn to_hsva(self) -> (f32, f32, f32, f32)
pub fn to_hsva(self) -> (f32, f32, f32, f32)
Convert the color to a hue, saturation, value and alpha tuple.
Sourcepub fn luminocity(self) -> f32
pub fn luminocity(self) -> f32
Get the luminocity.
Sourcepub fn mix(self, other: Color, t: f32) -> Color
pub fn mix(self, other: Color, t: f32) -> Color
Linearly interpolate between two colors.
This uses a fractor t
between 0.0
and 1.0
.
Where 0.0
is self
and 1.0
is other
.
Note that this is a linear interpolation in the oklab color space.
If rgb interpolation is required use mix_rgb
.
Sourcepub fn mix_rgb(self, other: Color, t: f32) -> Color
pub fn mix_rgb(self, other: Color, t: f32) -> Color
Linearly interpolate between two colors.
This uses a fractor t
between 0.0
and 1.0
.
Where 0.0
is self
and 1.0
is other
.
Note that this is a linear interpolation in the sRGB color space.
If this isn’t necessary use mix
, as it uses the oklab color space,
which is more perceptually uniform.
Sourcepub fn desaturate(self, amount: f32) -> Color
pub fn desaturate(self, amount: f32) -> Color
Desaturates the color by given amount
.
Sourcepub fn is_translucent(self) -> bool
pub fn is_translucent(self) -> bool
Returns true if the color is translucent.
Sourcepub fn is_transparent(self) -> bool
pub fn is_transparent(self) -> bool
Returns true if the color is transparent.
Trait Implementations§
Source§impl AddAssign for Color
impl AddAssign for Color
Source§fn add_assign(&mut self, rhs: Color)
fn add_assign(&mut self, rhs: Color)
+=
operation. Read more