I am attempting to change the font color of the values (1,2,3,...10) in the sliderInput() from black to white, but I am encountering difficulties. How can I connect the slider with the CSS file to achieve this?
ui <- fluidPage(
tags$style(type = "text/css", "
.irs-grid-text {font-family: 'arial'; color: white; bottom: 17px; z-index: 1;}
"),
sliderInput(inputId="test", label=NULL, min=1, max=10, value=5, step = 1, width='100%')
)
server <- function(input, output, session){
}
shinyApp(ui = ui, server=server)