Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Last active August 29, 2015 14:20
Show Gist options
  • Save jlcampana/0965011071b26acc8423 to your computer and use it in GitHub Desktop.
Save jlcampana/0965011071b26acc8423 to your computer and use it in GitHub Desktop.
// usage demo:
.block {
width: 100px;
margin: 20px;
height: 100px;
}
.hsl {
background-color: hsl(118, 77%, 53%);
}
.rgb {
background-color: hsl-to-rgb(hsl(118, 77%, 53%));
}
@function hsl-to-rgb($hsl-color) {
@return mix($hsl-color,$hsl-color);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment