Color Converter
Convert colors between HEX, RGB, HSL, and HSB/HSV formats instantly. Color picker included. Free online color converter for designers and developers.
HEX
RGB
HSL
HSB / HSV
CSS Output
Frequently asked
questions
Both use Hue and Saturation, but differ in the third value. HSL (Lightness): 50% = pure color, 100% = white. HSB/HSV (Brightness/Value): 100% = pure color, 0% = black. HSL is used in CSS; HSB is common in design tools like Photoshop.
A HEX color is a 6-digit hexadecimal code (e.g., #FF5733) representing Red, Green, and Blue values. Each pair of digits is a hex number from 00 (0) to FF (255). It is the most common format in web development.
CSS accepts: hex (#FF5733), rgb(255, 87, 51), rgba(255, 87, 51, 0.5), hsl(11, 100%, 60%), and hsla(11, 100%, 60%, 0.5). All formats produced by this tool are valid CSS.