blush 0.1.0

A color manipulating library
Documentation
use crate::helper::Fraction;
use crate::Color;

pub trait ColorSpace {
    fn from_color(c: &Color) -> Self;
    fn into_color(&self) -> Color;

    fn mix(&self, other: &Self, fraction: Fraction) -> Self;
}