Make tomorrow tasks standing out

Hi there,

cant find a setting for the following:

I want to make tasks “due tomorrow” more standing out. E.g. due date colored in blue (similar to tasks due today, which are red).

Does somebody know a workaround, probably in CSS or have I missed something in the settings?

Thanks
Cheers!
Jens

1 Like

Hi Jens,

You might wanna try something like:

div.dueTomorrow {
    background-color: lightgreen;
}

Hi Ralf,

thanks a lot. But this is not exactly what I’m looking for.

I want to color ONLY the label [tomorrow] - same as [today] is colored red.

Is this also possible?

I have zero experience with css, but I managed to set the color with:

.dueDate {
color:#a9d0ff;
border: 1px solid #a9d0ff;
}

But this affects all due dates.

I just want to color [tomorrow]

Hi, might be:

.dueTomorrow .dueDate {
    color:#a9d0ff;
    border: 1px solid #a9d0ff;
}

Best,
KIR

2 Likes

Hi KIR,

works as intended!

Thanks a lot KIR and Ralf