init_pair(1,2,3); # Initiate pair. Pair 0 reserved for mono. attron(COLOR_PAIR(2)); # Start color. addstr(15, 30, "MOOOO!");# print string at 30,15. Always use (y,x). attroff(COLOR_PAIR(2)); # End color.