The current function is returning an output in the color #ff0063
, but my goal is to create a variety of colorful pixel dots on the screen. Could someone provide an explanation of what this code is doing?
@function multiple-box-shadow ($n) {
$value: '#{random(2500)}px #{random(2500)}px #ff006e';
@for $i from 2 through $n {
$value: '#{$value} , #{random(2500)}px #{random(2500)}px #ff006e';
}
@return unquote($value);
}