aboutsummaryrefslogtreecommitdiffstats
path: root/src/custom.c
diff options
context:
space:
mode:
authorLars Henriksen <LarsHenriksen@get2net.dk>2017-08-11 22:52:05 +0200
committerLukas Fleischer <lfleischer@calcurse.org>2017-08-28 07:30:38 +0200
commit0c63b4661f5006348f384519eb6a9eecfa3c3fb7 (patch)
treeb4d99899ffc5b638c6b7d523b73a13c161fc60d2 /src/custom.c
parent8d85a58a268644ecabaddb3cd12f8beb39d13962 (diff)
downloadcalcurse-0c63b4661f5006348f384519eb6a9eecfa3c3fb7.tar.gz
calcurse-0c63b4661f5006348f384519eb6a9eecfa3c3fb7.zip
Make the selected day in the calendar stand out
Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk> Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/custom.c')
-rw-r--r--src/custom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/custom.c b/src/custom.c
index e7e5d5b..20311b6 100644
--- a/src/custom.c
+++ b/src/custom.c
@@ -60,7 +60,7 @@ void custom_init_attr(void)
{
attr.color[ATTR_HIGHEST] = COLOR_PAIR(COLR_CUSTOM);
attr.color[ATTR_HIGH] = COLOR_PAIR(COLR_HIGH);
- attr.color[ATTR_MIDDLE] = COLOR_PAIR(COLR_RED);
+ attr.color[ATTR_MIDDLE] = COLOR_PAIR(COLR_RED) | A_BOLD;
attr.color[ATTR_LOW] = COLOR_PAIR(COLR_CYAN);
attr.color[ATTR_LOWEST] = COLOR_PAIR(COLR_YELLOW);
attr.color[ATTR_TRUE] = COLOR_PAIR(COLR_GREEN);