diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-22 16:34:14 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-08-22 16:34:14 +0000 |
commit | 107a9e99e310ecd63ddd4367811bebc93f05ac41 (patch) | |
tree | dd68a7b951a052c59da650511d308b321357377b /data/themes | |
parent | 893cd3808b3f3d54786c91ada73c566d152f5aa8 (diff) | |
download | poezio-107a9e99e310ecd63ddd4367811bebc93f05ac41.tar.gz poezio-107a9e99e310ecd63ddd4367811bebc93f05ac41.tar.bz2 poezio-107a9e99e310ecd63ddd4367811bebc93f05ac41.tar.xz poezio-107a9e99e310ecd63ddd4367811bebc93f05ac41.zip |
also this
Diffstat (limited to 'data/themes')
-rw-r--r-- | data/themes/dark | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/data/themes/dark b/data/themes/dark new file mode 100644 index 00000000..d2c77339 --- /dev/null +++ b/data/themes/dark @@ -0,0 +1,71 @@ +# A dark theme file. +# For more informations, see http://codingteam.net/project/poezio/doc/TheThemes + + +# Message text color +COLOR_NORMAL_TEXT = 80 +COLOR_INFORMATION_TEXT = 76 +COLOR_HIGHLIGHT_TEXT = 79 + +# User list color +COLOR_USER_VISITOR = 78 +COLOR_USER_PARTICIPANT = 73 +COLOR_USER_NONE = 80 +COLOR_USER_MODERATOR = 77 + +# The character printed in color (COLOR_STATUS_*) before the nickname +# in the user list +CHAR_STATUS = '|' + +# Separators +COLOR_VERTICAL_SEPARATOR = 72 +COLOR_NEW_TEXT_SEPARATOR = 75 + +# Time +COLOR_TIME_SEPARATOR = 79 +COLOR_TIME_BRACKETS = 72 +COLOR_TIME_NUMBERS = 0 + +# Tabs +COLOR_TAB_NORMAL = 8 +COLOR_TAB_CURRENT = 0 +COLOR_TAB_NEW_MESSAGE = 7 +COLOR_TAB_HIGHLIGHT = 5 +COLOR_TAB_PRIVATE = 3 + +# Nickname colors +LIST_COLOR_NICKNAMES = [ + 73, 74, 75, 76, 77, 79 + ] +COLOR_OWN_NICK = 80 + +# Status color +COLOR_STATUS_XA = 76 +COLOR_STATUS_NONE = 73 +COLOR_STATUS_DND = 77 +COLOR_STATUS_AWAY = 79 +COLOR_STATUS_CHAT = 75 + +# Bars +COLOR_INFORMATION_BAR = 8 +COLOR_TOPIC_BAR = 8 +COLOR_PRIVATE_ROOM_BAR = 3 +COLOR_SCROLLABLE_NUMBER = 75 + +# Strings for special messages (like join, quit, nick change, etc) + +# Special messages +CHAR_JOIN = '---->' +CHAR_QUIT = '<----' +CHAR_KICK = '-!-' + +COLOR_JOIN_CHAR = 73 +COLOR_QUIT_CHAR = 77 +COLOR_KICK_CHAR = 77 + +# words between () +COLOR_CURLYBRACKETED_WORD = 72 +# words between {} +COLOR_ACCOLADE_WORD = 74 +# words between [] +COLOR_BRACKETED_WORD = 79
\ No newline at end of file |