Created
June 5, 2018 19:34
-
-
Save christianmagill/0906bf23896d3f4a24e51ed38868c168 to your computer and use it in GitHub Desktop.
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
@mixin generate-color-classes(){ | |
@each $name, $color in $foundation-palette { | |
.color-#{$name}{ | |
color: $color; | |
} | |
.background-#{$name}{ | |
background-color: $color; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment