Color Converter
Convert between HEX, RGB, and HSL color formats. Click the preview to pick a color.
Click to open picker
R 37
G 99
B 235
H 221°
S 83%
L 53%
Sample Text Preview
#2563eb
rgb(37, 99, 235)
hsl(221, 83%, 53%)
rgba(37, 99, 235, 1)
Common Web Colors
Advertisement
Frequently Asked Questions
Both represent the same color. HEX uses a 6-digit hexadecimal code (#RRGGBB), while RGB uses three decimal numbers from 0–255. #ff0000 and rgb(255, 0, 0) are both pure red.
HSL stands for Hue, Saturation, and Lightness. Hue is the color angle on the wheel (0–360°), Saturation is the color intensity (0–100%), and Lightness controls brightness (0% = black, 100% = white, 50% = pure color).
Split the hex into three pairs (RR, GG, BB) and convert each from base-16 to base-10. Example: #1a2b3c → R=26 (0x1a), G=43 (0x2b), B=60 (0x3c).