Created
August 30, 2014 19:07
-
-
Save devinhalladay/6757a3dafa304f800d35 to your computer and use it in GitHub Desktop.
Fifty Shades of Grey in Sass
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
| // 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