Skip to content

Instantly share code, notes, and snippets.

@mborsare
Created August 28, 2014 17:17
Show Gist options
  • Save mborsare/8416dd381e1e3520799c to your computer and use it in GitHub Desktop.
Save mborsare/8416dd381e1e3520799c to your computer and use it in GitHub Desktop.
Sass mappin'
// ----
// Sass (v3.4.1)
// Compass (v1.0.1)
// ----
$countries: (
austria: red,
england: blue,
france: mediumseagreen,
germany: dimgray,
italy: teal,
russia: goldenrod,
turkey: goldenrod
);
@each $country, $color in $countries {
.#{$country} {
fill: darken(($color), 20%);
}
}
.austria {
fill: #990000;
}
.england {
fill: #000099;
}
.france {
fill: #226741;
}
.germany {
fill: #363636;
}
.italy {
fill: #001a1a;
}
.russia {
fill: #816213;
}
.turkey {
fill: #816213;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment