From 2add8ad2d6a5d292e50b1352a2e348525c884e65 Mon Sep 17 00:00:00 2001 From: mshafer1 <2565361+mshafer1@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:13:35 -0600 Subject: [PATCH] Make the blue a little closer to the true default --- ntfysh_client/Themes/DefaultTheme.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfysh_client/Themes/DefaultTheme.cs b/ntfysh_client/Themes/DefaultTheme.cs index b435a16..7c3ce2d 100644 --- a/ntfysh_client/Themes/DefaultTheme.cs +++ b/ntfysh_client/Themes/DefaultTheme.cs @@ -6,7 +6,7 @@ namespace ntfysh_client.Themes { public override Color BackgroundColor { get => Color.White; } public override Color ControlBackGroundColor { get => SystemColors.ControlDark; } - public override Color ControlMouseOverBackgroundColor { get => Color.LightSkyBlue; } + public override Color ControlMouseOverBackgroundColor { get => Color.CadetBlue; } public override Color ForegroundColor { get => SystemColors.WindowText; } } }