summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/default_config.cfg4
-rw-r--r--data/themes/dark.py8
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()