I'm currently using FullCalendar in my react app to showcase a calendar with events displayed. Right now, I have a day grid set up and I'm interested in changing the background color of the grid.
The background color for today's date is always yellow
Here's how it appears on other days
My goal is to modify the background color so that the current day grid has a white background similar to the rest of the days.
<div>
<FullCalendar
plugins={[dayGridPlugin, timeGridPlugin, interactionPlugin]}
initialView="timeGridDay"
nowIndicator={true}
selectable
selectOverlap={() => {
return false;
}}
eventResizableFromStart
droppable
allDayMaintainDuration
/>
</div>