Skip to content

Instantly share code, notes, and snippets.

@devinhalladay
Created August 30, 2014 19:07
Show Gist options
  • Save devinhalladay/6757a3dafa304f800d35 to your computer and use it in GitHub Desktop.
Save devinhalladay/6757a3dafa304f800d35 to your computer and use it in GitHub Desktop.
Fifty Shades of Grey in Sass
// Fifty Shades of Grey
$grey: #e7e7e8;
@for $i from 1 through 50 {
.shade-#{$i} {
background-color: darken($grey, $i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment