Skip to content

Instantly share code, notes, and snippets.

@envoytravis
Created April 9, 2015 21:18
Show Gist options
  • Save envoytravis/46d1708d77a97c4d117f to your computer and use it in GitHub Desktop.
Save envoytravis/46d1708d77a97c4d117f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$colors: red blue yellow orange #b4da55;
@each $color in $colors {
.thing {
color: $color;
}
}
.thing {
color: red;
}
.thing {
color: blue;
}
.thing {
color: yellow;
}
.thing {
color: orange;
}
.thing {
color: #b4da55;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment