Skip to content

Instantly share code, notes, and snippets.

@clintfisher
Forked from LeaVerou/gray.scss
Last active August 29, 2015 14:23
Show Gist options
  • Save clintfisher/e4fc4a63533a0a878450 to your computer and use it in GitHub Desktop.
Save clintfisher/e4fc4a63533a0a878450 to your computer and use it in GitHub Desktop.
@function gray($intensity, $alpha: 1) {
@return rgba($intensity, $intensity, $intensity, $alpha);
}
/* Thanks Chris Eppstein for simplifying my code! */
/* Testing our new function */
body {
background: gray(50%);
background: gray(255, .2);
}
/* Test should output something like: */
body {
background: #7f7f7f;
background: rgba(255, 255, 255, 0.2); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment