From e57a7149365c116b502edc9e9239359e98b94af7 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 7 Mar 2021 14:10:19 -0500 Subject: [PATCH] init banner: more vibrant RGB indicator --- src/lib/notcurses.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/notcurses.c b/src/lib/notcurses.c index c8a448aa6..9eb46b05c 100644 --- a/src/lib/notcurses.c +++ b/src/lib/notcurses.c @@ -839,11 +839,11 @@ init_banner(const notcurses* nc, const char* shortname_term){ } if(nc->tcache.RGBflag){ putc('+', stdout); - term_fg_rgb8(true, nc->tcache.setaf, nc->tcache.colors, stdout, 0xc0, 0x80, 0x80); + term_fg_rgb8(true, nc->tcache.setaf, nc->tcache.colors, stdout, 0xe0, 0x60, 0x60); putc('R', stdout); - term_fg_rgb8(true, nc->tcache.setaf, nc->tcache.colors, stdout, 0x80, 0xc0, 0x80); + term_fg_rgb8(true, nc->tcache.setaf, nc->tcache.colors, stdout, 0x60, 0xe0, 0x60); putc('G', stdout); - term_fg_rgb8(true, nc->tcache.setaf, nc->tcache.colors, stdout, 0x80, 0x80, 0xc0); + term_fg_rgb8(true, nc->tcache.setaf, nc->tcache.colors, stdout, 0x60, 0x60, 0xe0); putc('B', stdout); term_fg_palindex(nc, stdout, nc->tcache.colors <= 256 ? 12 % nc->tcache.colors : 0x2080e0); }