CS 0 Unsubscribe Flag as spam Edit Delete Keeping White Text White in Gmail Dark Mode (Remi Parmentier) Shared by Carin Slater, 2022-12-03 21:34:56. Tagged: Hack, Gmail 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 <!--Dark Mode hack to keep white text white in Gmail. Uses color blends ala Remi Parmentier: https://www.hteumeuleu.com/2021/fixing-gmail-dark-mode-css-blend-modes/--> <!--Styles--> <style> u + .body .gmail-screen { background:#000; mix-blend-mode:screen; } u + .body .gmail-difference { background:#000; mix-blend-mode:difference; } </style> <!--HTML--> <p style="color: #ffffff;"> <span class="gmail-screen"><span class="gmail-difference">I am white text</span></span> </p>