From: Lennart Poettering Date: Fri, 23 Feb 2024 11:20:04 +0000 (+0100) Subject: pretty-print: make tinting a bit less aggressive X-Git-Tag: v256-rc1~732^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f7f08005b0345f8e8ff1025ad8b8d5a43ef964c;p=thirdparty%2Fsystemd.git pretty-print: make tinting a bit less aggressive --- diff --git a/src/shared/pretty-print.c b/src/shared/pretty-print.c index 946da5f42dd..a4e5809446c 100644 --- a/src/shared/pretty-print.c +++ b/src/shared/pretty-print.c @@ -452,7 +452,7 @@ int terminal_tint_color(double hue, char **ret) { else /* otherwise pump it up */ s = 75; - v = MAX(30, v); /* Make sure we don't hide the color in black */ + v = MAX(20, v); /* Make sure we don't hide the color in black */ uint8_t r8, g8, b8; hsv_to_rgb(hue, s, v, &r8, &g8, &b8);