$arrayColors: (
white,
black,
green,
red,
orange
);
List index is 6 but list is only 5 items long for 'nth'
. Я понимаю, что он ругается на то, что не существует 6 элемента в массиве, но как тогда получать следующие элементы массива? @each $color in $arrayColors {
$realIndex: index($arrayColors, $color); // настоящий цвет
$nextIndex: nth($arrayColors, ($realIndex + 1)); // следующий цвет
.test-#{$realIndex} {
color: $nextIndex;
}
}
}