Ilyas Ayuubi
Ilyas Ayuubi

Reputation: 526

Fullcalendar v5 : how to display current day in diffrent background color

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

Answers (1)

Ilyas Ayuubi
Ilyas Ayuubi

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

Related Questions