Mail isn't automatically dark inverted using the Mail app on iOS, until I use @media (prefers-color-scheme: dark) and feed it the inverted colors
@media (prefers-color-scheme: dark) {
body {
background-color: #0b0a09;
color: white;
}
.body {
background-color: #0b0a09;
}
.main {
background: #000;
}
.footer td,
.footer p,
.footer span,
.footer a {
color: #656159;
}
}
Mail isn't automatically dark inverted using the Mail app on iOS, until I use
@media (prefers-color-scheme: dark)and feed it the inverted colors