Module 2 / Thinking in HSL
Module 2 · Foundations

Thinking in HSL

Hue, saturation, and lightness — the model that matches how humans perceive color.

0/3 lessons

What HSL is

Learn

RGB tells you *how much* of each channel — but not what color you're actually seeing. HSL reframes color into three human-friendly axes: Hue (which color, 0–360° around the wheel), Saturation (how vivid, 0–100%), and Lightness (how bright or dark, 0–100%).

Every color picker is really an HSL explorer. Want a darker shade? Drop lightness. Want a muted tone? Drop saturation. No guessing at three RGB numbers.

Hue (H)

Position on the color wheel. 0°/360° = red, 120° = green, 240° = blue.

Saturation (S)

Vividness. 0% = grey, 100% = fully saturated color.

Lightness (L)

Brightness. 0% = black, 50% = pure color, 100% = white.

Practice
Loading…
Recall0/2
Recall

To make a color less vivid (more grey) without changing its hue or brightness, you adjust…

Recall

In HSL, a lightness of 0% always produces…

Navigating the hue wheel

Learn

Memorize six landmarks on the hue wheel and you can navigate any color: 0°/360° red, 60° yellow, 120° green, 180° cyan, 240° blue, 300° magenta. Everything else lives between these anchors.

Opposite sides of the wheel are complementary — they create maximum hue contrast. Adjacent positions (~30° apart) are analogous — they feel harmonious and calm.

HueDegreesComplement
Red0° / 360°Cyan (180°)
Yellow60°Blue (240°)
Green120°Magenta (300°)
Cyan180°Red (0°)
Blue240°Yellow (60°)
Magenta300°Green (120°)
Practice
Loading…
Recall0/1
Recall

On the HSL hue wheel, green sits at approximately…

Adjusting color with HSL

Learn

HSL makes common adjustments trivial. A shade (darker version) drops lightness. A tint (lighter version) raises lightness. A tone (muted version) drops saturation. Each is one slider move — no recalculating RGB.

This is why designers think in HSL even when the output format is hex. Pick your base color, then generate variants by moving one axis at a time.

Shade ↓

Lower lightness. Same hue, same saturation. Darker version of the color.

Tint ↑

Raise lightness. Same hue, same saturation. Lighter version of the color.

Tone ↓

Lower saturation. Same hue, same lightness. Muted/greyed version.

Practice
Loading…
Recall0/1
Recall

To create a 'tone' (muted version) of a color in HSL, you…