Skip to content

Instantly share code, notes, and snippets.

@jdlich
Last active August 29, 2015 14:22
Show Gist options
  • Save jdlich/56c4d8fd49c8bb106005 to your computer and use it in GitHub Desktop.
Save jdlich/56c4d8fd49c8bb106005 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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