Skip to content

Instantly share code, notes, and snippets.

@xdesro
Last active October 23, 2020 17:08
Show Gist options
  • Save xdesro/afb7e981f0249009b4c159b19a216d99 to your computer and use it in GitHub Desktop.
Save xdesro/afb7e981f0249009b4c159b19a216d99 to your computer and use it in GitHub Desktop.
Bookmarklet to quickly convert a site from light to dark mode.

Quick & Easy & Dirty Dark Mode Bookmarklet

Okay to be clear this won't always work and definitely won't always work well. But it's something. It's not the dark mode we deserve. But it's the one we need right now.

To Install:

  1. Create a new bookmark in whatever browser.
  2. Set the target or location of the bookmark to the following snippet.
javascript:(function(){document.documentElement.style.mixBlendMode = 'difference';document.documentElement.style.filter = 'hue-rotate(180deg)';})();
  1. Profit.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment