Hash an input data string into an RGB color.
```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)"); } ```