Skip to content

Instantly share code, notes, and snippets.

View michaelstephens's full-sized avatar

Michael Stephens michaelstephens

  • Procore Technology
  • United States
View GitHub Profile
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);
}
});
});