I want to do an array of colours in SCSS
$my-colors: ("green", #008000),("blue",#0000ff), ("orange",#fca644);
And with this array, I would like to colour each column. Imagining that the columns could have the minimum of 4 and the maximum of 10, so the colours defined in the array should repeat.
I thought we have a really good way to do this on SCSS.