summarylogtreecommitdiffstats
path: root/darkify_slack.js
diff options
context:
space:
mode:
authorSuperITMan2020-04-14 17:26:05 +0200
committerSuperITMan2020-04-15 17:33:26 +0200
commit7888fc6f1ed3603188931899c8944dba2665661a (patch)
tree901fa8d46ee27d2afb2d2a743ea376156396ac9b /darkify_slack.js
parentebc2bf30aad2a952da73800815bf189618818356 (diff)
downloadaur-7888fc6f1ed3603188931899c8944dba2665661a.tar.gz
update to 4.3.2
Diffstat (limited to 'darkify_slack.js')
-rw-r--r--darkify_slack.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/darkify_slack.js b/darkify_slack.js
index ea7a32e7ce6e..c8697c9a0462 100644
--- a/darkify_slack.js
+++ b/darkify_slack.js
@@ -1,8 +1,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);
});