diff options
author | 135e2 <[email protected]> | 2022-05-29 17:18:06 +0800 |
---|---|---|
committer | 135e2 <[email protected]> | 2022-06-03 11:30:43 +0800 |
commit | c02c983166effdb5db4578e4ab45f58762f082d4 (patch) | |
tree | 5ba85cfe3672a04143718153697f7790e6fbdd14 /layout/_partial/scripts.ejs | |
parent | eb8a7b323891b870ddda677fa43e583c7477803d (diff) | |
download | chromate-c02c983166effdb5db4578e4ab45f58762f082d4.tar.gz chromate-c02c983166effdb5db4578e4ab45f58762f082d4.tar.bz2 chromate-c02c983166effdb5db4578e4ab45f58762f082d4.zip |
feat: add #btn-toggle-dark botton to toggle dark mode
- Switch dark theme to bulmaswatch/darkly, since bulma-prefers-dark highly relies on `@media: (prefers-color-scheme: dark)` tag
- Add a playerman handler to toggle shikwasa theme[1]
- Use localstorage to store user's preference[2]
- Fix a typo: SystemDarkmodePrefrence => SystemDarkmodePreference
[1]: Modified from https://github.com/jessuni/shikwasa/blob/main/pages/public/index.js#L208
[2]: Took inspiration from https://blog.skk.moe/post/hello-darkmode-my-old-friend
Diffstat (limited to 'layout/_partial/scripts.ejs')
-rw-r--r-- | layout/_partial/scripts.ejs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/layout/_partial/scripts.ejs b/layout/_partial/scripts.ejs index a242775..14348a9 100644 --- a/layout/_partial/scripts.ejs +++ b/layout/_partial/scripts.ejs @@ -24,13 +24,14 @@ <script> window.addEventListener("load", () => { const theme_selector = (mode) => { - if (mode === SystemDarkmodePrefrence.dark) { + if (mode === SystemDarkmodePreference.dark) { document.getElementById("highlight-light-theme").setAttribute("disabled", "disabled"); document.getElementById("highlight-dark-theme").removeAttribute("disabled"); } else { document.getElementById("highlight-dark-theme").setAttribute("disabled", "disabled"); document.getElementById("highlight-light-theme").removeAttribute("disabled"); } + console.debug(`highlightjs theme set to ${mode}`); }; darklistener.add(theme_selector); }, false); |