diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-16 02:09:55 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-16 02:09:55 +0100 |
commit | efeb0ad58e04104021897c401c73c6e5ff2831d0 (patch) | |
tree | 4162b0f24c2fc6632cc1d6ab0435ac3eb90430e9 /data | |
parent | d789a59f0c1d849e3074c890913882f09b048cd2 (diff) | |
parent | 034a2bde2c571645c7319f89ef63ccc0451bcb0e (diff) | |
download | poezio-efeb0ad58e04104021897c401c73c6e5ff2831d0.tar.gz poezio-efeb0ad58e04104021897c401c73c6e5ff2831d0.tar.bz2 poezio-efeb0ad58e04104021897c401c73c6e5ff2831d0.tar.xz poezio-efeb0ad58e04104021897c401c73c6e5ff2831d0.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'data')
-rw-r--r-- | data/default_config.cfg | 4 | ||||
-rw-r--r-- | data/themes/dark.py | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index 0ad9e328..dcc12cb7 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -177,6 +177,10 @@ themes_dir = # theme will be used instead theme = +enable_vertical_tab_list = false + +vertical_tab_list_size = 20 + # The nick of people who join, part, change their status, etc. in a MUC will # be displayed using their nick color if true. display_user_color_in_join_part = false 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() |