From 297617a12e4d5738c71af5d4cd773c8895deb3ec Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 2 May 2021 18:34:48 -0400 Subject: [PATCH] better color on demo postchecks --- src/demo/demo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demo/demo.c b/src/demo/demo.c index 6fa252b7a..ad67ca506 100644 --- a/src/demo/demo.c +++ b/src/demo/demo.c @@ -511,7 +511,7 @@ postinit_checks(struct notcurses* nc, struct ncplane* n){ if(ncplane_cursor_move_yx(n, ncplane_dim_y(n) - 1, 0)){ return -1; } - ncplane_set_fg_rgb(n, 0xdddddd); + ncplane_set_fg_rgb(n, 0x888888); ncplane_set_styles(n, NCSTYLE_NONE); ncplane_putstr(n, " Enabling mouse..."); notcurses_render(nc); @@ -521,7 +521,7 @@ postinit_checks(struct notcurses* nc, struct ncplane* n){ ncplane_set_fg_rgb(n, 0x22cc22); ncplane_set_styles(n, NCSTYLE_ITALIC); ncplane_putstr(n, "done."); - ncplane_set_fg_rgb(n, 0xdddddd); + ncplane_set_fg_rgb(n, 0x888888); ncplane_set_styles(n, NCSTYLE_NONE); ncplane_putstr(n, " Checking for bitmap support..."); notcurses_render(nc);