Skip to content

Instantly share code, notes, and snippets.

@Aeonexe
Created April 10, 2018 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aeonexe/c70f673c1b1180a8b761d51dc0a6f7ab to your computer and use it in GitHub Desktop.
Save Aeonexe/c70f673c1b1180a8b761d51dc0a6f7ab to your computer and use it in GitHub Desktop.
Mapas: clave : valor
$colors: (
"gray": '#eee',
"black": '#000',
"white": '#fff',
"red": '#ff4'
);
@each $color, $value in $colors {
.item-#{$color} {
background-color: $value;
@if $color == 'white' {
color: black;
} @else if $color == 'black' {
color: white;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment