From 05301f1cd5f3ff5603d07c7f2748643a415f89b7 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 12 May 2024 19:03:27 +0600 Subject: [PATCH] web/cobalt.js: match status bar popup color better --- src/front/cobalt.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/front/cobalt.js b/src/front/cobalt.js index 82fcfc58..a3302c10 100644 --- a/src/front/cobalt.js +++ b/src/front/cobalt.js @@ -156,8 +156,8 @@ const changeStatusBarColor = () => { const colors = { "dark": "#000000", "light": "#ffffff", - "dark-popup": "#191919", - "light-popup": "#e8e8e8" + "dark-popup": "#151515", + "light-popup": "#ebebeb" } let state = store.isPopupOpen ? "dark-popup" : "dark";