alsamixer: use background color instead of COLOR_BLACK

BugLink: https://github.com/alsa-project/alsa-utils/pull/77
Signed-off-by: Ryan Burns <rtburns@protonmail.com>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Ryan Burns 2021-02-06 14:16:55 -08:00 committed by Jaroslav Kysela
parent bdb10da3aa
commit c867aa8a84

View file

@ -50,11 +50,11 @@ void init_colors(int use_color)
start_color();
use_default_colors();
get_color_pair(COLOR_CYAN, COLOR_BLACK); // COLOR_PAIR(1)
get_color_pair(COLOR_YELLOW, COLOR_BLACK);
get_color_pair(COLOR_CYAN, -1); // COLOR_PAIR(1)
get_color_pair(COLOR_YELLOW, -1);
get_color_pair(COLOR_WHITE, COLOR_GREEN);
get_color_pair(COLOR_RED, COLOR_BLACK);
get_color_pair(COLOR_WHITE, COLOR_BLACK);
get_color_pair(COLOR_RED, -1);
get_color_pair(COLOR_WHITE, -1);
get_color_pair(COLOR_WHITE, COLOR_BLUE);
get_color_pair(COLOR_RED, COLOR_BLUE);
get_color_pair(COLOR_GREEN, COLOR_GREEN);