diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-16 02:08:51 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-16 02:09:31 +0100 |
commit | 034a2bde2c571645c7319f89ef63ccc0451bcb0e (patch) | |
tree | 4162b0f24c2fc6632cc1d6ab0435ac3eb90430e9 /data/themes | |
parent | 1777d7414d4db60beb209c33d678b25a47ba73c0 (diff) | |
download | poezio-034a2bde2c571645c7319f89ef63ccc0451bcb0e.tar.gz poezio-034a2bde2c571645c7319f89ef63ccc0451bcb0e.tar.bz2 poezio-034a2bde2c571645c7319f89ef63ccc0451bcb0e.tar.xz poezio-034a2bde2c571645c7319f89ef63ccc0451bcb0e.zip |
Update the dark theme for the vertical tabs.
Diffstat (limited to 'data/themes')
-rw-r--r-- | data/themes/dark.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/themes/dark.py b/data/themes/dark.py index 015e2988..272c4d91 100644 --- a/data/themes/dark.py +++ b/data/themes/dark.py @@ -31,6 +31,14 @@ class DarkTheme(theming.Theme): COLOR_GROUPCHAT_NAME = (106, 236) COLOR_COLUMN_HEADER = (36, 236) + COLOR_VERTICAL_TAB_NORMAL = (240, -1) + COLOR_VERTICAL_TAB_CURRENT = (-1, 236) + COLOR_VERTICAL_TAB_NEW_MESSAGE = (3, -1) + COLOR_VERTICAL_TAB_HIGHLIGHT = (1, -1) + COLOR_VERTICAL_TAB_PRIVATE = (2, -1) + COLOR_VERTICAL_TAB_DISCONNECTED = (13, -1) + + theme = DarkTheme() |