About
A tint is a mixture of a color with white, which increases lightness.
When a color is tinted, the color is no more pure and is in-between on:
- the greyscale
- and saturation scale
Function
Scss
With the mix function, you can create a tint function.
@function tint-color($color, $weight) {
@return mix(white, $color, $weight);
}