HEX โ†’ RGB

HEX to RGB converter

Paste a hex colour to get its RGB value instantly โ€” and convert RGB back to HEX, with HSL and a live preview. Free and entirely in your browser; nothing is uploaded.

hsl(217, 91%, 60%)

Open the full color tools โ†’

How HEX to RGB works

A hex colour like #3B82F6 is just three 8-bit numbers written in base 16 โ€” one each for red, green and blue. Split it into three pairs and convert each pair to decimal: 3B = 59, 82 = 130, F6 = 246, which is rgb(59, 130, 246). Each pair ranges from 00 (0) to FF (255), so RGB values always fall between 0 and 255.

3-digit vs 6-digit hex

You will see both #ABC and #AABBCC. The short form is shorthand: each digit is doubled, so #ABC is identical to #AABBCC = rgb(170, 187, 204). The converter above accepts either, with or without the leading #.

When to use HEX, RGB or HSL

HEX is compact and the default in most design tools and CSS. RGB is handy when you need to tweak individual channels or add transparency with rgba(). HSL โ€” hue, saturation, lightness โ€” is the most intuitive for adjusting a colour by hand: nudge the lightness to make a tint or shade, or shift the hue to find a related colour. This page shows all three at once so you can pick whichever your workflow needs.

Need more than a single colour?

The full ColorBloom tool extracts palettes from an image, builds harmonious palettes from one seed colour, checks WCAG contrast, and exports CSS variables, Tailwind or JSON โ€” all in the browser, with nothing uploaded.

FAQ

Frequently asked questions

How do I convert HEX to RGB by hand?

Split the six digits into three pairs and read each as a base-16 number (00โ€“FF = 0โ€“255).

Can I convert RGB to HEX here too?

Yes. Edit the R, G, B fields and the hex value and preview update automatically.

Does it accept short 3-digit hex?

Yes. #ABC is treated as #AABBCC, with or without the leading hash.

Is it free and private?

Yes. It runs entirely in your browser with no sign-up, and nothing you enter is uploaded.

More color tools

Color contrast checker ยท Palette extractor, generator & CSS export

Copied!