I tried everything on the issues page to customize it but none of it worked.
I need help guys. I need to change the colors
Using handleStyle and trackStyle totally works for me. Found this : https://github.com/react-component/slider/issues/288
<Range
min={0}
max={2000}
step={50}
defaultValue={[100, 800]}
value={state}
allowCross={false}
onChange={setState}
handleStyle={[
{ backgroundColor: "yellow", borderColor: "green" },
{ backgroundColor: "red", borderColor: "green" }
]}
trackStyle={[
{ backgroundColor: "yellow", borderColor: "green" },
{ backgroundColor: "red" }
]}
/>
Most helpful comment
Using handleStyle and trackStyle totally works for me. Found this : https://github.com/react-component/slider/issues/288