Skip to content

Instantly share code, notes, and snippets.

@dipiash
Created September 16, 2015 19:33
Show Gist options
  • Select an option

  • Save dipiash/f978c3f175ccaa889684 to your computer and use it in GitHub Desktop.

Select an option

Save dipiash/f978c3f175ccaa889684 to your computer and use it in GitHub Desktop.
SCSS
@mixin background ($title, $color) {
$i: 0;
@each $bg in (
zero darken($color, 15%),
one $color,
two lighten($color, 10%),
three lighten($color, 15%),
four lighten($color, 20%),
five lighten($color, 25%)
) {
.background--#{$title}_#{$i} {
background: #{nth($bg, 2)}
}
$i: $i + 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment