Skip to content

Instantly share code, notes, and snippets.

@napolux
Created January 3, 2021 17:15
Show Gist options
  • Save napolux/547ecf4dd1a70f29068d37e4974ab408 to your computer and use it in GitHub Desktop.
Save napolux/547ecf4dd1a70f29068d37e4974ab408 to your computer and use it in GitHub Desktop.
LinkedIn (and all the other websites) dark mode bookmarklet
javascript:(d=>{var css=`:root{background-color:#fefefe;filter:invert(100%)}*{background-color:inherit}img:not([src*=".svg"]),video{filter:%20invert(100%)}`,style,id="dark-theme-snippet",ee=d.getElementById(id);if(null!=ee)ee.parentNode.removeChild(ee);else%20{style%20=%20d.createElement('style');style.type="text/css";style.id=id;if(style.styleSheet)style.styleSheet.cssText=css;else%20style.appendChild(d.createTextNode(css));(d.head||d.querySelector('head')).appendChild(style)}})(document)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment