// -------------------------------------------------------------------- // // Tinting and Shading (Better color control) // -------------------------------------------------------------------- // @function tint($color, $percent) { @return mix(white, $color, $percent); } @function shade($color, $percent) { @return mix(black, $color, $percent); }