Add Bootstrap text-muted CSS variable override
This commit is contained in:
parent
650751e875
commit
01499797a1
|
@ -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;
|
||||
}
|
|
@ -6,4 +6,8 @@
|
|||
.text-#{$color} {
|
||||
color: var(--#{$color}) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.text-muted {
|
||||
color: RGB(var(--muted-text));
|
||||
}
|
Loading…
Reference in New Issue