HEX to RGB Color Converter

Convert 6-digit and 3-digit hexadecimal color codes into standard RGB (0-255) and RGBA CSS values with instant copy-paste.

Click the color swatch or enter a value in any format — all other fields update instantly.

#3B82F6
°
%
%
HEX#3B82F6
RGBrgb(59, 130, 246)
HSLhsl(217, 91%, 60%)
HSVhsv(217, 76%, 96%)
CSS--color-primary: #3B82F6;
SHADES

🔒 All color processing happens 100% in your browser — no data is sent anywhere.

Common Real-World Use Cases

CSS & Tailwind Development

Convert brand HEX colors into RGB values for opacity-friendly rgba() background layers.

Canvas & WebGL Graphics

Transform HEX strings into numeric RGB color components for HTML5 Canvas rendering.

Frequently Asked Questions

How do you convert HEX to RGB manually?

Split the 6-character HEX into 3 pairs: RR, GG, BB. Convert each two-digit hex number from base 16 to base 10 (e.g. #FF0000 -> FF=255, 00=0, 00=0 -> rgb(255, 0, 0)).