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;
|
--warning-text: 255, 255, 255;
|
||||||
--info-text: 255, 255, 255;
|
--info-text: 255, 255, 255;
|
||||||
--success-text: 255, 255, 255;
|
--success-text: 255, 255, 255;
|
||||||
|
|
||||||
|
--muted-text: 108, 117, 125;
|
||||||
}
|
}
|
|
@ -7,3 +7,7 @@
|
||||||
color: var(--#{$color}) !important;
|
color: var(--#{$color}) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.text-muted {
|
||||||
|
color: RGB(var(--muted-text));
|
||||||
|
}
|
Loading…
Reference in New Issue