I need guidance on handling syntax for unquoting, declaring variables, and concatenating strings within a for loop. My objective is to utilize a map to generate color variables and corresponding classes for styling elements with font-color and background-color properties.
$color-collection: ('white': '#FFFFFF', 'black': '#000000', 'goldenrod': '#F59600');
@for $i from 0 to length($color-collection) {
//generate individual variable assignments for each color, e.g. $white: #FFFFFF;
//create CSS classes based on variable names with specified styles, e.g. .bg-color-white {background-color: $white;}
}