What I’m trying to do
I’m using custom background color for images (for edit, view, and picture view)
img {
background-color: rgb(90, 90, 90);
}
I’d like to change background color for images for PDF export
Things I have tried
@media print {.print .markdown-preview-view {
-webkit-print-color-adjust: exact;
background-color:white;
background-image:white;
}}