I've got the following variable list:
$list: 'one', 'two', 'three'
And I need to use this list, but with one more value, temporarily, how can I do something like this?
$list: 'one', 'two', 'three'
$list-group: $list, 'four'
@for $i from 1 through length($list-group)
.color-#{ nth($list-group, $i) }
content: nth($list-group, $i)