you can change the values โโof " fc-event " in fullcalendar.css to change the background of the default event,
or you can add a new css class as follows:
.newtype, .fc-agenda .newtype.fc-event-time, .newtype a { border-style: solid; border-color: #6da; background-color: #6da; color: #fff; }
and specify this event through tt className :
event.className="newtype";
ps you need to get the event object by the function .fullCalendar( 'clientEvents', event_id) first
Good luck.
source share