about summary refs log tree commit diff stats
path: root/title_bar.c
diff options
context:
space:
mode:
Diffstat (limited to 'title_bar.c')
-rw-r--r--title_bar.c4
1 files changed, 2 insertions, 2 deletions
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();