summaryrefslogtreecommitdiffstats
path: root/config.def.h
blob: 14c59a0064a7b04631145dce7a425e690202f5bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* See LICENSE file for copyright and license details. */

/* 
 * task_todo_color, task_done_color: colors in which task_todo_str and 
 * task_done_str, respectively, are to be printed in. Colors must be set using 
 * ANSI escape codes.
 */
static const char task_todo_color[] = "\033[31;1m"; /* Red */
static const char task_done_color[] = "\033[32;1m"; /* Green */

/* 
 * task_todo_str, task_done_str: the appearance of the status labels can be 
 * modified here.
 */
static const char task_todo_str[] = "[TODO]";
static const char task_done_str[] = "[DONE]";