From: Michael Tremer Date: Tue, 11 Nov 2025 20:26:01 +0000 (+0000) Subject: colors: Define a new "transparent" color X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d6ff1cffcc46fcbe654163bfa470d69cd02f4af;p=collecty.git colors: Define a new "transparent" color Signed-off-by: Michael Tremer --- 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