summaryrefslogtreecommitdiff
path: root/pyssg.xyz/live/static/scripts/theme.js
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-05-01 09:35:25 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-05-01 09:35:25 -0600
commitf797bb14f7413df2abac6326c6df769004e50aa1 (patch)
tree20850afbf9d45adbbcc6fc3a7aecedfa34db830c /pyssg.xyz/live/static/scripts/theme.js
parent127130ab909dac8886f45ec856f1d1bce3c7bcc0 (diff)
small bugfix, add toc settings, update example site and delete unnecessary static assets
Diffstat (limited to 'pyssg.xyz/live/static/scripts/theme.js')
-rw-r--r--pyssg.xyz/live/static/scripts/theme.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/pyssg.xyz/live/static/scripts/theme.js b/pyssg.xyz/live/static/scripts/theme.js
deleted file mode 100644
index a107101..0000000
--- a/pyssg.xyz/live/static/scripts/theme.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// refactored code for a better solution found in:
-// https://medium.com/@haxzie/dark-and-light-theme-switcher-using-css-variables-and-pure-javascript-zocada-dd0059d72fa2
-var local_storage = window.localStorage;
-
-// changed window.onload to document.addEventListener, as suggested here:
-// https://stackoverflow.com/a/800010
-document.addEventListener("DOMContentLoaded", function(event) {
- let theme = local_storage.getItem('theme');
-
- if(theme == null){
- local_storage.setItem('theme', 'theme-dark');
- }
- else{
- if(theme == 'theme-dark'){
- setTheme('theme-dark');
- }
- else{
- setTheme('theme-light');
- }
- }
-})
-
-function setTheme(themeName){
- local_storage.setItem('theme', themeName)
- document.documentElement.className = themeName;
-}
-
-function toggleTheme(){
- if (local_storage.getItem('theme') == 'theme-dark') {
- setTheme('theme-light');
- }
- else{
- setTheme('theme-dark');
- }
-}