Skip to content

Instantly share code, notes, and snippets.

@AlbertoElias
Created May 8, 2015 11:51
Show Gist options
  • Save AlbertoElias/960b4c5dbf59246fe5bf to your computer and use it in GitHub Desktop.
Save AlbertoElias/960b4c5dbf59246fe5bf to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.0-beta.6)
// ----
$colors: (
#{transparent}: #000000, // Output is fine (black)
transparent: #000000
);
@each $name, $csscolor in $colors {
.c-#{$name} {
background-color: $csscolor;
}
}
.c {
color: map-get($colors, transparent);
}
.c-transparent {
background-color: #000000;
}
.c-transparent {
background-color: #000000;
}
.c {
color: #000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment