I would like to keep the original text colors on the web pages when printing. However, the css in your theme override the colors:
@media print
- {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
For example, some important messages we use red colors. Although it may not be the best practice for accessibility, but it is nice to keep the original colors anyway.
Do you have any recommendation? Since I can’t find a way to undo “color: #000 !important;”.