Nothing
#' Theme colors
#'
#' Theme color functions.
#'
#' @returns A character string.
#'
#' @export
#'
#' @examples
#'
#' library(htmltools)
#'
#' div(
#' .style %>%
#' background_color("primary")
#' )
#'
#' div(
#' .style %>%
#' background_color(theme_primary())
#' )
#'
theme_primary <- function() {
"primary"
}
#' @rdname theme_primary
#' @export
theme_secondary <- function() {
"secondary"
}
#' @rdname theme_primary
#' @export
theme_success <- function() {
"success"
}
#' @rdname theme_primary
#' @export
theme_danger <- function() {
"danger"
}
#' @rdname theme_primary
#' @export
theme_warning <- function() {
"warning"
}
#' @rdname theme_primary
#' @export
theme_info <- function() {
"info"
}
#' @rdname theme_primary
#' @export
theme_light <- function() {
"light"
}
#' @rdname theme_primary
#' @export
theme_dark <- function() {
"dark"
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.