color-art
color-art copied to clipboard
A rust crate for working with colors and color spaces.
In describtion: "0.0 is no white, 1.0 is all white" for tint "0.0 is no black, 1.0 is all black" for shade But when I want to add some black...
use `color!` marco to create a hsl color like ```rs let color = color!(hsl(30, 54%, 66%)) assert_eq!(color.hue(), 30.0); assert_eq!(color.saturation(), 0.54); assert_eq!(color.lightness(), 0.66); ``` I need help for this feature.
Hi there, Is there any chance of transitioning this to a `no_std` crate? I haven't scoured the sources enough to see whether or not this would be a trivial change,...