我的问题与询问的here相似,但是我不想使用颜色列表,而是想从已经设置好用于其他颜色功能的数组中访问它们。例如
$chart-palette: (
green: #39B54A,
yellow: #FFAE00,
red: #E6001F,
orange: #F78200
);
从已经提供的示例中借用,这是我到目前为止的内容:
@for $i from 1 through length($chart-palette) {
div:nth-child(#{length($chart-palette)}n+#{$i}) {
background: nth($chart-palette, $i)
}
}