Skip to content

Instantly share code, notes, and snippets.

@scottkellum
Created June 20, 2014 20:22
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 scottkellum/8f1ee53b41cde4178523 to your computer and use it in GitHub Desktop.
Save scottkellum/8f1ee53b41cde4178523 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.19)
// Compass (v0.12.6)
// ----
$colors:
red
green
blue
purple
;
$color-counter: 0;
@function color() {
@if $color-counter == length($colors) {
$color-counter: 0;
}
$color-counter: $color-counter + 1;
@return nth($colors, $color-counter);
}
foo {
color: color();
color: color();
color: color();
color: color();
color: color();
color: color();
color: color();
}
foo {
color: red;
color: green;
color: blue;
color: purple;
color: red;
color: green;
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment