diff options
author | marudor <marudor@marudor.de> | 2019-05-16 16:10:53 +0200 |
---|---|---|
committer | marudor <marudor@marudor.de> | 2019-05-16 16:10:53 +0200 |
commit | 84b32b28e9f1da6576e4864a0f374b341a2c9920 (patch) | |
tree | d6bd27263aa3117c9368d3005fe27519f4793247 /public/static/js/theme.js | |
parent | 87e74ca90d4c13758461f380b00ed83b5a287da9 (diff) |
Further color improvements
Diffstat (limited to 'public/static/js/theme.js')
-rw-r--r-- | public/static/js/theme.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/public/static/js/theme.js b/public/static/js/theme.js deleted file mode 100644 index 71fb6ae..0000000 --- a/public/static/js/theme.js +++ /dev/null @@ -1,12 +0,0 @@ -var validThemes = ['dark.min', 'light.min']; -var currentTheme = localStorage.getItem('theme'); -if (!validThemes.includes(currentTheme)) { - currentTheme = window.matchMedia('(prefers-color-scheme: dark').matches ? 'dark.min' : 'light.min'; -} -addStyleSheet(currentTheme, 'theme'); - -function toggleTheme() { - currentTheme = currentTheme === 'dark.min' ? 'light.min' : 'dark.min'; - localStorage.setItem('theme', currentTheme); - addStyleSheet(currentTheme, 'theme'); -} |