summaryrefslogtreecommitdiff
path: root/browsers/firefox/extension/content.js
blob: 118c7ee7b4c516c2b190604b3d9ebdebdfbeaf9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function apply(color) {
  document.documentElement.style.setProperty("--accent-color", color);
}

browser.runtime.onMessage.addListener(msg => {
  if (msg.color) {
    apply(msg.color);
  }
});

browser.runtime.sendMessage({request: "color"}).then(msg => {
  if (msg && msg.color) {
    apply(msg.color);
  }
});