Skip to content

Files

Latest commit

3befeac · Oct 13, 2018

History

History
24 lines (19 loc) · 734 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 734 Bytes

Custom theme for slack desktop app

Custom theme for slack desktop app basing on Wesbos cobalt2 theme. For best alround theme, use Cobalt2 theme for the sidebar

Usage on Mac

  • cd /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static
  • open /ssb-interop.js
  • Add the below piece of code in the very end of the file
document.addEventListener('DOMContentLoaded', function() {
  $.ajax({
    url: 'https://avdkishore.github.io/slack-custom-theme/index.css',
    success: function(css) {
      $("<style></style>").appendTo('head').html(css);
    }
  });
});
  • Restart slack

Note: This process needs to be followed whenever slack is updated