Skip to content

Instantly share code, notes, and snippets.

@VaguelySerious
Created December 16, 2020 21:59
Show Gist options
  • Save VaguelySerious/b4ce9aaed15cb8858ef9ad4b05cfb269 to your computer and use it in GitHub Desktop.
Save VaguelySerious/b4ce9aaed15cb8858ef9ad4b05cfb269 to your computer and use it in GitHub Desktop.
Bookmarkable code to quickly dark-mode a website
javascript:(function(){var all = document.getElementsByTagName("*");for (var i=0, max=all.length; i < max; i++) {all[i].style.setProperty('color', 'white', 'important');all[i].style.setProperty('background-color', 'black', 'important');}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment