Skip to content

Instantly share code, notes, and snippets.

@andreasisaak
Created January 27, 2015 16:45
Show Gist options
  • Select an option

  • Save andreasisaak/ae1fbc4cf8c82cd3a4a1 to your computer and use it in GitHub Desktop.

Select an option

Save andreasisaak/ae1fbc4cf8c82cd3a4a1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
$colors: (
black : #000000,
white : #ffffff,
thunderbird : #bd1616,
);
@each $color-key in map-keys($colors) {
$color-value: map-get($colors, $color-key);
li.#{$color-key} {
color: $color-value;
}
}
li.black {
color: #000000;
}
li.white {
color: #ffffff;
}
li.thunderbird {
color: #bd1616;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment