From fd637ba19951796c442701f8258f520122d2f302 Mon Sep 17 00:00:00 2001 From: casey Date: Sun, 17 Jul 2016 20:29:22 -0700 Subject: [PATCH] Added COLOR_CUSTOM_WHITE for more consistent colors across platforms. --- src/musikbox/cursespp/Colors.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/musikbox/cursespp/Colors.cpp b/src/musikbox/cursespp/Colors.cpp index 9525ec610..c53306f40 100755 --- a/src/musikbox/cursespp/Colors.cpp +++ b/src/musikbox/cursespp/Colors.cpp @@ -106,6 +106,8 @@ void Colors::Init() { grey = initColor(COLOR_CUSTOM_GREY, 128, 128, 128); orange = initColor(COLOR_CUSTOM_ORANGE, 255, 150, 32); blue = initColor(COLOR_CUSTOM_BLUE, 102, 217, 238); + white = initColor(COLOR_CUSTOM_WHITE, 240, 240, 240); + foreground = COLOR_CUSTOM_WHITE; } init_pair(CURSESPP_SELECTED_LIST_ITEM, yellow, selected);