Skip to content

Instantly share code, notes, and snippets.

@AlbertoElias
Created May 7, 2015 09:35
Show Gist options
  • Save AlbertoElias/58f494fbfad75e32358f to your computer and use it in GitHub Desktop.
Save AlbertoElias/58f494fbfad75e32358f 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)
rgba(0,0,0,0): #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