summarylogtreecommitdiffstats
path: root/darkify_slack.js
blob: c8697c9a0462b508b2734573ff06daa075429037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
document.addEventListener("DOMContentLoaded", function() {
    let customCustomCSS = `
    :root {
      /* Modify these to change your theme colors: */
      --primary: #61AFEF;
      --text: #ABB2BF;
      --background: #282C34;
      --background-elevated: #3B4048;
}
`;

    let s = document.createElement('style');
    s.type = 'text/css';
    s.innerHTML = `
HERE
` + customCustomCSS;
    document.head.appendChild(s);
});