mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-06 05:29:02 +00:00
19 lines
546 B
JavaScript
19 lines
546 B
JavaScript
/**
|
|
* notion-enhancer: theming
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = async function ({ web, electron }, db, __exports, __eval) {
|
|
await web.whenReady();
|
|
web.loadStylesheet('repo/theming/electronSearch.css');
|
|
|
|
electron.onMessage('set-search-theme', (event, theme) => {
|
|
for (const [key, value] of theme) {
|
|
document.documentElement.style.setProperty(`--theme--${key}`, value);
|
|
}
|
|
});
|
|
};
|