mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 19:55:43 +01:00
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:
parent
bdb10da3aa
commit
c867aa8a84
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue