From 1c4daaa39c0a772177efc2b45f137f416b0331e2 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Fri, 26 Oct 2018 00:20:23 +0200 Subject: [PATCH] colors: highlight marked items a bit less Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/d4a7cfb797475bc774921fb886f07ac52a57dbd2 Author: vanhofen Date: 2018-10-26 (Fri, 26 Oct 2018) Origin message was: ------------------ - colors: highlight marked items a bit less --- src/gui/color.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/color.cpp b/src/gui/color.cpp index ad9cec7e2..ba973a8fb 100644 --- a/src/gui/color.cpp +++ b/src/gui/color.cpp @@ -249,8 +249,8 @@ void getItemColors(fb_pixel_t &t, fb_pixel_t &b, bool selected, bool marked, boo if (marked) { - t = COL_MENUCONTENT_TEXT_PLUS_2; - b = COL_MENUCONTENT_PLUS_2; + t = COL_MENUCONTENT_TEXT_PLUS_1; + b = COL_MENUCONTENT_PLUS_1; return; }