A simple crate which provides html and X color map with names (as keys) and their (r, g, b) values.
toml
[dependencies]
color-maps = "0.1"
```rust use color_maps::*;
fn main() { let htmlblack = html::HTMLMAP.get("Black").unwrap(); asserteq!(*htmlblack, (0, 0, 0));
let x_black = x::X_MAP.get("black").unwrap();
assert_eq!(*x_black, (0, 0, 0));
} ```