mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
21 lines
532 B
JavaScript
21 lines
532 B
JavaScript
/*
|
|
* notion-enhancer core: theming
|
|
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
|
* (https://notion-enhancer.github.io/) under the MIT license
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
export default function (api, db) {
|
|
const { web } = api;
|
|
|
|
const updateTheme = () =>
|
|
document.documentElement.classList[
|
|
document.body.classList.contains('dark') ? 'add' : 'remove'
|
|
]('dark');
|
|
updateTheme();
|
|
web.addDocumentObserver((mutation) => {
|
|
if (mutation.target === document.body) updateTheme();
|
|
});
|
|
}
|