diff --git a/main.c b/main.c index 6cbe6ed..358f80f 100644 --- a/main.c +++ b/main.c @@ -38,6 +38,9 @@ int main(void) { noecho(); timeout(0); curs_set(0); + start_color(); + + init_pair(1, COLOR_RED, COLOR_BLACK); while (1) { @@ -57,7 +60,9 @@ int main(void) { /* Start y */ unsigned int j = 3; + attron(COLOR_PAIR(1)); mvprintw(j, 0, ">"); + attroff(COLOR_PAIR(1)); for (size_t i = cursor; i < cursor + 10; i++) { if (i > timer_size)