mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-14 18:42:30 +03:00
18 lines
445 B
SCSS
18 lines
445 B
SCSS
// Light badges
|
|
@each $color, $value in $theme-colors {
|
|
$badge-light-bg: shift-color($value, -80%);
|
|
.badge-light-#{$color} {
|
|
background-color: $badge-light-bg;
|
|
}
|
|
}
|
|
|
|
|
|
// Light buttons
|
|
@each $color, $value in $theme-colors {
|
|
$btn-light-bg: shift-color($value, -80%);
|
|
$btn-light-border: shift-color($value, -80%);
|
|
.btn-light-#{$color} {
|
|
@include button-variant($btn-light-bg, $btn-light-border, shift-color($value, 50%));
|
|
}
|
|
}
|