Add Bootstrap text-muted CSS variable override

This commit is contained in:
Andreas Nedbal 2020-04-28 15:52:20 +02:00
parent 650751e875
commit 01499797a1
2 changed files with 6 additions and 0 deletions

View File

@ -48,4 +48,6 @@ $colorNames: (
--warning-text: 255, 255, 255;
--info-text: 255, 255, 255;
--success-text: 255, 255, 255;
--muted-text: 108, 117, 125;
}

View File

@ -6,4 +6,8 @@
.text-#{$color} {
color: var(--#{$color}) !important;
}
}
.text-muted {
color: RGB(var(--muted-text));
}