// // utilities.scss // @each $color, $value in $theme-colors { // bg color .bg-#{$color} { background-color: $value !important; } // bg-soft color .bg-soft-#{$color} { background-color: rgba(($value), 0.12) !important; } // border color .border-#{$color} { border-color: $value !important; } // text color .text-#{$color} { color: $value !important; } } .text-muted { color: $text-muted; }