16 lines
292 B
C
16 lines
292 B
C
#ifndef COLOR_H
|
|
#define COLOR_H
|
|
|
|
#include <ncurses.h>
|
|
|
|
#define BORDERS_PRIMARY COLOR_BLACK
|
|
#define BORDERS_SECONDARY COLOR_WHITE
|
|
|
|
#define DEFAULT_PRIMARY COLOR_WHITE
|
|
#define DEFAULT_SECONDARY COLOR_BLACK
|
|
|
|
#define COMPLETED_PRIMARY COLOR_BLACK
|
|
#define COMPLETED_SECONDARY COLOR_YELLOW
|
|
|
|
#endif
|