Created
October 25, 2020 18:43
-
-
Save wijayaerick/69684e25a6add21586b6cccc40f8a7ee to your computer and use it in GitHub Desktop.
JS Script to set Rambox header color to 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
// Source: https://github.com/ramboxapp/community-edition/issues/1532#issue-305344812 | |
// | |
// I put the script in gist so I can find it easier | |
// dark mode | |
document.querySelector('.x-tab-bar').style.backgroundColor='#20272D'; | |
document.querySelectorAll('.x-tab').forEach(function(el){el.style.backgroundColor='#40474D';}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment