color_conv

Crates.iocolor_conv
lib.rscolor_conv
version0.2.1
sourcesrc
created_at2021-02-25 03:49:59.559254
updated_at2021-02-25 05:16:11.126231
descriptionA color conversion library for Rust
homepage
repositoryhttps://github.com/safinsingh/color_conv
max_upload_size
id360244
size49,513
Safin Singh (safinsingh)

documentation

README

color_conv

color_conv is a simple and lightweight helper library for easily and programmatically converting between the RGB, CMYK, HSL, and hex color formats.

[dependencies]
color_conv = "0.2.1"

Example

use color_conv::Color;
use color_conv::Cmyk;
use color_conv::Rgb;

let cyan = Cmyk::new_unchecked(100, 0, 0, 0);
let cyan_rgb = cyan.to_rgb();

assert_eq!(Rgb::new(0, 255, 255), cyan_rgb);
Commit count: 4

cargo fmt