about summary refs log tree commit diff stats
path: root/src/ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.h')
-rw-r--r--src/ui.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ui.h b/src/ui.h
index 5d0284e6..0ba23dc8 100644
--- a/src/ui.h
+++ b/src/ui.h
@@ -30,6 +30,19 @@
 
 #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)
+
 struct prof_win {
     char from[100];
     WINDOW *win;