Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 215 Bytes

File metadata and controls

12 lines (8 loc) · 215 Bytes

hexcolor

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.