Struct csscolorparser::Color[][src]

pub struct Color { /* fields omitted */ }

The color

Implementations

impl Color[src]

pub fn from_rgb(r: f64, g: f64, b: f64) -> Color[src]

Arguments:

  • r: Red value [0..1]
  • g: Green value [0..1]
  • b: Blue value [0..1]

pub fn from_rgba(r: f64, g: f64, b: f64, a: f64) -> Color[src]

Arguments:

  • r: Red value [0..1]
  • g: Green value [0..1]
  • b: Blue value [0..1]
  • a: Alpha value [0..1]

pub fn from_rgb_u8(r: u8, g: u8, b: u8) -> Color[src]

Arguments:

  • r: Red value [0..255]
  • g: Green value [0..255]
  • b: Blue value [0..255]

pub fn from_rgba_u8(r: u8, g: u8, b: u8, a: u8) -> Color[src]

Arguments:

  • r: Red value [0..255]
  • g: Green value [0..255]
  • b: Blue value [0..255]
  • a: Alpha value [0..255]

pub fn from_lrgb(r: f64, g: f64, b: f64) -> Color[src]

Arguments:

  • r: Red value [0..1]
  • g: Green value [0..1]
  • b: Blue value [0..1]

pub fn from_lrgba(r: f64, g: f64, b: f64, a: f64) -> Color[src]

Arguments:

  • r: Red value [0..1]
  • g: Green value [0..1]
  • b: Blue value [0..1]
  • a: Alpha value [0..1]

pub fn from_lrgb_u8(r: u8, g: u8, b: u8) -> Color[src]

Arguments:

  • r: Red value [0..255]
  • g: Green value [0..255]
  • b: Blue value [0..255]

pub fn from_lrgba_u8(r: u8, g: u8, b: u8, a: u8) -> Color[src]

Arguments:

  • r: Red value [0..255]
  • g: Green value [0..255]
  • b: Blue value [0..255]
  • a: Alpha value [0..255]

pub fn from_hsv(h: f64, s: f64, v: f64) -> Color[src]

Arguments:

  • h: Hue angle [0..360]
  • s: Saturation [0..1]
  • v: Value [0..1]

pub fn from_hsva(h: f64, s: f64, v: f64, a: f64) -> Color[src]

Arguments:

  • h: Hue angle [0..360]
  • s: Saturation [0..1]
  • v: Value [0..1]
  • a: Alpha [0..1]

pub fn from_hsl(h: f64, s: f64, l: f64) -> Color[src]

Arguments:

  • h: Hue angle [0..360]
  • s: Saturation [0..1]
  • l: Lightness [0..1]

pub fn from_hsla(h: f64, s: f64, l: f64, a: f64) -> Color[src]

Arguments:

  • h: Hue angle [0..360]
  • s: Saturation [0..1]
  • l: Lightness [0..1]
  • a: Alpha [0..1]

pub fn from_hwb(h: f64, w: f64, b: f64) -> Color[src]

Arguments:

  • h: Hue angle [0..360]
  • w: Whiteness [0..1]
  • b: Blackness [0..1]

pub fn from_hwba(h: f64, w: f64, b: f64, a: f64) -> Color[src]

Arguments:

  • h: Hue angle [0..360]
  • w: Whiteness [0..1]
  • b: Blackness [0..1]
  • a: Alpha [0..1]

pub fn from_oklab(l: f64, a: f64, b: f64) -> Color[src]

Arguments:

  • l: Perceived lightness
  • a: How green/red the color is
  • b: How blue/yellow the color is

pub fn from_oklaba(l: f64, a: f64, b: f64, alpha: f64) -> Color[src]

Arguments:

  • l: Perceived lightness
  • a: How green/red the color is
  • b: How blue/yellow the color is
  • alpha: Alpha [0..1]

pub fn from_html(s: &str) -> Result<Color, ParseError>[src]

Create color from CSS color string.

Examples

use csscolorparser::Color;

let c = Color::from_html("red")?;

assert_eq!(c.rgba(), (1., 0., 0., 1.));
assert_eq!(c.rgba_u8(), (255, 0, 0, 255));
assert_eq!(c.to_hex_string(), "#ff0000");
assert_eq!(c.to_rgb_string(), "rgb(255,0,0)");

pub fn rgba(&self) -> (f64, f64, f64, f64)[src]

Returns: (r, g, b, a)

  • Red, green, blue and alpha in the range [0..1]

pub fn rgba_u8(&self) -> (u8, u8, u8, u8)[src]

Returns: (r, g, b, a)

  • Red, green, blue and alpha in the range [0..255]

pub fn red(&self) -> f64[src]

Get the red value [0..1].

pub fn green(&self) -> f64[src]

Get the green value [0..1].

pub fn blue(&self) -> f64[src]

Get the blue value [0..1].

pub fn alpha(&self) -> f64[src]

Get the alpha value [0..1].

pub fn to_hsva(&self) -> (f64, f64, f64, f64)[src]

Returns: (h, s, v, a)

  • h: Hue angle [0..360]
  • s: Saturation [0..1]
  • v: Value [0..1]
  • a: Alpha [0..1]

pub fn to_hsla(&self) -> (f64, f64, f64, f64)[src]

Returns: (h, s, l, a)

  • h: Hue angle [0..360]
  • s: Saturation [0..1]
  • l: Lightness [0..1]
  • a: Alpha [0..1]

pub fn to_hwba(&self) -> (f64, f64, f64, f64)[src]

Returns: (h, w, b, a)

  • h: Hue angle [0..360]
  • w: Whiteness [0..1]
  • b: Blackness [0..1]
  • a: Alpha [0..1]

pub fn to_lrgba(&self) -> (f64, f64, f64, f64)[src]

Returns: (r, g, b, a)

  • Red, green, blue and alpha in the range [0..1]

pub fn to_lrgba_u8(&self) -> (u8, u8, u8, u8)[src]

Returns: (r, g, b, a)

  • Red, green, blue and alpha in the range [0..255]

pub fn to_oklaba(&self) -> (f64, f64, f64, f64)[src]

Returns: (l, a, b, alpha)

pub fn to_hex_string(&self) -> String[src]

Get the RGB hexadecimal color string.

pub fn to_rgb_string(&self) -> String[src]

Get the CSS rgb() format string.

pub fn interpolate_rgb(&self, other: &Color, t: f64) -> Color[src]

Blend this color with the other one, in the RGB color-space. t in the range [0..1].

pub fn interpolate_lrgb(&self, other: &Color, t: f64) -> Color[src]

Blend this color with the other one, in the linear RGB color-space. t in the range [0..1].

pub fn interpolate_hsv(&self, other: &Color, t: f64) -> Color[src]

Blend this color with the other one, in the HSV color-space. t in the range [0..1].

pub fn interpolate_oklab(&self, other: &Color, t: f64) -> Color[src]

Blend this color with the other one, in the Oklab color-space. t in the range [0..1].

Trait Implementations

impl Clone for Color[src]

impl Debug for Color[src]

impl Display for Color[src]

impl FromStr for Color[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<Color> for Color[src]

impl StructuralPartialEq for Color[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.