Skip to content

Instantly share code, notes, and snippets.

@Odepax
Last active May 13, 2021 21:47
Show Gist options
  • Save Odepax/d599626fac4941a85aebfa37b137a337 to your computer and use it in GitHub Desktop.
Save Odepax/d599626fac4941a85aebfa37b137a337 to your computer and use it in GitHub Desktop.
Quick & dirty dark theme
((invertImages, invertCode, applyBlackBackground) => {
document.body.style.filter = "invert()"
document.body.style.background = applyBlackBackground ? "black" : "white"
Array.from(document.querySelectorAll("pre")).map(pre => pre.style.filter = invertCode ? "invert()" : null)
Array.from(document.querySelectorAll("img")).map(img => img.style.filter = invertImages ? "invert()" : null)
})(/* Invert Image | Invert Code | Dark BG */ 1, 0, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment