From 36675bd85366ddc103b409e13ade02a0b77d2085 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 4 Dec 2025 16:05:14 +0000 Subject: [PATCH] colors: Make areas less opaque Signed-off-by: Michael Tremer --- src/daemon/colors.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/daemon/colors.h b/src/daemon/colors.h index 525673f..4f372af 100644 --- a/src/daemon/colors.h +++ b/src/daemon/colors.h @@ -132,9 +132,12 @@ static inline const char* COLOR_CPU(long i) { #define COLOR_OPACITY_40P "66" #define COLOR_OPACITY_25P "40" #define COLOR_OPACITY_20P "33" +#define COLOR_OPACITY_15P "26" +#define COLOR_OPACITY_10P "19" +#define COLOR_OPACITY_5P "0c" #define COLOR_OPACITY_0P "00" // Fill areas very lightly -#define OPACITY_AREA COLOR_OPACITY_25P +#define OPACITY_AREA COLOR_OPACITY_15P #endif /* TELEMETRY_COLORS_H */ -- 2.47.3