Skip to content

Instantly share code, notes, and snippets.

@davidabram
Created October 23, 2024 18:00
Show Gist options
  • Select an option

  • Save davidabram/7bc481bbe1c17007484ff204b3e7c920 to your computer and use it in GitHub Desktop.

Select an option

Save davidabram/7bc481bbe1c17007484ff204b3e7c920 to your computer and use it in GitHub Desktop.
/* 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