how can I preserve my colors when printing (to pdf in my case) when using bootstrap?
Bootstrap is using
@media print {
* {
color: #000 !important;
}
}
Is there anything I can put AFTER this in my css that would return the color behavior to normal?
I tried
@media print {
* {
color: inherit !important;
}
}
and
@media print {
* {
color: auto !important;
}
}
Without success.