$colors: red, green, blue, yellow;
$second_color: nth($colors, 2);
$more_colors: orange, purple, pink;
$all_colors: join($colors, $more_colors);
$colors: append($colors, gray);
@each $color in $colors {
.box-#{$color} {
background-color: $color;
width: 100px;
height: 100px;
}
}