diff options
author | Florent Le Coz <louiz@louiz.org> | 2012-01-27 19:35:10 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-01-27 19:35:10 +0100 |
commit | 9534b5252b7cdf65bb4603eb6ab1c714578d4be1 (patch) | |
tree | a4ad7005d5b35c9e968122fe36a855d30e3c8db1 /data/themes | |
parent | c9c066ae336fd315d87de39894f06ce3aca3a2fc (diff) | |
download | poezio-9534b5252b7cdf65bb4603eb6ab1c714578d4be1.tar.gz poezio-9534b5252b7cdf65bb4603eb6ab1c714578d4be1.tar.bz2 poezio-9534b5252b7cdf65bb4603eb6ab1c714578d4be1.tar.xz poezio-9534b5252b7cdf65bb4603eb6ab1c714578d4be1.zip |
Add ATTENTION colors to dark theme
Diffstat (limited to 'data/themes')
-rw-r--r-- | data/themes/dark.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/themes/dark.py b/data/themes/dark.py index 272c4d91..c7942290 100644 --- a/data/themes/dark.py +++ b/data/themes/dark.py @@ -20,6 +20,7 @@ class DarkTheme(theming.Theme): COLOR_TAB_CURRENT = (-1, 16) COLOR_TAB_NEW_MESSAGE = (3, 236) COLOR_TAB_HIGHLIGHT = (1, 236) + COLOR_TAB_ATTENTION = (6, 236) COLOR_TAB_PRIVATE = (2, 236) COLOR_TAB_DISCONNECTED = (13, 236) @@ -36,6 +37,7 @@ class DarkTheme(theming.Theme): COLOR_VERTICAL_TAB_NEW_MESSAGE = (3, -1) COLOR_VERTICAL_TAB_HIGHLIGHT = (1, -1) COLOR_VERTICAL_TAB_PRIVATE = (2, -1) + COLOR_VERTICAL_TAB_ATTENTION = (6, -1) COLOR_VERTICAL_TAB_DISCONNECTED = (13, -1) |