I want to be able to pick a SASS map item value by that map item\'s index. Simplified scenario:
// Colors map (MUST stay this way due to s
gist demo
$colors: ( a: red, b: green, c: blue ); @each $color, $name in $colors{ $i: index($colors, $color $name); a:nth-child(#{$i}){ color:$color; } }