diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-09-09 21:40:54 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-09-09 21:40:54 -0700 |
commit | fe5ff535d13622b35fdbc8528308068a503e3c08 (patch) | |
tree | 0a207e51f70bfc0e60d3cf8e07341a9af612a3d5 /src | |
parent | ddc39b6acc4ffea677826e6dcb401be96552698d (diff) |
vcr: lighten grays used in PNG output rows
Increasing contrast a bit for odd rows / separators
Diffstat (limited to 'src')
-rw-r--r-- | src/vcr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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} |