I have a HSL color that I need to, for example, adjust hue, saturation, and lightness all at once. And I've noticed if I do that one by one, as in
$color: hsl color code;
$new-color: adjust-hue($color, -1);
$new-color: lighten($color, 20%);
$new-color: desaturate($color, 10%);
it doesn't actually apply them correctly. So my question is, how can I wrap this up in a function or a mixin (whatever is more appropriate in this situation) so it looks cleaner and behaves properly too? Thanks!