From fe5ff535d13622b35fdbc8528308068a503e3c08 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Mon, 9 Sep 2024 21:40:54 -0700 Subject: vcr: lighten grays used in PNG output rows Increasing contrast a bit for odd rows / separators --- src/vcr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vcr.c b/src/vcr.c index 1a47ae0..99c5cfd 100644 --- a/src/vcr.c +++ b/src/vcr.c @@ -2026,8 +2026,8 @@ static int vcr_present_xlib_to_png(vcr_t *vcr, vcr_dest_t *dest) #define VCR_PNG_WHITE {0xff, 0xff, 0xff} #define VCR_PNG_RED {0xff, 0x00, 0x00} #define VCR_PNG_CYAN {0x00, 0xff, 0xff} -#define VCR_PNG_DARK_GRAY {0x20, 0x20, 0x20} -#define VCR_PNG_DARKER_GRAY {0x08, 0x08, 0x08} +#define VCR_PNG_DARK_GRAY {0x30, 0x30, 0x30} /* used for separator */ +#define VCR_PNG_DARKER_GRAY {0x10, 0x10, 0x10} /* used for odd rows background */ /* when in shadow */ #define VCR_PNG_DARK_WHITE {0x4a, 0x4a, 0x4a} -- cgit v1.2.3