Reputation: 526
I'm using fullcalendar v5 , angular . And I want to know how to change the background color of current day , week view (slot duration 12h)
Upvotes: 0
Views: 1000
Reputation: 526
for fullcalendar week view change this in calendar css :
.fc-day-today {
background-color: red !important;
}
and for fullcalendar week view slot 12h display :
.fc-slot-today {
background-color: red !important;
}
Upvotes: 2