Created
August 4, 2023 06:24
-
-
Save stefanoschrs/10c422bbabd11df54a8134ea0e3c86e9 to your computer and use it in GitHub Desktop.
Google Chat - Dark mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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