mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-08 05:54:23 +01:00
7 lines
296 B
SCSS
7 lines
296 B
SCSS
@each $color, $value in $theme-colors {
|
|
.text-bg-#{$color} {
|
|
color: color-contrast($value) if($enable-important-utilities, !important, null);
|
|
background-color: rgba(var(--#{$prefix}#{$color}-rgb), var(--#{$prefix}bg-opacity, 1)) if($enable-important-utilities, !important, null);
|
|
}
|
|
}
|