Skip to content

Instantly share code, notes, and snippets.

@fkaminski
Last active December 9, 2021 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fkaminski/fe67cbaf132d7a147032029e64ec9a78 to your computer and use it in GitHub Desktop.
Save fkaminski/fe67cbaf132d7a147032029e64ec9a78 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@function hsl-str($color) {
@return unquote("hsl(#{hue($color)/1deg}, #{saturation($color)}, #{lightness($color)})");
}
.demo {
color: hsl-str(#ffcc99);
}
.demo {
color: hsl(30, 100%, 80%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment