From b58e8af3b5a992f053346fec7b865d4337642867 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 3 Oct 2025 10:27:38 +0000 Subject: [PATCH] colors: Fix black and white Signed-off-by: Michael Tremer --- src/daemon/colors.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daemon/colors.h b/src/daemon/colors.h index 34c8adb..363d9f2 100644 --- a/src/daemon/colors.h +++ b/src/daemon/colors.h @@ -21,8 +21,8 @@ #ifndef COLLECTY_COLORS_H #define COLLECTY_COLORS_H -#define BLACK "#ffffff" -#define WHITE "#000000" +#define BLACK "#000000" +#define WHITE "#ffffff" #define RED "#f44336" #define LIGHT_RED "#cc0033" #define YELLOW "#ffeb3b" -- 2.47.3