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); } });