aboutsummaryrefslogtreecommitdiff
path: root/dst/scripts/darktheme.js
diff options
context:
space:
mode:
Diffstat (limited to 'dst/scripts/darktheme.js')
-rw-r--r--dst/scripts/darktheme.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/dst/scripts/darktheme.js b/dst/scripts/darktheme.js
deleted file mode 100644
index b44db9a..0000000
--- a/dst/scripts/darktheme.js
+++ /dev/null
@@ -1,27 +0,0 @@
-const themeButton = document.getElementById('darkmodetoggle');
-const theme = localStorage.getItem("theme");
-var isDark = false;
-
-if (theme) {
- setTheme(theme === "dark");
-} else if (window.matchMedia
- && window.matchMedia("(prefers-color-scheme: dark)").matches) {
- setTheme(true);
-}
-
-function setTheme(dark) {
- if (dark) {
- document.body.classList.add("dark-mode");
- themeButton.className = "fa fa-sun-o";
- localStorage.setItem("theme", "dark");
- } else {
- document.body.classList.remove("dark-mode");
- themeButton.className = "fa fa-moon-o";
- localStorage.setItem("theme", "light");
- }
- isDark = dark;
-}
-
-function switchTheme() {
- setTheme(!isDark);
-}