about summary refs log tree commit diff stats
path: root/src/ui.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-11-21 00:21:58 +0000
committerJames Booth <boothj5@gmail.com>2012-11-21 00:21:58 +0000
commit1a909fd6eb2f1ac5fb302c1c164e346fe9050249 (patch)
treed8bd59f785ba92c80b21c8aa7739d0a8f39a0bd1 /src/ui.h
parent306965501ac2cc76454ea71c6ed4f126e02100b2 (diff)
downloadprofani-tty-1a909fd6eb2f1ac5fb302c1c164e346fe9050249.tar.gz
Added more colour preferences
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h33
1 files changed, 21 insertions, 12 deletions
diff --git a/src/ui.h b/src/ui.h
index 68ee89d2..3e30fd1a 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -38,18 +38,27 @@
 
 #define INP_WIN_MAX 1000
 
-#define COLOUR_TEXT     COLOR_PAIR(1)
-#define COLOUR_ONLINE   COLOR_PAIR(2)
-#define COLOUR_BAR_TEXT COLOR_PAIR(3)
-#define COLOUR_BAR_DRAW COLOR_PAIR(4)
-#define COLOUR_OFFLINE  COLOR_PAIR(5)
-#define COLOUR_ERR      COLOR_PAIR(6)
-#define COLOUR_INC      COLOR_PAIR(7)
-#define COLOUR_BAR_DEF  COLOR_PAIR(8)
-#define COLOUR_AWAY     COLOR_PAIR(9)
-#define COLOUR_CHAT     COLOR_PAIR(10)
-#define COLOUR_DND      COLOR_PAIR(11)
-#define COLOUR_XA       COLOR_PAIR(12)
+#define COLOUR_TEXT             COLOR_PAIR(1)
+#define COLOUR_SPLASH           COLOR_PAIR(2)
+#define COLOUR_ERROR            COLOR_PAIR(3)
+#define COLOUR_INCOMING         COLOR_PAIR(4)
+#define COLOUR_TITLE_TEXT       COLOR_PAIR(10)
+#define COLOUR_TITLE_BRACKET    COLOR_PAIR(11)
+#define COLOUR_STATUS_TEXT      COLOR_PAIR(20)
+#define COLOUR_STATUS_BRACKET      COLOR_PAIR(21)
+#define COLOUR_STATUS_ACTIVE    COLOR_PAIR(22)
+#define COLOUR_STATUS_NEW       COLOR_PAIR(23)
+#define COLOUR_ME               COLOR_PAIR(30)
+#define COLOUR_THEM             COLOR_PAIR(31)
+#define COLOUR_ROOMINFO         COLOR_PAIR(40)
+#define COLOUR_ONLINE           COLOR_PAIR(50)
+#define COLOUR_OFFLINE          COLOR_PAIR(51)
+#define COLOUR_AWAY             COLOR_PAIR(52)
+#define COLOUR_CHAT             COLOR_PAIR(53)
+#define COLOUR_DND              COLOR_PAIR(54)
+#define COLOUR_XA               COLOR_PAIR(55)
+#define COLOUR_TYPING           COLOR_PAIR(60)
+#define COLOUR_GONE             COLOR_PAIR(61)
 
 typedef enum {
     WIN_UNUSED,