csvjson

Color Converter

Convert colors between HEX, RGB, and HSL formats instantly. Visual color picker with live preview and component breakdown.

๐Ÿ”ง

Color Converter is coming soon. In the meantime, try the JSON โ†’ CSV converter, which has flattening built in.

How it works

Type any format, all three update

Enter a HEX, RGB, or HSL value and the other two formats update instantly. Or use the visual color picker โ€” all three fields stay in sync.

Example

Converting a brand HEX color to CSS HSL for theme generation

Input
#3b82f6
Output
rgb(59, 130, 246)
hsl(217, 91%, 60%)

Frequently asked questions

Why use HSL over HEX for CSS themes?

HSL is the easiest format for generating color palettes. Lighter and darker variants are just L value adjustments. Muted versions are S value adjustments. With HEX or RGB you'd need to recalculate all three channels.