hexcolor 0.2.0

A tiny HexColor type with serde support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# hexcolor

A tiny, serde-compatible `HexColor` type.

```rust
use hexcolor::HexColor;

let c = HexColor::parse("#532746").unwrap();
assert_eq!(c.to_hex_string(), "#532746");
```

*Athena and I made this together.*