From 5b39f3a7a6372af10877122bb6d8a0b39cff021f Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 19 Feb 2023 15:00:38 -0500 Subject: [PATCH] Tweak Light theme colors. --- src/ui/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/common.cpp b/src/ui/common.cpp index 1a5b805b..cef724b3 100644 --- a/src/ui/common.cpp +++ b/src/ui/common.cpp @@ -74,7 +74,7 @@ void setTheme(NVGcolor bg, NVGcolor fg) { void refreshTheme() { if (settings::uiTheme == "light") { - setTheme(nvgRGB(0xe8, 0xe8, 0xe8), nvgRGB(0x00, 0x00, 0x00)); + setTheme(nvgRGB(0xfb, 0xfb, 0xfb), nvgRGB(0x04, 0x04, 0x04)); } else if (settings::uiTheme == "dark") { setTheme(nvgRGB(0x00, 0x00, 0x00), nvgRGB(0xff, 0xff, 0xff));