Last active
August 29, 2015 14:01
-
-
Save jegtnes/e5316f4480507d24ecb5 to your computer and use it in GitHub Desktop.
A SCSS function generating 100 classes from green to red.
This file contains 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
$i: 0; | |
$color: rgb(0, 255, 0); | |
@while $i < 100 { | |
$i: $i + 1; | |
.color-#{$i} { | |
color: $color; | |
} | |
$color: adjust-color($color, $red: 2.55, $green: -2.55); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment