- color: use DARK text color on DARK background

This commit is contained in:
svenhoefer
2016-10-19 13:21:58 +02:00
parent a7233c1474
commit 8bf68eea67

View File

@@ -253,6 +253,6 @@ void getItemColors(fb_pixel_t &t, fb_pixel_t &b, bool selected, bool marked, boo
} }
// default // default
t = COL_MENUCONTENT_TEXT; t = switch_background ? COL_MENUCONTENTDARK_TEXT : COL_MENUCONTENT_TEXT;
b = switch_background ? COL_MENUCONTENTDARK_PLUS_0 : COL_MENUCONTENT_PLUS_0; b = switch_background ? COL_MENUCONTENTDARK_PLUS_0 : COL_MENUCONTENT_PLUS_0;
} }