hteumeuleu / email-bugs

Email quirks and bugs
536 stars 20 forks source link

Apple Mail doesn't respect background-color: #ffffff icw preferred color scheme media query #65

Open wilbertheinen opened 5 years ago

wilbertheinen commented 5 years ago

it seems that if you set the background-color to #ffffff, within media query for preferred color scheme, apple mail doesn’t respect that. Changing the hex to #fffffe and it works.

This doesn't seem to work: @media (prefers-color-scheme: dark) { body { background-color: #ffffff } }

This does: @media (prefers-color-scheme: dark) { body { background-color: #fffffe } }

hteumeuleu commented 5 years ago

I confirm that this is still the case even today in iOS 13.1.2, and even when apply to elements other than <body>.