Skip to content

Instantly share code, notes, and snippets.

@antiops
Created March 7, 2021 06:16
Show Gist options
  • Select an option

  • Save antiops/e2f597308f24dbcae280d27bf4ccdb67 to your computer and use it in GitHub Desktop.

Select an option

Save antiops/e2f597308f24dbcae280d27bf4ccdb67 to your computer and use it in GitHub Desktop.
darkmode on any site
const divs = document.querySelectorAll('*')
for (let i = 0; i < divs.length; i++){
divs[i].style.backgroundColor = 'rgb(34,34,34)'
divs[i].style.color = 'rgb(255 255 255)'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment