diff options
author | mathieui <mathieui@mathieui.net> | 2013-02-21 21:50:05 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-02-21 21:50:05 +0100 |
commit | f1831cc0ec51c6b09f43fab67f7f0940fb931039 (patch) | |
tree | d0b52041b5948c944b0dc063d600adb93e5e7211 /src/theming.py | |
parent | 23a1b4c353688c374812fff373213ca5f7ce4641 (diff) | |
download | poezio-f1831cc0ec51c6b09f43fab67f7f0940fb931039.tar.gz poezio-f1831cc0ec51c6b09f43fab67f7f0940fb931039.tar.bz2 poezio-f1831cc0ec51c6b09f43fab67f7f0940fb931039.tar.xz poezio-f1831cc0ec51c6b09f43fab67f7f0940fb931039.zip |
Fix the background color of some messages
Diffstat (limited to 'src/theming.py')
-rw-r--r-- | src/theming.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theming.py b/src/theming.py index dd933fc7..41fabaf0 100644 --- a/src/theming.py +++ b/src/theming.py @@ -208,8 +208,8 @@ class Theme(object): INFO_COLORS = { 'info': (5, -1), 'error': (16, 1), - 'warning': (1, 16), - 'roster': (2, 16), + 'warning': (1, -1), + 'roster': (2, -1), 'help': (10, -1), 'headline': (11, -1, 'b'), 'default': (7, -1), |