From d1ca0df1ab61cf7b35057c2347a56874002b7f68 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Wed, 20 May 2026 22:30:36 +0200 Subject: [PATCH] =?UTF-8?q?tune(notifier):=20notifyInfo=20en=20cian=20i=20?= =?UTF-8?q?text=20una=20mica=20m=C3=A9s=20gran?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - COLOR_INFO passa de blanc neutre (230,230,230) a cian (80,230,255) per a diferenciar més els toasts informatius dels d'avís/error. - TEXT_SCALE de 0.4 → 0.55 perquè el text sigui més llegible amb l'aspect-fit del viewport. Co-Authored-By: Claude Opus 4.7 (1M context) --- source/core/system/notifier.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/core/system/notifier.cpp b/source/core/system/notifier.cpp index 993b281..e93fc04 100644 --- a/source/core/system/notifier.cpp +++ b/source/core/system/notifier.cpp @@ -14,7 +14,7 @@ namespace System { constexpr float PADDING_H = 16.0F; constexpr float PADDING_V = 10.0F; constexpr float BORDER_THICKNESS = 2.0F; - constexpr float TEXT_SCALE = 0.4F; + constexpr float TEXT_SCALE = 0.55F; constexpr float TEXT_SPACING = 2.0F; constexpr float BORDER_BRIGHTNESS = 1.0F; @@ -49,7 +49,7 @@ namespace System { } // Presets per als atajos semàntics. - constexpr SDL_Color COLOR_INFO{.r = 230, .g = 230, .b = 230, .a = 255}; + constexpr SDL_Color COLOR_INFO{.r = 80, .g = 230, .b = 255, .a = 255}; constexpr SDL_Color COLOR_WARN{.r = 255, .g = 180, .b = 40, .a = 255}; constexpr SDL_Color COLOR_EXIT{.r = 255, .g = 80, .b = 80, .a = 255}; constexpr float DURATION_INFO = 2.0F;