Alright, I use npm to install bootstrap. The website should be printable, so the basic bootstrap print style is nice. But I need the text colors. Sadly the default bootstrap removes all colors.
*,
*:before,
*:after {
color: #000 !important; // Black prints faster: h5bp.com/s
}
I want to "revert" that color setting, but don't want to / can't change the bootstrap files as they are deployed and installed on rollout.
Has anyone an idea how to overwrite that setting with a custom css?