If you look at the default implementation of the react-datepicker the day of this month will be highlighted on every month. Is there a way to only highlight/color the day of the current month and not highlight this date in all other months?
If you look at the first image the 6 August is highlighted because it is the current date. But 6 September is also highlighted.
Create a custom css selector to disable background for all these dates.
.react-datepicker__day.react-datepicker__day--keyboard-selected {
background: none;
color: black;
}
Check this sandbox too