I'm using react big calendar and need to change the color of the text for dark mode. The background color changes of the calendar changes, however the text color of date doesn't change. How to make it work?
const calendarStyle = () => {
return {
style: {
backgroundColor: 'red', //this works
color: 'green' //but why doesn't this work?
}
}
}
<Calendar
localizer={localizer}
events={eventsData}
startAccessor="start"
endAccessor="end"
style={{ height: 500 }}
views={{ month: true }}
step={155}
dayPropGetter={calendarStyle}
/>
Moreover how to change the color of the headers like sun, mon etc and back, next button as well.