Lighten a Hex Color

Enter a hex code and drag the slider to lighten it by an exact percentage. The lighter hex code updates live and copies in one click. Need the opposite? Use the darken color tool.

Lighten a color

20%
#578872
Want every step at once? The tint generator builds the full lighter ramp of any color, and the color scale generator adds hue and chroma scales on top.

How Lightening a Color Works

Lightening blends each RGB channel toward white. For a chosen percentage p (0–1), each channel becomes:

new = old + (255 − old) × p

20% lighten of #2D6A4F — rgb(45, 106, 79):
 ├─ R: 45  + (255 − 45)  × 0.2 =  87
 ├─ G: 106 + (255 − 106) × 0.2 = 136
 └─ B: 79  + (255 − 79)  × 0.2 = 114

Result: rgb(87, 136, 114) = #578872

This is the classic tint formula — a lightened color is a tint. Because every channel moves proportionally toward 255, the hue stays stable and the result reads as a softer version of the same color rather than a different one.

Every 10% Step of #2D6A4F, Lightened

LightenResultHex
10%#427961
20%#578872
30%#6C9784
40%#81A695
50%#96B5A7
60%#ABC3B9
70%#C0D2CA
80%#D5E1DC
90%#EAF0ED

The same ramp for any color is precomputed in the color library — for example #2D6A4F, #3498DB, or Tailwind's red-600.

When to Lighten a Color

Lighten a Color in CSS

You don't always need to hard-code the lighter hex — modern CSS can derive it:

/* color-mix(): 20% lighter (mix 80% color with 20% white) */
background: color-mix(in srgb, #2d6a4f 80%, white);

/* Relative color syntax: raise HSL lightness by 20 points */
background: hsl(from #2d6a4f h s calc(l + 20));

/* Sass */
background: color.scale(#2d6a4f, $lightness: 20%);

Hard-coded hex values from the tool above are still the right call for design tokens, emails, and anywhere you need the exact value once. For the full CSS/JS playbook, read how to lighten or darken a color in CSS.

Frequently Asked Questions

Related tools: darken a color · tint generator · tint and shade generator · hex to RGB converter · contrast checker

Got your lighter color? Put it to work on a page that's yours — create your free MinglyLink page →