Created
June 20, 2014 20:22
-
-
Save scottkellum/8f1ee53b41cde4178523 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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