I've met plot.ly dash yesterday for the first time and created some interactive plot. And I added dash_core_components.Slider() object like below code.
dcc.Slider(
id='month--slider',
min=0,
max=12,
value=12,
step=None,
marks={'1': '1', '6': '6', '12': {'label': '12', 'style': {'color': 'red'}}}
)
I've read help(dcc.Slider) but I couldn't find the way to change the skyblue color of my slider below.
So my question here...Is it possible to change the color(or style) of default slider of plot.ly dash? Thank you in advance.
