Skip to content
Hex Calculator

Hex Color Tint Calculator

Lighten any hex color by a percentage while keeping its hue — mix a color toward white to generate lighter shades for a design palette.

Tinted color
#5182EF

How Hex Color Tinting Works

Tinting mixes a color toward white by a given percentage. Each RGB channel is moved that percentage of the way from its current value to 255 — the maximum — so the color gets lighter while its hue stays the same. This is the same technique used to generate lighter steps of a brand color for UI states like hover and disabled backgrounds.

Hex Color Tint Example, Step by Step

#2563EB + 20% tint = #5182EF

#2563EB tinted 20% = #5182EF

#2563EB -> rgb(37, 99, 235)

R = 37 + (255-37) x 0.20 = 80.6 -> 81 (0x51)
G = 99 + (255-99) x 0.20 = 130.2 -> 130 (0x82)
B = 235 + (255-235) x 0.20 = 239 (0xEF)

Result: #5182EF
StepDescriptionResult
Convert hex to RGB#2563EB -> rgb(37, 99, 235)R=37 G=99 B=235
Move red toward white37 + (255-37) x 0.20R = 81
Move green toward white99 + (255-99) x 0.20G = 130
Move blue toward white235 + (255-235) x 0.20B = 239
Convert back to hexcombine the three channels#5182EF

Blue barely changes here because it started close to 255 already — the amount a channel shifts depends on how far it is from white to begin with.

Common Mistakes With Hex Color Tinting

  • Confusing tint with a simple brightness increase — tinting specifically mixes toward white, not just scaling up every channel.
  • Entering a tint percentage above 100 or below 0, which have no meaningful result since 100% is already pure white.
  • Expecting a black color to tint the same way as a saturated one — black tints toward pure gray since it has no hue to preserve.

Frequently Asked Questions

What is a tint in color terms?

A tint is a color mixed with white to lighten it while preserving its underlying hue — the standard technique designers use to build lighter shades of a brand color for hover states, backgrounds, or a full color scale.

How is a tint percentage calculated?

Each RGB channel moves a percentage of the way from its original value toward 255 (white). A 20% tint means every channel is 20% closer to white than it started.

What's a 20% tint of #2563EB?

#5182EF — each channel has shifted 20% of the remaining distance toward white, producing a visibly lighter but still recognizably blue color.

What happens at 100% tint?

Any color tinted 100% becomes pure white (#FFFFFF), since every channel moves the full remaining distance to 255.

How is tint different from shade or tone?

Tint mixes toward white (lighter), shade mixes toward black (darker), and tone mixes toward gray (desaturated). This calculator handles tint specifically — lightening while keeping the hue intact.