I am trying to get the HTML email to have normal white background even when a mobile dark mode is turned on, I have added the below meta and media queries
meta name="color-scheme" content="light dark"
meta name="supported-color-schemes" content="light dark"
@media (prefers-color-scheme: light dark) {
body {
background: #ffffff !important;
color: #ffffff !important;
}
h1,h2,h3,h4,p{
color:#ffffff;
}
}
But when I turn the dark mode on in my mobile the background is overwritten to black and font colour to white, please help.