make ui color configurable through a header file
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

This commit is contained in:
2024-11-10 01:18:17 +01:00
parent 25ef59e7f3
commit 14cc20f6c3
2 changed files with 19 additions and 4 deletions

15
color.h Normal file
View File

@@ -0,0 +1,15 @@
#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