Skip to content

Instantly share code, notes, and snippets.

@stefanoschrs
Created August 4, 2023 06:24
Show Gist options
  • Save stefanoschrs/10c422bbabd11df54a8134ea0e3c86e9 to your computer and use it in GitHub Desktop.
Save stefanoschrs/10c422bbabd11df54a8134ea0e3c86e9 to your computer and use it in GitHub Desktop.
Google Chat - Dark mode
var r = document.querySelector(':root');
r.style.setProperty('--background-color', '#333');
r.style.setProperty('--primary-line-color', '#222');
r.style.setProperty('--stream-container-background-color', '#222');
r.style.setProperty('--primary-text-color', '#fff');
r.style.setProperty('--secondary-text-color', '#ddd');
r.style.setProperty('--conversation-header-primary-text-color', '#fff');
r.style.setProperty('--header-text-color', '#fff');
r.style.setProperty('--postbar-button-icon-color', '#fff');
r.style.setProperty('--icon-color', '#fff');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment