Looking to make adjustments to a HSL color in one go, including hue, saturation, and lightness. I've tried applying each adjustment individually like this:
$color: hsl color code;
$new-color: adjust-hue($color, -1);
$new-color: lighten($color, 20%);
$new-color: desaturate($color, 10%);
However, the changes aren't being applied correctly. Is there a way to create a function or mixin for this task to keep it clean and ensure proper behavior? Thanks!