ori::prelude

Struct Color

Source
#[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

Source

pub const TRANSPARENT: Color = _

Source

pub const BLACK: Color = _

Source

pub const WHITE: Color = _

Source

pub const RED: Color = _

Source

pub const GREEN: Color = _

Source

pub const BLUE: Color = _

Source

pub const YELLOW: Color = _

Source

pub const CYAN: Color = _

Source

pub const MAGENTA: Color = _

Source§

impl Color

Source

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.

Source

pub const fn rgb(r: f32, g: f32, b: f32) -> Color

Create a new color with the given red, green and blue components.

Source

pub const fn grayscale(g: f32) -> Color

Create a new color with the given gray component.

Source

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.

Source

pub fn r8(&self) -> u8

Get the red component as an 8 bit integer.

Source

pub fn g8(&self) -> u8

Get the green component as an 8 bit integer.

Source

pub fn b8(&self) -> u8

Get the blue component as an 8 bit integer.

Source

pub fn a8(&self) -> u8

Get the alpha component as an 8 bit integer.

Source

pub fn try_hex(hex: &str) -> Option<Color>

Try to parse a color from a hex string.

Source

pub fn hex(hex: &str) -> Color

Parse a color from a hex string.

§Panics
  • If the string is not a valid hex color.
Source

pub fn to_hex(self) -> DisplayHex

Convert the color to hex.

Source

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.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn hsl(h: f32, s: f32, l: f32) -> Color

Returns a new color with the given hue, saturation, lightness and alpha components.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn to_hsla(self) -> (f32, f32, f32, f32)

Convert the color to a hue, saturation, lightness and alpha tuple.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn to_hsl(self) -> (f32, f32, f32)

Convert the color to a hue, saturation, lightness tuple.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

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.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn hsv(h: f32, s: f32, v: f32) -> Color

Returns a new color with the given hue, saturation and value.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn to_hsva(self) -> (f32, f32, f32, f32)

Convert the color to a hue, saturation, value and alpha tuple.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn to_hsv(self) -> (f32, f32, f32)

Convert the color to a hue, saturation, value tuple.

See https://en.wikipedia.org/wiki/HSL_and_HSV.

Source

pub fn oklaba(l: f32, a: f32, b: f32, alpha: f32) -> Color

Convert a color from oklab to sRGB.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn oklab(l: f32, a: f32, b: f32) -> Color

Convert a color from oklab to sRGB.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn to_oklaba(self) -> (f32, f32, f32, f32)

Convert a color from sRGB to oklab.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn to_oklab(self) -> (f32, f32, f32)

Convert a color from sRGB to oklab.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn oklcha(l: f32, c: f32, h: f32, alpha: f32) -> Color

Convert a color from oklch to sRGB.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn oklch(l: f32, c: f32, h: f32) -> Color

Convert a color from oklch to sRGB.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn to_oklcha(self) -> (f32, f32, f32, f32)

Convert a color from sRGB to oklch.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn to_oklch(self) -> (f32, f32, f32)

Convert a color from sRGB to oklch.

See https://bottosson.github.io/posts/oklab/.

Source

pub fn okhsla(h: f32, s: f32, l: f32, alpha: f32) -> Color

Convert a color from okhsl to sRGB.

Source

pub fn okhsl(h: f32, s: f32, l: f32) -> Color

Convert a color from okhsl to sRGB.

Source

pub fn to_okhsla(self) -> (f32, f32, f32, f32)

Convert a color from sRGB to okhsl.

Source

pub fn to_okhsl(self) -> (f32, f32, f32)

Convert a color from sRGB to okhsl.

Source

pub fn okhsva(h: f32, s: f32, v: f32, alpha: f32) -> Color

Convert a color from okhsv to sRGB.

Source

pub fn okhsv(h: f32, s: f32, v: f32) -> Color

Convert a color from okhsv to sRGB.

Source

pub fn to_okhsva(self) -> (f32, f32, f32, f32)

Convert a color from sRGB to okhsv.

Source

pub fn to_okhsv(self) -> (f32, f32, f32)

Convert a color from sRGB to okhsv.

Source

pub fn luminocity(self) -> f32

Get the luminocity.

Source

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.

Source

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.

Source

pub fn saturate(self, amount: f32) -> Color

Saturates the color by given amount.

Source

pub fn desaturate(self, amount: f32) -> Color

Desaturates the color by given amount.

Source

pub fn lighten(self, amount: f32) -> Color

Brighten the color by the given amount.

Source

pub fn darken(self, amount: f32) -> Color

Darken the color by the given amount.

Source

pub fn fade(self, amount: f32) -> Color

Fade the color by the given amount.

Source

pub fn is_translucent(self) -> bool

Returns true if the color is translucent.

Source

pub fn is_transparent(self) -> bool

Returns true if the color is transparent.

Source

pub fn to_srgb(self) -> [f32; 4]

Convert the color to linear sRGB.

See https://en.wikipedia.org/wiki/SRGB.

Source

pub fn to_rgba8(self) -> [u8; 4]

Convert the color to linear sRGB.

Trait Implementations§

Source§

impl Add for Color

Source§

type Output = Color

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Color) -> <Color as Add>::Output

Performs the + operation. Read more
Source§

impl AddAssign for Color

Source§

fn add_assign(&mut self, rhs: Color)

Performs the += operation. Read more
Source§

impl Clone for Color

Source§

fn clone(&self) -> Color

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Color

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for Color

Source§

fn default() -> Color

Returns the “default value” for a type. Read more
Source§

impl Display for Color

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl From<[f32; 4]> for Color

Source§

fn from(_: [f32; 4]) -> Color

Converts to this type from the input type.
Source§

impl From<(f32, f32, f32, f32)> for Color

Source§

fn from(_: (f32, f32, f32, f32)) -> Color

Converts to this type from the input type.
Source§

impl From<Color> for Paint

Source§

fn from(value: Color) -> Paint

Converts to this type from the input type.
Source§

impl Hash for Color

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Mul<f32> for Color

Source§

type Output = Color

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f32) -> <Color as Mul<f32>>::Output

Performs the * operation. Read more
Source§

impl Mul for Color

Source§

type Output = Color

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Color) -> <Color as Mul>::Output

Performs the * operation. Read more
Source§

impl PartialEq for Color

Source§

fn eq(&self, other: &Color) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Color

Source§

impl StructuralPartialEq for Color

Auto Trait Implementations§

§

impl Freeze for Color

§

impl RefUnwindSafe for Color

§

impl Send for Color

§

impl Sync for Color

§

impl Unpin for Color

§

impl UnwindSafe for Color

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> ToSmolStr for T
where T: Display + ?Sized,

§

fn to_smolstr(&self) -> SmolStr

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more