The print-color-adjust property tells the browser whether it may alter colors when printing to save ink (e.g. dropping dark backgrounds), or must respect the exact colors specified..map {
print-color-adjust: exact;
}@media print {
.zebra tr:nth-child(even) {
background: #f0f0f0;
print-color-adjust: exact;
}
}economyDefault. Browser may adjust styling as it deems appropriate (e.g. drop backgrounds when printing).exactColors and styling are significant — the browser must not alter them unless the user explicitly requests it. Useful for maps, charts, and zebra-striping.CSS Color Adjustment Module Level 1Candidate RecommendationW3CMDN