Skip to content

Instantly share code, notes, and snippets.

@mgiugliano
Created October 1, 2018 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgiugliano/5ff75474c64f3a2a97a9f4147b6044c8 to your computer and use it in GitHub Desktop.
Save mgiugliano/5ff75474c64f3a2a97a9f4147b6044c8 to your computer and use it in GitHub Desktop.
Dark theme in Slack - add the following lines at the bottom of /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'https://raw.githubusercontent.com/laCour/slack-night-mode/master/css/raw/black.css',
success: function(css) {
$("<style></style>").appendTo('head').html(css);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment