Created
September 16, 2015 19:33
-
-
Save dipiash/f978c3f175ccaa889684 to your computer and use it in GitHub Desktop.
SCSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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