aboutsummaryrefslogtreecommitdiff
path: root/src/ui/color.c
blob: e8341931b722b09549337ffc9a98caf56a24f8a0 (plain)
1
2
3
4
5
6
7
8
9
10
#include <ncurses.h>

#include "color.h"

void set_colors(void) {
  /* fg color, bg color */
  init_pair(STATUS_MAIN, COLOR_DIM_WHITE, COLOR_GREY);
  init_pair(STATUS_ERROR, COLOR_DIM_WHITE, COLOR_DIM_RED);
  init_pair(STATUS_PROMPT, COLOR_GREY, COLOR_DIM_WHITE);
}