Professional online tool to convert HSL color values to HEX format. Easily transform colors using Hue, Saturation, and Lightness to hexadecimal color codes.
Perfect for web developers, designers, and digital artists who prefer working with the HSL color model.
hsl(0, 100%, 50%) → #FF0000
hsl(120, 100%, 50%) → #00FF00
hsl(240, 100%, 50%) → #0000FF
hsl(0, 100%, 75%) → #FFA6A6
hsl(0, 100%, 25%) → #800000
hsl(0, 50%, 50%) → #BF4040
The HSL color model is more intuitive than RGB or HEX for many designers:
The color type (red, green, blue, etc.) represented as a position on the color wheel.
The intensity or purity of the color. 0% is grayscale, 100% is the full color.
How light or dark the color is. 0% is black, 100% is white, 50% is the normal color.
Converting HSL to HEX is useful for CSS development, especially when working with design systems:
:root {
/* Primary color with variations */
--primary-hue: 210; /* Blue */
--primary: #0C71D1; /* hsl(210, 90%, 43%) */
--primary-light: #63A9E8; /* hsl(210, 90%, 65%) */
--primary-dark: #064883; /* hsl(210, 90%, 25%) */
/* Secondary color with variations */
--secondary-hue: 25; /* Orange */
--secondary: #F28C28; /* hsl(25, 90%, 55%) */
--secondary-light: #FFB673; /* hsl(25, 90%, 73%) */
--secondary-dark: #B15600; /* hsl(25, 90%, 33%) */
}
/* Usage */
.button {
background-color: var(--primary);
border: 2px solid var(--primary-dark);
}
Convert HSL to HEX programmatically with this JavaScript function:
// Complete HSL to HEX converter function
function hslToHex(h, s, l) {
// Convert HSL percentages to decimal
s /= 100;
l /= 100;
// Calculate RGB values
const c = (1 - Math.abs(2 * l - 1)) * s;
const x = c * (1 - Math.abs((h / 60) % 2 - 1));
const m = l - c/2;
let r, g, b;
if (h >= 0 && h < 60) {
[r, g, b] = [c, x, 0];
} else if (h >= 60 && h < 120) {
[r, g, b] = [x, c, 0];
} else if (h >= 120 && h < 180) {
[r, g, b] = [0, c, x];
} else if (h >= 180 && h < 240) {
[r, g, b] = [0, x, c];
} else if (h >= 240 && h < 300) {
[r, g, b] = [x, 0, c];
} else {
[r, g, b] = [c, 0, x];
}
// Convert to 0-255 range and then to HEX
const toHex = (value) => {
const hex = Math.round((value + m) * 255).toString(16);
return hex.length === 1 ? '0' + hex : hex;
};
return '#' + toHex(r) + toHex(g) + toHex(b);
}
HSL (Hue, Saturation, Lightness) is more intuitive for creating color schemes and adjusting colors. It's easier to create harmonious variations by simply adjusting saturation or lightness while keeping the same hue. Once you've found the perfect color in HSL, converting to HEX makes it compatible with all CSS contexts and color requirements.
Compared to other color models:
Yes, both the HSL and HEX color models can represent the same range of colors in the sRGB color space, which is the standard for web design. However, neither can represent colors outside the sRGB gamut. The HSL model simply provides a more intuitive way to think about and manipulate these colors.
You can easily embed this HSL to HEX converter tool into your own website, blog, or online application. Simply copy the iframe code below and paste it into your HTML:
<iframe
src="https://rgbatohex.com/tools/hsl-to-hex-converter?embed=true"
width="100%"
height="500"
style="border:none;border-radius:12px;overflow:hidden;"
title="HSL to HEX Color Converter"
></iframe>
You can customize the initial HSL values of the embedded tool using URL parameters:
For example, to set purple (h=270, s=100, l=50) as the initial color:
<iframe
src="https://rgbatohex.com/tools/hsl-to-hex-converter?embed=true&h=270&s=100&l=50"
width="100%"
height="500"
style="border:none;border-radius:12px;overflow:hidden;"
title="HSL to HEX Color Converter - Purple"
></iframe>
In design, the HSL color model makes it easy to create harmonious color schemes. By keeping the same hue and adjusting saturation and lightness, you can create beautiful monochromatic schemes. Try different HSL values with the tool below and get the corresponding HEX codes:
Try setting the hue value to 210 (blue) and create variations with different saturation and lightness values for your design system's primary colors.