Added COLOR_CUSTOM_WHITE for more consistent colors across platforms.

This commit is contained in:
casey 2016-07-17 20:29:22 -07:00
parent c1e21abad5
commit fd637ba199

View File

@ -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);