Files
todd/color.h
Zvonimir Rudinski 14cc20f6c3
Some checks are pending
Build Todd / build-linux (push) Waiting to run
Build Todd / build-mac (push) Waiting to run
Build Todd / build-windows (push) Waiting to run
make ui color configurable through a header file
2024-11-10 01:18:17 +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