How to modify the themes of shinythemes
? For example, let us assume I want to change darkly
's background black.
library(shiny)
library(shinythemes)
ui <- fluidPage(
theme = shinytheme("darkly"),
"How to change this black?")
server <- function(input, output) {}
shinyApp(ui, server)
I guess one solution would be to copy the CSS of darkly
with the modified black to the www-folder of my app and then use theme = "darkly_modified_black.css"
. Is there a simpler solution I am missing?