From be2be9442aaac9cff59137bffb2d2b481cc42b5e Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 8 Apr 2020 21:32:41 -0400 Subject: [PATCH] better colors on notcurses-input plot --- src/input/input.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/input.cpp b/src/input/input.cpp index 5b5db8171..7b069905f 100644 --- a/src/input/input.cpp +++ b/src/input/input.cpp @@ -217,8 +217,8 @@ int main(void){ struct ncplot_options popts{}; popts.labelaxisd = true; popts.minchannel = popts.maxchannel = 0; - channels_set_fg_rgb(&popts.maxchannel, 0xa0, 0x50, 0xb0); - channels_set_fg_rgb(&popts.minchannel, 0xa0, 0xff, 0xb0); + channels_set_fg_rgb(&popts.minchannel, 0x40, 0x50, 0xb0); + channels_set_fg_rgb(&popts.maxchannel, 0x40, 0xff, 0xd0); popts.gridtype = static_cast(NCPLOT_8x1); plot = ncplot_create(pplane, &popts); if(!plot){