From 0d6fddd9051e36c7a5c5f6248490ec9a93843909 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michael=20G=C3=B6hler?= Date: Mon, 25 Aug 2014 20:46:48 +0200 Subject: [PATCH] extended terminal color tests --- test/color.c | 12 ++++++------ test/fade.c | 8 ++++++-- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/test/color.c b/test/color.c index b06410c..f5452d2 100644 --- a/test/color.c +++ b/test/color.c @@ -11,12 +11,12 @@ void set_colors(void) for(i=1 ;i<256;i++) { - init_pair(i, i, -1); - attron(COLOR_PAIR(i)); - printw(" %3.hd", i); - if(i % 15 == 0) printw("\n"); - refresh(); - } + init_pair(i, i, -1); + attron(COLOR_PAIR(i)); + printw(" %3.hd", i); + if((i + 3) % 36 == 0) printw("\n"); + refresh(); + } standend(); getch(); endwin(); diff --git a/test/fade.c b/test/fade.c index 6dea34d..c358d58 100644 --- a/test/fade.c +++ b/test/fade.c @@ -15,7 +15,7 @@ int main() start_color(); use_default_colors(); init_pair(COLOR_PAIR1,123,-1); - init_pair(COLOR_PAIR2,255,-1); + init_pair(COLOR_PAIR2,213,-1); wbkgd(stdscr,COLOR_PAIR(COLOR_PAIR1)); wmove(stdscr,10,5); printw("q = quit"); @@ -34,6 +34,10 @@ int main() 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255}; + short red_ramp[] = { 16, 52, 52, 53, 53, 89, + 89, 90, 90, 126, 127, 127, + 163, 163, 164, 164, 200, 200, + 201, 201, 207, 207, 213, 213}; short i = 23; for (;;) @@ -52,7 +56,7 @@ int main() } init_pair(COLOR_PAIR1,blue_ramp[i],-1); - init_pair(COLOR_PAIR2,white_ramp[i],-1); + init_pair(COLOR_PAIR2,red_ramp[i],-1); wrefresh(stdscr); wrefresh(test); } -- 2.20.1