Brighten up validation color

Dark green lacks contrast against black foreground font
This commit is contained in:
glubsy 2020-12-29 16:31:03 +01:00
parent f0d3dec517
commit b5f59d27c9
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ class ExcludeListDialog(QDialog):
match = compiled.match(input_text)
if match:
self._input_styled = True
self.inputLine.setStyleSheet("background-color: rgb(10, 120, 10);")
self.inputLine.setStyleSheet("background-color: rgb(10, 220, 10);")
else:
self.reset_input_style()