Skip to content

Instantly share code, notes, and snippets.

@MoOx
Created February 12, 2013 06:31
Show Gist options
  • Save MoOx/4760632 to your computer and use it in GitHub Desktop.
Save MoOx/4760632 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
// ---
// Sass (v3.2.9)
// ---
$color-one: red;
$color-two: blue;
@mixin color($prefix, $colors) {
@each $color in $colors {
.#{$prefix}--#{nth($color, 1)} { background: #{nth($color, 2)}; }
}
}
@include color('classname', (one $color-one, two $color-two));
.classname--one {
background: red;
}
.classname--two {
background: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment