JR 7 Dark Mode Support Shared by Jason Rodriguez, 2021-05-07 16:15:40. Tagged: Boilerplate, All Copy to Clipboard Save to Design Library Snippet Trigger View Design Library Please enter a valid trigger The text that, when typed and followed by a tab will trigger the insertion of the snippet code. Added to your Design Library. Go to Design Library. Copied to Clipboard Your snippet is out of date. Update snippet <!-- Put both of these sections in the <head> of your email. --> <!-- Enable Dark Mode Support --> <meta name="color-scheme" content="light dark"> <meta name="supported-color-schemes" content="light dark only"> <style type="text/css"> :root { color-scheme: light dark; supported-color-schemes: light dark; } <!-- Use this media query to adapt styles for Dark Mode. --> @media (prefers-color-scheme: dark) { <!-- Target elements as usual within the media query. --> } </style>