Set a theme.
fullTheme(theme) multiTheme(theme) pageTheme(theme)
theme | theme, see details. |
---|
Valid theme
:
aqua
black
blue
dark2
fuchsia
gray
green
lime
maroon
navy
olive
orange
purple
red
silver
teal
yellow
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) }