3 releases
new 0.1.2 | Sep 17, 2025 |
---|---|
0.1.1 | Sep 3, 2025 |
0.1.0 | Aug 26, 2025 |
#1505 in Development tools
252 downloads per month
17KB
521 lines
shortest-color
Ultra-fast CSS color parser - sub-200ns latency, under 5.5KB size
Performance: <200ns average, <5.5KB size, zero dependencies
Accepts hex, rgb/rgba, hsl/hsla, keywords
use shortest_color::shorten_css_color;
shorten_css_color("#ff0000") // "red"
shorten_css_color("rgb(0,0,255)") // "blue"
shorten_css_color("WHITE") // "#fff"
Install:
cargo add shortest-color
[dependencies]
shortest-color = "0.1.2"