Color Models

HSL

Model warna silindris yang mendeskripsikan warna menggunakan rona, saturasi, dan kecerahan, dirancang untuk pemilihan warna yang intuitif.

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.

Coba Sekarang

Artikel Terkait