Skip to content

Instantly share code, notes, and snippets.

@drrobotnik
Created April 25, 2014 17:19
Show Gist options
  • Save drrobotnik/11296864 to your computer and use it in GitHub Desktop.
Save drrobotnik/11296864 to your computer and use it in GitHub Desktop.
mixin colors
$brand-colors:
grey #57585b,
orange #d1662a,
purple #632f54,
green #5e6e63,
yellow #d2a732,
blue #006e94,
red #790025;
@each $color in $brand-colors {
.brand-color {
.#{nth($color, 1)} & {
color: nth($color, 2);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment