Como puedes observar usar ncurses es facil. pudes jugar con los colores y ver que puedes hacer programas excelente y bonitos.
#include <ncurses.h> int main() { initscr(); start_color(); /*Recuerde llamar esta funcion, para colorear*/ init_pair(1, COLOR_RED, COLOR_CYAN); /*esto es un par de colores, puedes cambiarlo, a tu gusto.*/ init_pair(2, COLOR_YELLOW, COLOR_GREEN); attron(A_UNDERLINE | COLOR_PAIR(1)); /*activar el texto subrayar y color */ printw("subraya el texto en rojo con fondo cian\n"); attroff(A_UNDERLINE | COLOR_PAIR(1)); attron(A_BOLD | COLOR_PAIR(2)); printw("texto en negrita amarilla con fondo verde"); attroff(A_BOLD | COLOR_PAIR(2)); refresh(); getch(); endwin(); return 0; }