coolbee 0.1.0

A simple and simple implementation
Documentation
1
2
3
4
5
6
7
8
use coolbee::{mix, PrimaryColor, SecondaryColor};

fn main() {
    let red = PrimaryColor::Red;
    let purple = SecondaryColor::Purple;
    let color = mix(red, purple);
    println!("{:?}", color);
}