From 6e992d56afb4fa7a86006b996af79c339696aaa0 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 14:40:11 +0200 Subject: [PATCH] fix: add HoverBrush and BadgeBrush for dark/light theme --- windows/ThemeManager.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/windows/ThemeManager.cs b/windows/ThemeManager.cs index 37a38c4..af7605d 100644 --- a/windows/ThemeManager.cs +++ b/windows/ThemeManager.cs @@ -54,6 +54,8 @@ public static class ThemeManager Set(res, "SurfaceBrush", Color.FromRgb(0x25, 0x25, 0x27)); Set(res, "BannerBgBrush", Color.FromRgb(0x1A, 0x31, 0x52)); Set(res, "BannerBorderBrush", Color.FromRgb(0x2A, 0x4A, 0x72)); + Set(res, "HoverBrush", Color.FromRgb(0x4A, 0x4A, 0x4C)); + Set(res, "BadgeBrush", Color.FromRgb(0x3A, 0x3A, 0x3C)); } else { @@ -67,6 +69,8 @@ public static class ThemeManager Set(res, "SurfaceBrush", Color.FromRgb(0xFA, 0xFA, 0xFA)); Set(res, "BannerBgBrush", Color.FromRgb(0xE8, 0xF2, 0xFB)); Set(res, "BannerBorderBrush", Color.FromRgb(0xB3, 0xD6, 0xF5)); + Set(res, "HoverBrush", Color.FromRgb(0xEB, 0xEB, 0xEB)); + Set(res, "BadgeBrush", Color.FromRgb(0xF0, 0xF0, 0xF0)); } }