hexcolor
A tiny, serde-compatible HexColor type.
use HexColor;
let c = parse.unwrap;
assert_eq!;
Athena and I made this together.
A tiny, serde-compatible HexColor type.
use hexcolor::HexColor;
let c = HexColor::parse("#532746").unwrap();
assert_eq!(c.to_hex_string(), "#532746");
Athena and I made this together.