#ifndef _COLOR_H_#define _COLOR_H_#include<ncurses.h>/** * Initialize color pairs for the rest of the application. */voidset_colors(void);enumStatusColorPairs{STATUS_MAIN=1,STATUS_ERROR,STATUS_PROMPT};enumStatusColors{COLOR_GREY=238,COLOR_DIM_WHITE=250,COLOR_DIM_RED=160};#endif