summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2025-08-10 12:27:38 +0000
committerwn_ <invalid@email.com>2025-08-10 12:27:38 +0000
commitb803f85ec26b1d4ccbfafab9df697f54b8744211 (patch)
tree2ce21334ff610f59726adba2d63ba5ac9b6f925c /js
parent4758c5f0bfe2981f1c42585c21a64175d3f82232 (diff)
Fix default dark mode CSS path in UtilityJS, use configurable default themes in bookmarklets.
Diffstat (limited to 'js')
-rw-r--r--js/utility.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/utility.js b/js/utility.js
index 070e9e2d1..2e27c4fe6 100644
--- a/js/utility.js
+++ b/js/utility.js
@@ -8,7 +8,7 @@ window.addEventListener("load", function() {
console.log("night mode changed to", is_night);
const light_theme = typeof __default_light_theme != 'undefined' ? __default_light_theme : 'themes/light.css';
- const dark_theme = typeof __default_dark_theme != 'undefined' ? __default_dark_theme : 'themes/dark.css';
+ const dark_theme = typeof __default_dark_theme != 'undefined' ? __default_dark_theme : 'themes/night.css';
if (link) {
const css_override = is_night ? dark_theme : light_theme;