- lightened the hue of the color for 'success' messages printed in the Tcl Shell browser

This commit is contained in:
Marius
2020-04-14 04:30:47 +03:00
parent e64c7060e5
commit cb52f1c10a
2 changed files with 6 additions and 1 deletions

View File

@@ -102,7 +102,7 @@ class TermWidget(QWidget):
elif style == 'warning':
text = '<span style="font-weight: bold; color: #f4b642;">%s</span>' % text
elif style == 'success':
text = '<span style="font-weight: bold; color: #084400;">%s</span>' % text
text = '<span style="font-weight: bold; color: #15b300;">%s</span>' % text
elif style == 'selected':
text = ''
else: