From 7d6ff1cffcc46fcbe654163bfa470d69cd02f4af Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 11 Nov 2025 20:26:01 +0000 Subject: [PATCH] colors: Define a new "transparent" color Signed-off-by: Michael Tremer --- src/daemon/colors.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/daemon/colors.h b/src/daemon/colors.h index 520eac9..e397a80 100644 --- a/src/daemon/colors.h +++ b/src/daemon/colors.h @@ -39,8 +39,8 @@ #define COLOR_DEEP_PURPLE "#673ab7" // Make the background and canvas transparent -#define COLOR_BACKGROUND COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P) -#define COLOR_CANVAS COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P) +#define COLOR_BACKGROUND COLOR_TRANSPARENT +#define COLOR_CANVAS COLOR_TRANSPARENT // Use a dark grey for the font #define COLOR_FONT "#333333" @@ -54,6 +54,9 @@ Define some colours with a special meaning... */ +// Transparent - there is nothing to see +#define COLOR_TRANSPARENT COLOR_WITH_ALPHA(COLOR_WHITE, COLOR_OPACITY_100P) + // Default - If something does not need to have a special meaning #define COLOR_DEFAULT COLOR_BLACK -- 2.47.3