From 88795419991da0dccf4319a7113d716261506c9a Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Thu, 27 Apr 2023 23:48:58 +0330 Subject: [PATCH] dark mode - default --- web/html/xui/common_sider.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/html/xui/common_sider.html b/web/html/xui/common_sider.html index 3de4d0f2..278dc4e5 100644 --- a/web/html/xui/common_sider.html +++ b/web/html/xui/common_sider.html @@ -66,7 +66,7 @@ const siderDrawer = { visible: false, collapsed: false, - isDarkTheme: localStorage.getItem("dark-mode") === 'true' ? true : false, + isDarkTheme: localStorage.getItem("dark-mode") === 'false' ? false : true, show() { this.visible = true; },