From 87ce720a31aca33857136c31ec8880a1f49d7985 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 14:40:18 +0200 Subject: [PATCH] fix: use TextBrush instead of hardcoded Brushes.White for auth label --- windows/PopupWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/PopupWindow.xaml.cs b/windows/PopupWindow.xaml.cs index 7ed78d2..56bfe45 100644 --- a/windows/PopupWindow.xaml.cs +++ b/windows/PopupWindow.xaml.cs @@ -255,7 +255,7 @@ public partial class PopupWindow : Window var label = new TextBlock { Text = VM.IsSignedIn ? $"Signed in — {VM.UserEmail}" : "Not signed in", - FontSize = 13, FontWeight = FontWeights.SemiBold, Foreground = Brushes.White, + FontSize = 13, FontWeight = FontWeights.SemiBold, Foreground = (SolidColorBrush)Application.Current.Resources["TextBrush"], VerticalAlignment = VerticalAlignment.Center, }; var authRow = new StackPanel { Orientation = Orientation.Horizontal };