fresh (version 0.1.0)

bs_vars_wells: Bootstrap CSS wells variables

Description

Those variables can be used to customize wells panel (e.g. shiny::wellPanel or shiny::sidebarPanel) in Bootstrap and Bootswatch themes.

Usage

bs_vars_wells(bg = NULL, border = NULL)

Arguments

bg

Background color (default in Shiny is grey).

border

Border color.

Value

a list that can be used in create_theme.

Examples

Run this code
# NOT RUN {
# Background color of wellPanel
bs_vars_wells(
  bg = "#CEECF5"
)


if (interactive()) {
  library(shiny)

  ui <- fluidPage(
    use_theme(create_theme(
      theme = "default",
      bs_vars_wells(
        bg = "#CEECF5"
      )
    )),
    wellPanel(
      "This is a wellPanel"
    )
  )

  server <- function(input, output, session) {

  }

  shinyApp(ui, server)
}
# }

Run the code above in your browser using DataLab