Convert
Color Converter
Type a color in any common format and see it converted to HEX, RGB, and HSL instantly, with a live swatch preview.
Convert
Type a color in any common format and see it converted to HEX, RGB, and HSL instantly, with a live swatch preview.
Walkthrough
Use cases
Matching a color across two codebases. One team's design tokens use HSL, another's CSS uses HEX — convert between them without doing the math by hand.
Reading a color from a design tool. Paste an RGB value copied from a design app and get the HEX code your CSS actually needs.
Adjusting lightness precisely. HSL makes it easy to reason about lightness/darkness — convert to HSL, tweak the L value, convert back.
FAQ
Not currently — this converts solid RGB/HSL/HEX values. Alpha channel support (rgba, hsla, 8-digit hex) may be added later.
3- or 6-digit hex (#fff or #ffffff), rgb(r, g, b), and hsl(h, s%, l%).
Yes, entirely with JavaScript math in your browser — nothing is sent anywhere.
Related