The result of this function should be used as the theme argument for bootstrapPage, fluidPage, navbarPage, or fixedPage.

shinytheme(theme = NULL)

Arguments

theme

Name of a theme.

See also

The main shinythemes page for information about available themes and more detailed examples.

Examples

if (FALSE) { # \dontrun{
shinyApp(
  ui = fluidPage(theme = shinytheme("united"),
    ...
  ),
  server = function(input, output) { }
)
} # }