Set a theme.

fullTheme(theme)

multiTheme(theme)

pageTheme(theme)

Arguments

theme

theme, see details.

Details

Valid theme:

  • aqua

  • black

  • blue

  • dark2

  • fuchsia

  • gray

  • green

  • lime

  • maroon

  • navy

  • olive

  • orange

  • purple

  • red

  • silver

  • teal

  • yellow

Examples

if(interactive()){ ui <- fullPage( center = TRUE, fullTheme("red"), # theme fullSection( center = TRUE, h1("Themes") ), fullSection( fullButtonTo("Move to first section", section = 1) ), fullSection( center = TRUE, fullSlide( fullButtonRight("Slide right", clear = TRUE) ), fullSlide( fullButtonLeft("Slide left", clear = TRUE) ) ) ) server <- function(input, output){} shinyApp(ui, server) }