From 01b5166d5c77e0016c91a21d1a878895660bb5ba Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Sat, 7 Feb 2015 18:34:16 -0500 Subject: Use green for info messages, lightblue is hard to see. Closes issue #474. The checkbox label for informational messages is shown in light blue on light gray, which is hard to see. Green is a good choice both visually (not too bright, but clearly visible), and semantically (not a problem with the code). --- gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.py b/gui.py index 9c9b138..8327e0e 100644 --- a/gui.py +++ b/gui.py @@ -38,7 +38,7 @@ from pylint.reporters.guireporter import GUIReporter HOME = os.path.expanduser('~/') HISTORY = '.pylint-gui-history' -COLORS = {'(I)':'lightblue', +COLORS = {'(I)':'green', '(C)':'blue', '(R)':'darkblue', '(W)':'black', '(E)':'darkred', '(F)':'red'} -- cgit v1.2.1