and if you could tell me how to add text color and background color simultaneously, that would be amazing. This is what i have:
library(shiny)
ui <- navbarPage(title = span( "My Title", style = "background-color: #DEEBF7", style="color:red" )
)
server <- function(input, output) {
}
shinyApp(ui = ui, server = server)