Files
todd/color.h
Zvonimir Rudinski 143feaac83
Some checks failed
Build Todd / build-linux (push) Has been cancelled
Build Todd / build-mac (push) Has been cancelled
Build Todd / build-windows (push) Has been cancelled
make ui color configurable through a header file
2024-11-10 01:21:00 +01:00

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