Tint Generator

Enter a hex code and get 19 lighter tints in 5% steps — from a barely-softer 5% to a whisper-of-color 95%. A tint is a color with white added to it: the hue doesn't change, it just gets lighter, softer, less intense. Pink is a tint of red; sky blue is a tint of blue; mint is a tint of green. Need darker versions instead? Use the shade generator, or get both directions in the tint and shade generator.

Generate tints

  • 5%#a061ba
  • 10%#a56abd
  • 15%#aa72c1
  • 20%#af7ac5
  • 25%#b483c8
  • 30%#b98bcc
  • 35%#be93d0
  • 40%#c39bd3
  • 45%#c8a4d7
  • 50%#cdacdb
  • 55%#d2b4de
  • 60%#d7bde2
  • 65%#dcc5e5
  • 70%#e1cde9
  • 75%#e6d6ed
  • 80%#ebdef0
  • 85%#f0e6f4
  • 90%#f5eef8
  • 95%#faf7fb

Prefer precomputed pages? Try #9B59B6 in the color library — every library color ships with ready-made tint and shade ramps.

Not sure which percentage to grab? The tint percentage chart maps common use cases to exact steps, and the advanced scale explorer adds hue and chroma modes on top of the lightness ramp.

How Tint Generation Works

A tint is the base color mixed with white. The generator blends each RGB channel toward 255 by the chosen percentage p (0–1):

new = old + (255 − old) × p

40% tint of #9B59B6 — rgb(155, 89, 182):
 ├─ R: 155 + (255 − 155) × 0.40 = 195
 ├─ G: 89  + (255 − 89)  × 0.40 = 155
 └─ B: 182 + (255 − 182) × 0.40 = 211

Result: rgb(195, 155, 211) = #C39BD3

Because every channel moves toward 255 at the same relative rate, the hue is preserved — the whole ramp above is still the same purple, just progressively softer. Adding a flat number to each channel instead would clip unevenly at 255 and distort the color, which is why proportional blending is the standard. This is the classic formula behind tints and shades; if you want a single value with a slider rather than the full ramp, use the lighten color tool.

What Tints Are For

Modern interfaces lean heavily on tints — they're how you create soft backgrounds, subtle interactive states, and entire light-mode palettes without introducing new hues:

One mistake to avoid: picking a "light version" by eye. Drag a color picker toward a whiter blue and you'll likely land on a value whose hue has drifted toward cyan — side by side with your base, it feels like a different family. A generated tint preserves the hue exactly, so the two colors look like they belong together because they mathematically do.

From Brand Color to Background System

A single brand color plus this ramp is a complete light-theme surface system. Using the default #9B59B6:

RoleTintResultHex
Page wash90%#F5EEF8
Card surface70%#E1CDE9
Border / divider50%#CDACDB
Hover accent15%#AA72C1
AccentBase#9B59B6

The 90% tint is light enough for dark text to sit on comfortably, the 70% card still reads clearly as "the brand color, softened," and the base stays reserved for buttons and accents. Because every layer shares one hue, the page feels designed rather than assembled. Swap in your own hex above and the same roles map onto the fresh ramp — or grab the precomputed version from the color library.

Frequently Asked Questions

Related tools: shade generator · tint and shade generator · lighten a color · tint percentage chart · advanced scale explorer · color library

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