Skip to content

Instantly share code, notes, and snippets.

@wijayaerick
Created October 25, 2020 18:43
Show Gist options
  • Save wijayaerick/69684e25a6add21586b6cccc40f8a7ee to your computer and use it in GitHub Desktop.
Save wijayaerick/69684e25a6add21586b6cccc40f8a7ee to your computer and use it in GitHub Desktop.
JS Script to set Rambox header color to dark mode
// 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