massage the colors a little more

This commit is contained in:
mshafer1
2024-12-21 15:27:32 -06:00
parent 1b51a06eb6
commit 582eef1b9d
2 changed files with 2 additions and 2 deletions

View File

@@ -122,6 +122,7 @@ namespace ntfysh_client
// this one is not "hiding"
ButtonClose.BackColor = _theme.ControlBackGroundColor;
ButtonClose.ForeColor = _theme.BackgroundColor;
// handle mouse over
ButtonClose.FlatAppearance.MouseOverBackColor = _theme.ControlMouseOverBackgroundColor;
@@ -131,7 +132,6 @@ namespace ntfysh_client
TxBMessage.ForeColor = _theme.ForegroundColor;
LblTimeout.ForeColor = _theme.ForegroundColor;
ProgressBar1.ForeColor = _theme.ForegroundColor;
ButtonClose.ForeColor = _theme.ForegroundColor;
}
private void UpdateProgress(object? sender, EventArgs e)

View File

@@ -7,6 +7,6 @@ namespace ntfysh_client.Themes
public override Color BackgroundColor { get => SystemColors.ControlDark; }
public override Color ControlBackGroundColor { get => Color.Black; }
public override Color ControlMouseOverBackgroundColor { get => Color.Silver; }
public override Color ForegroundColor { get => SystemColors.ControlLight; }
public override Color ForegroundColor { get => SystemColors.WindowText; }
}
}