Last active
May 8, 2019 18:19
-
-
Save M-J-Robbins/9bb6675704aebc7c1272ccd547b77be6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta name="supported-color-schemes" value="light dark"> | |
</head> | |
<body class="body"> | |
<style style="display:block;white-space:pre-wrap" contenteditable> | |
:root { | |
color-scheme: light dark; | |
} | |
@media (prefers-color-scheme:light){ | |
body, .body2{background:#00ffff;color:#000000} | |
} | |
@media (prefers-color-scheme: dark) { | |
body{background:#c00000;color:#ffffff} | |
} | |
</style> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment