Skip to content

Instantly share code, notes, and snippets.

@robrez
Created January 3, 2020 01:14
Show Gist options
  • Save robrez/bac94beda06feb77f30356e990895083 to your computer and use it in GitHub Desktop.
Save robrez/bac94beda06feb77f30356e990895083 to your computer and use it in GitHub Desktop.
sass relative saturate
sass doesn't have the "relative" saturation option available in less
@function relative-sat($color, $amt) {
$h: hue($color);
$s: saturation($color);
$l: lightness($color);
$sRel: $s + ($s * ($amt / 100));
@return hsl($h, $sRel, $l);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment