CHA Color Hashing Algorithm

Hash an input data string into an RGB color.

Usage

```rust extern crate cha; use cha::Color;

fn main() { let color = Color::from("foo~"); asserteq!(format!("{}", color.tocolorstring()), "#06CBB2"); asserteq!(format!("{:?}", color), "Color(6, 203, 178)"); } ```