Skip to content

Instantly share code, notes, and snippets.

@dillonricketts
Created August 13, 2015 20:29
Show Gist options
  • Select an option

  • Save dillonricketts/6d11334e2dc2c7326bde to your computer and use it in GitHub Desktop.

Select an option

Save dillonricketts/6d11334e2dc2c7326bde to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// ----
$red: red;
$blue: blue;
$green: green;
$colors: (
red: #FF0000,
green: #00FF00,
blue: #0000FF
);
@each $color, $hex in $colors {
.#{$color} {
background: $hex;
background-color: $hex;
fill: $hex;
}
}
.red {
background: #FF0000;
background-color: #FF0000;
fill: #FF0000;
}
.green {
background: #00FF00;
background-color: #00FF00;
fill: #00FF00;
}
.blue {
background: #0000FF;
background-color: #0000FF;
fill: #0000FF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment