Alexander Münch

Results 11 comments of Alexander Münch

My workaround, for just the use-case: ```scss .text-bg-warning .modal-title { color: black; } ``` A more sophisticated solution: ```scss @each $color, $value in $theme-colors { .text-bg-#{$color} .modal-title { color: color-contrast($value)...