Skip to content

Instantly share code, notes, and snippets.

@mattsacks
Created July 31, 2012 00:03
Show Gist options
  • Save mattsacks/3212141 to your computer and use it in GitHub Desktop.
Save mattsacks/3212141 to your computer and use it in GitHub Desktop.
$a: white
$b: blue
$c: black
$letters: a b c
$colors: $a $b $c
@for $i from 1 through length($letters)
$letter: nth($letters, $i)
$color: nth($colors, $i)
.#{$letter} // .a, .b, .c
background: $color
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment