
Returns the specified color, brightened (or darkened) by the specified amount.
$brighten (color1, percentage)color1 by the specified percentage (-100% to 100%).color1 may be;#ff00e2#fa3$myParam1percentage may be;50%-100% do nothing, as -100% is always black$param color bgColor #f00 // define the $bgColor param, defaulted to red
ul li {
background: $bgColor;
text-color: $brighten ($bgColor, -70%);
}
Saturates red (#f00), in increments from -100% to +100%.
e.g. $saturate (#f00, -100%)
Saturates dark blue (#007), in increments from -100% to +100%.
e.g. $saturate (#007, -100%)