Last active
August 29, 2015 14:22
-
-
Save jdlich/56c4d8fd49c8bb106005 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.13) | |
// Compass (v1.0.3) | |
// ---- | |
$colors: (primary,#f05d9a) (secondary,#a9e686); | |
@each $color in $colors { | |
$color-keyword: nth($color,1); | |
$color-hex: nth($color,2); | |
.text-#{$color-keyword}, .hover-text-${$color-keyword}:hover { | |
color: $color-hex; | |
} | |
.box-#{$color-keyword}, .hover-box-${$color-keyword}:hover { | |
background-color: $color-hex; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment