Color Models

HSL

Ein zylindrisches Farbmodell, das Farben durch Farbton (Hue), Sättigung (Saturation) und Helligkeit (Lightness) beschreibt und intuitiv für die menschliche Farbauswahl ausgelegt ist.

HSL represents color as an angle on the color wheel (hue, 0-360), a percentage of color intensity (saturation, 0-100%), and a percentage of lightness (0-100% where 0% is black and 100% is white). At 50% lightness, the pure hue is displayed. HSL is widely used in CSS (the hsl() function) because it makes it easy to create tints, shades, and tones by adjusting a single parameter. It is more intuitive than RGB for design work but has the limitation of not being perceptually uniform, meaning equal numeric changes do not always produce equal visual changes.

Ausprobieren

Ähnliche Artikel