I know that changing the color of the sliderInput in Shiny requires to change something in the css files, I tried to look inside the function sliderInput()
with the source viewer but it kinda doesn't make sense to me as I do not know much about html and CSS. I guess it must be changed somewhere here:
dep <- htmlDependency("ionrangeslider", "2.0.6", c(href = "shared/ionrangeslider"),
script = "js/ion.rangeSlider.min.js", stylesheet = c("css/normalize.css",
"css/ion.rangeSlider.css", "css/ion.rangeSlider.skinShiny.css"))
(this is inside the sliderInput()
function)
And I also guess you need to include other CSS files with other possible colors somewhere so it can access them. But I am really at a loss here I have never done web development before.
So if somebody could walk me through it step by step that would be awesome !!! I would like to have a blue slider (default color) but also a green and a red one. thanks again!