hypeserver / react-date-range

A React component for choosing dates and date ranges.
MIT License
2.58k stars 667 forks source link

How can I change the color of underline below today's day in calendar? #442

Closed lev1rand closed 3 years ago

lev1rand commented 3 years ago

For example, I wanna replace blue color with black color. How can I do it? As I saw, this blue color is hardcoded in css. So what should I do?

image

felipeloha commented 3 years ago

.rdrDayToday .rdrDayNumber span:after { background: $date-picker-selection-color; }

kamyar commented 3 years ago

We recently added dayContentRenderer prop also, there is a new demo for showing an orange dot if a date is a weekend for example. https://hypeserver.github.io/react-date-range/ You can achieve this also with a similar approach. :)