diff --git a/Core/Other/Settings/TabSettingsSounds.cs b/Core/Other/Settings/TabSettingsSounds.cs index 89ab56e0..fe7247d8 100644 --- a/Core/Other/Settings/TabSettingsSounds.cs +++ b/Core/Other/Settings/TabSettingsSounds.cs @@ -34,7 +34,7 @@ public override void OnClosing(){ private void tbCustomSound_TextChanged(object sender, EventArgs e){ bool isEmpty = string.IsNullOrEmpty(tbCustomSound.Text); - tbCustomSound.ForeColor = isEmpty || File.Exists(tbCustomSound.Text) ? SystemColors.WindowText : Color.Maroon; + tbCustomSound.ForeColor = isEmpty || File.Exists(tbCustomSound.Text) ? SystemColors.WindowText : Color.Red; btnPlaySound.Enabled = !isEmpty; btnResetSound.Enabled = !isEmpty; }