Change color for Today

Hi - anyone know how to change the color for today in calendar. On my monitor it doesn’t show up and I would like to make it a bit darker.

I found this setting in

nextcloud/apps/calendar/css/public/vendor.min.css

The relevant setting is:

.fc-unthemed td.fc-today { background: #fcf8e3; }

Try changing the color #fcf8e3 to something else…

Joseph

Thansk to tcit on irc:

Add the Custom CSS app, this gives you a Custom CSS box under Theming - I added:

.fc-unthemed td.fc-today {
background: #e4dce9 !important;
}

.fc-today.nc-calendar-fc-day-of-workweek:not(.fc-day-header) {
background: #e4dce9 !important;
}

which works for weekdays but not weekends, but is good enough for time being…