diff options
author | mathieui <mathieui@mathieui.net> | 2012-07-03 23:50:07 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-07-03 23:50:07 +0200 |
commit | 267be566cd12c1ada8c45b632105adc74e5b17f3 (patch) | |
tree | 4e82f471af9d6691b79a391a4f9a81f5335666d5 /src/theming.py | |
parent | 95b2b299b701e5d8abf8e9f38fa62a90f105cf28 (diff) | |
download | poezio-267be566cd12c1ada8c45b632105adc74e5b17f3.tar.gz poezio-267be566cd12c1ada8c45b632105adc74e5b17f3.tar.bz2 poezio-267be566cd12c1ada8c45b632105adc74e5b17f3.tar.xz poezio-267be566cd12c1ada8c45b632105adc74e5b17f3.zip |
Add a new color to the theme, for the warning prompt
- Currently only used by the SSL checking prompt
- fg: black ; bg: red ; bold
Diffstat (limited to 'src/theming.py')
-rw-r--r-- | src/theming.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/theming.py b/src/theming.py index 94d7b005..cf128c5b 100644 --- a/src/theming.py +++ b/src/theming.py @@ -161,6 +161,7 @@ class Theme(object): COLOR_STATUS_ONLINE = (16, 4) # Bars + COLOR_WARNING_PROMPT = (16, 1, 'b') COLOR_INFORMATION_BAR = (7, 4) COLOR_TOPIC_BAR = (7, 4) COLOR_SCROLLABLE_NUMBER = (220, 4, 'b') |