1
0
Fork 0

Brighten up validation color

Dark green lacks contrast against black foreground font
Esse commit está contido em:
glubsy 2020-12-29 16:31:03 +01:00
commit b5f59d27c9
1 arquivos alterados com 1 adições e 1 exclusões

Ver arquivo

@ -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()