Skip to content

Instantly share code, notes, and snippets.

@abelmartin
Created September 11, 2014 15:06
Show Gist options
  • Save abelmartin/d8d65df22f4f2c78733d to your computer and use it in GitHub Desktop.
Save abelmartin/d8d65df22f4f2c78733d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.3)
// Compass (v1.0.1)
// ----
$pink: #f24;
$blue: #456;
$red: #808;
$colors: (pink: $pink, blue: $blue, red: $red);
@each $name, $val in $colors {
.#{$name}-btn { background-color: $val; }
.#{$name}-btn-filled { background-color: $val; }
}
.pink-btn {
background-color: #f24;
}
.pink-btn-filled {
background-color: #f24;
}
.blue-btn {
background-color: #456;
}
.blue-btn-filled {
background-color: #456;
}
.red-btn {
background-color: #808;
}
.red-btn-filled {
background-color: #808;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment