Color editor for sliderInput
Edit the color of the original shiny's sliderInputs
setSliderColor(color, sliderId)
color |
The |
sliderId |
The |
See also https://www.w3schools.com/colors/colors_names.asp to have an overview of all colors.
See chooseSliderSkin
to update the global skin of your sliders.
if (interactive()) { library(shiny) library(shinyWidgets) ui <- fluidPage( # only customize the 2 first sliders and the last one # the color of the third one is empty setSliderColor(c("DeepPink ", "#FF4500", "", "Teal"), c(1, 2, 4)), sliderInput("obs", "My pink slider:", min = 0, max = 100, value = 50 ), sliderInput("obs2", "My orange slider:", min = 0, max = 100, value = 50 ), sliderInput("obs3", "My basic slider:", min = 0, max = 100, value = 50 ), sliderInput("obs3", "My teal slider:", min = 0, max = 100, value = 50 ), plotOutput("distPlot") ) server <- function(input, output) { output$distPlot <- renderPlot({ hist(rnorm(input$obs)) }) } shinyApp(ui, server) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.