info helpers-color
.bg-first
.bg-second
.bg-red
.bg-green
.bg-orange
.bg-black
.bg-gray-dark-extra
.bg-gray-dark
.bg-gray
.bg-gray-light
.bg-white
<div class="m-buttons">
	<?php foreach ($colors as $color) { ?>
		<div class="bg-<?php echo $color; ?>">.bg-<?php echo $color; ?></div>
	<?php } ?>
</div>
@each $name, $value in $colors {

    @if type-of($value) == 'map' {

        $value: map-get($value, '60');

    }

    .text-#{$name} {

        color: $value;

    }

    .bg-#{$name} {

        background-color: $value;

    }

}

Menu