about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-06-18 23:49:59 +0100
committerJames Booth <boothj5@gmail.com>2012-06-18 23:49:59 +0100
commitd47dd2cb8369921599a88c1e33b895108cbac522 (patch)
tree406da992825841b67ab76d7258725b734c152fcc
parent9427e6448195d9bdd7d660d14bea7625b29f1322 (diff)
downloadprofani-tty-d47dd2cb8369921599a88c1e33b895108cbac522.tar.gz
Added remaining colours
-rw-r--r--status_bar.c4
-rw-r--r--title_bar.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/status_bar.c b/status_bar.c
index cf8aad53..182e7843 100644
--- a/status_bar.c
+++ b/status_bar.c
@@ -50,7 +50,7 @@ void create_status_bar(void)
     }
 
     status_bar = newwin(1, cols, rows-2, 0);
-    wbkgd(status_bar, COLOR_PAIR(3));
+    wbkgd(status_bar, COLOR_PAIR(8));
     wattron(status_bar, COLOR_PAIR(4));
     mvwprintw(status_bar, 0, cols - 29, _active);
     wattroff(status_bar, COLOR_PAIR(4));
@@ -84,7 +84,7 @@ void status_bar_resize(void)
 
     mvwin(status_bar, rows-2, 0);
     wresize(status_bar, 1, cols);
-    wbkgd(status_bar, COLOR_PAIR(3));
+    wbkgd(status_bar, COLOR_PAIR(8));
     wclear(status_bar);
     wattron(status_bar, COLOR_PAIR(4));
     mvwprintw(status_bar, 0, cols - 29, _active);
diff --git a/title_bar.c b/title_bar.c
index b7eea10f..f958d76f 100644
--- a/title_bar.c
+++ b/title_bar.c
@@ -41,7 +41,7 @@ void create_title_bar(void)
     getmaxyx(stdscr, rows, cols);
 
     title_bar = newwin(1, cols, 0, 0);
-    wbkgd(title_bar, COLOR_PAIR(3));
+    wbkgd(title_bar, COLOR_PAIR(8));
     title_bar_title();
     title_bar_set_status(PRESENCE_OFFLINE);
     dirty = TRUE;
@@ -59,7 +59,7 @@ void title_bar_resize(void)
     getmaxyx(stdscr, rows, cols);
 
     wresize(title_bar, 1, cols);
-    wbkgd(title_bar, COLOR_PAIR(3));
+    wbkgd(title_bar, COLOR_PAIR(8));
     wclear(title_bar);
     _title_bar_draw_title();
     _title_bar_draw_status();
>169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198