From 47e2693368efe80f836964b535e6fdc9a77a8b69 Mon Sep 17 00:00:00 2001 From: Cutls Date: Thu, 8 Aug 2019 01:55:47 +0900 Subject: [PATCH] Fix: about blue theme --- app/js/ui/theme.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/js/ui/theme.js b/app/js/ui/theme.js index 2c8d422c..18d39c67 100644 --- a/app/js/ui/theme.js +++ b/app/js/ui/theme.js @@ -11,6 +11,7 @@ function themes(theme) { $("html").removeClass("greentheme"); $("html").removeClass("browntheme"); $("html").removeClass("blacktheme"); + $("html").removeClass("bluetheme"); $("html").removeClass("customtheme"); $("html").addClass(theme + "theme"); var font = localStorage.getItem("font");