Tint vs Shade: What's the Difference?

A tint is a color mixed with white, which makes it lighter; a shade is a color mixed with black, which makes it darker. Both keep the original hue — a tint of green is still green, only paler, and a shade of green is still green, only deeper. Mixing with gray instead of white or black produces a tone.

See it live: paste any hex code into the tint and shade generator and get the full white-to-black ramp of your color in one step.

Tints and Shades, Side by Side

Here is one base color — the green #2D6A4F — pushed four steps toward white (tints, left) and four steps toward black (shades, right):

#D5E1DC80% tint
#ABC3B960% tint
#81A69540% tint
#57887220% tint
#2D6A4Fbase
#24553F20% shade
#1B402F40% shade
#122A2060% shade
#09151080% shade

Every swatch is the same green hue. Tints move toward white; shades move toward black. Build this ramp for any color with the tint generator and shade generator.

The Formulas

In digital color both operations are simple per-channel blends. A tint moves each RGB channel toward 255 (white); a shade scales each channel toward 0 (black). For a percentage p (0–1):

Tint:  new = old + (255 − old) × p

20% tint 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   ← lighter, same hue
Shade: new = old × (1 − p)

20% shade of #2D6A4F — rgb(45, 106, 79):
 ├─ R: 45  × 0.8 =  36
 ├─ G: 106 × 0.8 =  85
 └─ B: 79  × 0.8 =  63

Result: rgb(36, 85, 63) = #24553F     ← darker, same hue

Because every channel moves proportionally, the hue stays put — which is why a whole tint-and-shade ramp reads as one color family rather than nine different colors. The tints and shades guide covers the theory in more depth.

What About Tones?

The third member of the family: a tone is a color mixed with gray (#808080). Instead of getting clearly lighter or darker, the color gets more muted — saturation drops while lightness barely moves. A 20% tone of #2D6A4F is #3E6E59: still recognizably the same green, just softer and grayer. Tones and shades are easy to confuse, so they get their own comparison: shade vs tone.

Quick Reference

TermMixed withResultExample (20% of #2D6A4F)
TintWhiteLighter, softer #578872
ShadeBlackDarker, richer #24553F
ToneGrayMuted, less saturated #3E6E59

Common Confusions

Frequently Asked Questions

Related: tint and shade generator · tint generator · shade generator · shade vs tone · is white a tint? · tints and shades guide

Picked your tints and shades? Put them to work on a page that's yours — create your free MinglyLink page →