Dark Mode for E-Mails

PHOTO EMBED

Tue Nov 21 2023 08:13:13 GMT+0000 (Coordinated Universal Time)

Saved by @Sebhart #css #mark-up #email

<!-- This tells you if your device is dark mode enabled or not. -->
<meta name=”color-scheme” content=”light dark”>
<meta name=”supported-color-schemes” content=”light dark”>
<style type=”text/css”>
:root {
Color-scheme: light dark;
supported-color-schemes:light dark;
}
</style>

/* Here you can adjust the colors of your brand’s preferred dark mode theme. */
@media (prefers-color-scheme: dark ) {
.body {
      background-color: #CCCCCC !important;
}
h1, h2, h3, td {
      color: #9ea1f9 !important;
      padding: 0px 0px 0px 0px !important;
}
}
content_copyCOPY

https://www.emailaudience.com/dark-mode-email/