Skip to content

Hex to RGB Converter

Type a hex code or RGB values — the converter updates in both directions and shows HSL and CMYK for free. Click any result to copy it.

RGB
#4F46E5

Converted values

HEX
RGB
HSL
CMYK

Need a background instead? Paste the color into the solid color background generator.

Common hex to RGB conversions

Color Hex RGB
White #FFFFFF rgb(255, 255, 255)
Gray #808080 rgb(128, 128, 128)
Black #000000 rgb(0, 0, 0)
Red #FF0000 rgb(255, 0, 0)
Pastel Pink #FFD1DC rgb(255, 209, 220)
Green #008000 rgb(0, 128, 0)
Teal #008080 rgb(0, 128, 128)
Blue #0000FF rgb(0, 0, 255)
Navy #000080 rgb(0, 0, 128)

Frequently Asked Questions

How do I convert hex to RGB manually?

Split the six-digit hex into three pairs — e.g. #4F46E5 becomes 4F, 46, E5 — then convert each pair from hexadecimal to decimal: 4F = 79, 46 = 70, E5 = 229. So #4F46E5 is rgb(79, 70, 229).

Is hex the same as RGB?

They describe exactly the same color in different notations. #FF0000 and rgb(255, 0, 0) are identical — hex is just base-16 shorthand for the same three 0–255 channel values.

What is a 3-digit hex code?

Shorthand where each digit is doubled: #F0B expands to #FF00BB. This converter accepts both 3-digit and 6-digit hex codes.

When should I use HSL instead?

HSL (hue, saturation, lightness) is easier for humans to reason about — 'same hue, a bit lighter' is just changing L. Use it when building shades and tints or design tokens.