Understanding HSL Components: Hue, Saturation, and Lightness
The HSL model consists of three components, each responsible for a specific color property. Hue is the position of color on the color wheel from 0 to 360 degrees: 0° is red, 120° is green, 240° is blue.
Saturation determines color intensity from 0% (gray) to 100% (fully saturated). Lightness controls color brightness from 0% (black) to 100% (white), with 50% producing a pure color.
For example, hsl(9, 100%, 60%) creates a bright orange-red color with maximum saturation and medium brightness. HSLA adds an alpha channel for transparency: hsla(195, 100%, 40%, 0.5) is semi-transparent cyan.
The конвертер цветов tool allows instant conversion of HSL values to RGB, HEX, and other formats, which is critical when working with different design tools.