Created
October 23, 2024 18:00
-
-
Save davidabram/7bc481bbe1c17007484ff204b3e7c920 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| /* Reset critical elements instead of all elements */ | |
| body, p, h1, h2, h3, h4, h5, h6, a, button, input { | |
| color: white; | |
| background: white; | |
| border: none; | |
| opacity: 0; | |
| outline: 0; | |
| } | |
| /* Media query for dark mode */ | |
| @media (prefers-color-scheme: dark) { | |
| body, p, h1, h2, h3, h4, h5, h6, a, button, input { | |
| color: black; | |
| background: black; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment