11 lines
160 B
SCSS
11 lines
160 B
SCSS
//
|
|
// backgrounds.scss
|
|
//
|
|
|
|
|
|
@each $color,
|
|
$value in $theme-colors {
|
|
.bg-soft-#{$color} {
|
|
background-color: rgba(($value), 0.25) !important;
|
|
}
|
|
} |