
Adjusts the specified color towards another color, by a specified increment.
$adjust (color1, increment)color1 towards white by the specified number of units (-255 to 255).$adjust (color1, percentage)color1 towards white by the specified percentage (-100% to 100%).$adjust (color1, color2, percentage)color1 towards color2 by the specified percentage (-100% to 100%).Adjust red (#f00) towards white (#fff), in increments from -100% to +100%.
e.g. $adjust (#f00, -100%)
Adjust red (#f00) towards white (#fff), in increments from -100 to +100 (units, not percentages).
e.g. $adjust (#f00, -100)
Adjust red (#f00) towards blue (#00f), in increments from -100% to +100%.
e.g. $adjust (#f00, #00f, -100%)