HEX ↔ RGB Converter
Convert color codes between HEX, RGB, and HSL
HEX
#3B82F6
RGB
rgb(59, 130, 246)
HSL
hsl(217, 91%, 60%)
About HEX ↔ RGB Converter
Convert colors between HEX codes and RGB values in both directions, with a live preview of the color. Designers get the format their tool expects; developers get values ready to paste into CSS. Supports shorthand HEX and RGBA alpha values.
How to use the hex ↔ rgb converter
- Enter a HEX code (like #1a73e8) or RGB values.
- The converted value and a color preview appear instantly.
- Copy the value in the format you need.
Frequently asked questions
How do I convert HEX to RGB manually?
Split the HEX code into pairs and convert each from hexadecimal: #1a73e8 → 1a=26, 73=115, e8=232, so rgb(26, 115, 232). Or paste it here and skip the math.
What is the difference between RGB and RGBA?
RGBA adds a fourth value, alpha, which controls opacity from 0 (transparent) to 1 (solid). In 8-digit HEX, the last two digits encode alpha.
What is shorthand HEX?
Three-digit codes like #fff expand each digit twice: #fff = #ffffff (white), #f00 = #ff0000 (red). The converter accepts both forms.