Skip to content

Instantly share code, notes, and snippets.

  • Save michaelstephens/a71d812acfe7873bb223c915c686229d to your computer and use it in GitHub Desktop.
Save michaelstephens/a71d812acfe7873bb223c915c686229d to your computer and use it in GitHub Desktop.
Slack Dark Theme
document.addEventListener('DOMContentLoaded', function() {
$.ajax({
url: 'https://raw.githubusercontent.com/mikestephens/slack-night-mode/master/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