CSS HSL Colors
HSL stands for Hue, Saturation, and Lightness. This format is more intuitive for many designers since it describes colors in a way that aligns with how we perceive them. Hue represents the base color (0-360 degrees), Saturation sets the intensity (0% to 100%), and Lightness controls the brightness (0% to 100%). HSLA adds an Alpha channel for transparency.
Key Topics
HSL Syntax
Use hsl(hue, saturation, lightness)
where hue is in degrees, and saturation/lightness are percentages. For example, hsl(120, 100%, 50%)
is a vivid green.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<title>HSL Example</title>
<style>
body {
background-color: hsl(0, 0%, 95%);
font-family: Arial, sans-serif;
}
h1 {
color: hsl(120, 100%, 25%); /* Dark green */
}
p {
color: hsl(240, 100%, 50%); /* Vivid blue */
}
</style>
</head>
<body>
<h1>HSL Colored Heading</h1>
<p>This paragraph uses an HSL-based blue.</p>
</body>
</html>
Explanation: HSL’s intuitive approach makes it easy to tweak colors by adjusting hue for base color shifts, saturation for intensity, and lightness for brightness, often providing a more natural color editing experience.
HSLA (With Transparency)
Just like RGBA, HSLA adds an Alpha channel for transparency, e.g. hsla(240, 100%, 50%, 0.5)
for a semi-transparent blue overlay.
Benefits of HSL
- Intuitive Adjustments: It’s easier to shift hues or make a color lighter/darker.
- Design-Friendly: Aligns well with how designers think about color.
Key Takeaways
- HSL uses hue, saturation, and lightness for intuitive color control.
- HSLA adds transparency, similar to RGBA.
- HSL is often more designer-friendly, making it easier to create harmonious color schemes.