More tools

HSL to RGB Converter

Convert HSL colors to RGB instantly. Paste a color — with or without alpha — and the conversion runs right in your browser.

HSL in
RGB out
rgb(124, 59, 237)
All formats
click a row to convert from it

About HSL and RGB

HSL describes a color by hue (0–360 on the color wheel), saturation, and lightness. It's easier to reason about than raw channels — rotating a hue or dimming a color is a single number change — which makes it popular for theming.

RGB lists red, green, and blue as numbers from 0 to 255, matching how screens mix light. It's the format most APIs, canvas code, and design tools expect, and rgba() adds an opacity value from 0 to 1.

For example, hsl(262, 83%, 58%) in HSL is rgb(124, 59, 237) in RGB. Paste your own value above — conversion is instant, runs entirely in your browser, and carries alpha through when your color has one.