Tint & Shade View source

Tint and Shade are different from lighten() and darken() functions that are built into sass.

Tint is a mix of color with white.
Shade is a mix of color with black.
Both take a color and a percent argument.

{% highlight scss %} background: tint(red, 40%); background: shade(blue, 60%); {% endhighlight %}