X-Git-Url: https://git.danieliu.xyz/?p=taskasaur.git;a=blobdiff_plain;f=config.h;h=d8a16642a8b0a94717f2048bfaa76d5377cb55f3;hp=bffbcea3f8a6ed25f26c934f75409e32a29dccfb;hb=HEAD;hpb=a38733c9e166c01710e1732cd6f6354313eb35ea diff --git a/config.h b/config.h index bffbcea..d8a1664 100644 --- a/config.h +++ b/config.h @@ -23,6 +23,10 @@ static int selected_color = COLOR_MAGENTA; static int non_selected_color = COLOR_WHITE; static int menu_selected_color = COLOR_CYAN; static int menu_non_selected_color = COLOR_GREEN; +static int item_count_color = COLOR_YELLOW; +static int due_faraway_color = COLOR_GREEN; +static int due_soon_color = COLOR_YELLOW; +static int due_urgent_color = COLOR_RED; /* KEYS */ #define BINDING_QUIT 'q' @@ -44,6 +48,7 @@ static int menu_non_selected_color = COLOR_GREEN; #define BINDING_MOVE_MENU_RIGHT '>' #define BINDING_EDIT_ITEM 'i' #define BINDING_SELECT '\n' +#define BINDING_TOGGLE_DONE ' ' #define BINDING_WRITE 'w' #endif