Make the blue a little closer to the true default

This commit is contained in:
mshafer1
2024-12-23 13:13:35 -06:00
parent 1acd970af6
commit 2add8ad2d6

View File

@@ -6,7 +6,7 @@ namespace ntfysh_client.Themes
{ {
public override Color BackgroundColor { get => Color.White; } public override Color BackgroundColor { get => Color.White; }
public override Color ControlBackGroundColor { get => SystemColors.ControlDark; } 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; } public override Color ForegroundColor { get => SystemColors.WindowText; }
} }
} }