mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
color.due.today and color.calendar.due.today
- tasks due on the current day ("today") can now be colorized with their own color. - this is for reports and the calendar
This commit is contained in:
parent
adb72ef023
commit
4adfec4482
8 changed files with 131 additions and 29 deletions
|
@ -144,7 +144,11 @@ void autoColorize (Task& task, Color& c)
|
|||
c.blend (gsColor["color.due"]);
|
||||
break;
|
||||
|
||||
case 2: // overdue
|
||||
case 2: // today
|
||||
c.blend (gsColor["color.due.today"]);
|
||||
break;
|
||||
|
||||
case 3: // overdue
|
||||
c.blend (gsColor["color.overdue"]);
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue