This question has been previously deleted while I was working on it. How to change the background color of the active tab in a Shiny app?
library(shiny)
ui <- fluidPage(
tags$head(
tags$style(HTML(css))
),
tabsetPanel(
tabPanel("t0", h2("tab 0")),
tabPanel("t1", h2("tab 1"))
)
)
server <- function(input, output) {}
shinyApp(ui = ui, server = server)