Sass Color
Sass hsl() Function
Photo Credit to CodeToFun
π Introduction
The hsl()
function in Sass is a useful tool for defining colors using the HSL (Hue, Saturation, Lightness) color model. Unlike the traditional RGB color model, which is based on the primary colors of light (red, green, and blue), the HSL model represents colors in a way that is more intuitive to human perception.
The hsl()
function allows you to create colors by specifying their hue, saturation, and lightness, giving you greater control over your color design.
π‘ Syntax
The syntax of the hsl()
function is simple and involves three main components:
hsl(hue, saturation, lightness)
π’ Parameters
- hue: An integer between 0 and 360, where 0 is red, 120 is green, and 240 is blue.
- saturation: A percentage (0% to 100%) where 0% is a shade of gray and 100% is the full color.
- lightness: A percentage (0% to 100%) where 0% is black, 100% is white, and 50% is the pure color.
β©οΈ Return Value
The function returns a color value based on the specified hue, saturation, and lightness.
π Example Usage
Let's explore some examples to understand how to use the hsl()
function in Sass.
π Example 1: Basic HSL Color
$hsl-color: hsl(120, 100%, 50%); // Pure green
header {
background-color: $hsl-color;
}
In this example, the color is defined using HSL values where the hue is set to 120 (green), the saturation is 100% (fully saturated), and the lightness is 50% (normal brightness). The result is a pure green color.
π Example 2: Adjusting Lightness
$light-blue: hsl(210, 100%, 70%); // Light blue
button {
background-color: $light-blue;
}
Here, a blue color is created by setting the hue to 210. The saturation remains at 100%, but the lightness is increased to 70%, resulting in a lighter blue.
π Example 3: Desaturated Color
$desaturated-red: hsl(0, 50%, 50%); // Desaturated red
footer {
color: $desaturated-red;
}
This example creates a desaturated red color by setting the hue to 0 (red), reducing the saturation to 50%, and setting the lightness to 50%.
π Example 4: Using HSL in a Loop
@for $i from 1 through 5 {
.color-#{$i} {
background-color: hsl(30 * $i, 100%, 50%);
}
}
This loop creates a series of classes with colors that rotate through different hues by multiplying the hue by 30 degrees each time.
π Conclusion
The hsl()
function in Sass provides a flexible and intuitive way to define colors based on the HSL color model. By allowing you to manipulate hue, saturation, and lightness, it opens up a wide range of possibilities for color design in your projects. Whether youβre looking to create vibrant, fully saturated colors or more subdued tones, the hsl()
function gives you the control you need.
Understanding and leveraging the hsl()
function can help you create cohesive color schemes and enhance the visual appeal of your web designs. Experiment with different values to discover the endless potential of the HSL color model in your Sass projects.
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (Sass hsl() Functionο»Ώ), please comment here. I will help you immediately.