aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/cmd/tools/vdoc/resources/dark-mode.js
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/cmd/tools/vdoc/resources/dark-mode.js')
-rw-r--r--v_windows/v/old/cmd/tools/vdoc/resources/dark-mode.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/v_windows/v/old/cmd/tools/vdoc/resources/dark-mode.js b/v_windows/v/old/cmd/tools/vdoc/resources/dark-mode.js
new file mode 100644
index 0000000..075dbb5
--- /dev/null
+++ b/v_windows/v/old/cmd/tools/vdoc/resources/dark-mode.js
@@ -0,0 +1,6 @@
+(function() {
+ var html = document.getElementsByTagName('html')[0];
+ if (localStorage.getItem('dark-mode') === 'true') {
+ html.classList.add('dark');
+ }
+})();