Skip to content

Instantly share code, notes, and snippets.

@mirisuzanne
Last active November 19, 2015 19:14
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 mirisuzanne/06cc198106af785c61f9 to your computer and use it in GitHub Desktop.
Save mirisuzanne/06cc198106af785c61f9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$function: 'hsl';
$hue: 360;
$value: (30%, 40%);
.test {
// This doesn't work in libsass
// background-color: call($function, $hue, $value...);
// This works great
$call: join(($function, $hue), $value);
color: call($call...);
}
.test {
color: #854747;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment