add more colors

This commit is contained in:
PoliEcho 2025-04-14 12:41:12 +02:00
parent f232404480
commit 2c3461b855

View File

@ -25,7 +25,9 @@ void menu() {
cbreak();
noecho();
keypad(stdscr, TRUE);
init_pair(1, COLOR_RED, COLOR_BLACK);
for (uint8_t i = 0; i < 8; i++) {
init_pair(i, i, COLOR_BLACK);
}
/* Create items */
n_choices = ARRAY_SIZE(choices);