rust crate that returns a hex for a color name
For a full list of supported colors check colors.rs. Inputs are lowercased and sanitized before comparing.
```rs use allcolors::getcolor_hex;
let colorhex = getcolor_hex("aqua").expect("a color hex str for aqua");
println!("aqua is #{}", color_hex); ```