How to change text color of range selected using react-date-range?

75 Views Asked by At

Can I change text color of date range selected with any properties available in react-date-range? screenshot1 screenshot2

I am using react-date-range and react.js package.

i tried with custom styling but unable to get appropriate result

1

There are 1 best solutions below

0
Pierre Nicolas On

Hi you have a rangeColors props in README.MD of this package

Link to readme.md

 const selectionRange = {
      startDate: new Date(),
      endDate: new Date(),
      key: 'selection',
    }
    return (
      <DateRangePicker
        ranges={[selectionRange]}
        onChange={this.handleSelect}
        rangeColors=["#40c72e"]
       />

you can add other colors, probably for multiples items or selections, same of ranges props