Skip to content

Instantly share code, notes, and snippets.

@alyssais
Last active March 10, 2016 04:26
Show Gist options
  • Save alyssais/e85358cb9b57bf232fe6 to your computer and use it in GitHub Desktop.
Save alyssais/e85358cb9b57bf232fe6 to your computer and use it in GitHub Desktop.
@function null-check($name, $args...) {
@if nth($args, 1) {
@return call($name, $args...);
}
@return null;
}
html {
background: null-check(lighten, blue, 5%);
}
body {
background: null-check(lighten, null, 5%);
}
html {
background: #1a1aff; }
@stubbornella
Copy link

ha, funny, this is exactly how I was thinking of solving it but I was going to call it "try"... :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment