Skip to content

Instantly share code, notes, and snippets.

@lkurzyniec
Created January 10, 2025 18:05
Show Gist options
  • Save lkurzyniec/3c988ac37c9ff8dcf10089d2cc815e82 to your computer and use it in GitHub Desktop.
Save lkurzyniec/3c988ac37c9ff8dcf10089d2cc815e82 to your computer and use it in GitHub Desktop.
dark mode
//save below as bookmark
javascript:(function(){ document.querySelector('html').setAttribute('style', 'filter: invert(1) hue-rotate(180deg); transition: color 300ms, background-color 300ms;'); document.querySelectorAll('img').forEach(item => item.setAttribute('style', 'filter: invert(1) hue-rotate(180deg);')) })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment