View source: R/vars-adminlte.R
adminlte_global | R Documentation |
Those variables can be used to customize global settings in shinydashboard.
adminlte_global(content_bg = NULL, box_bg = NULL, info_box_bg = NULL)
content_bg |
Background color of the body. |
box_bg |
Default background color for boxes. |
info_box_bg |
Default background color for info boxes. |
a list
that can be used in create_theme
.
if (interactive()) {
library(shiny)
library(shinydashboard)
ui <- dashboardPage(
header = dashboardHeader(title = "My dashboard"),
sidebar = dashboardSidebar(),
body = dashboardBody(
use_theme(create_theme(
adminlte_global(
content_bg = "#FAAC58"
)
))
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.