diff --git a/src/demo/all.c b/src/demo/all.c index 232fa9319..95f1aeacf 100644 --- a/src/demo/all.c +++ b/src/demo/all.c @@ -27,6 +27,10 @@ allglyphs(struct notcurses* nc, struct ncplane* column){ ncplane_cursor_yx(column, NULL, &x); if(x >= dimx){ DEMO_RENDER(nc); + ncplane_set_fg_rgb(column, + random() % 192 + 64, + random() % 192 + 64, + random() % 192 + 64); } } }