R/theme_bee.R

Defines functions theme_bee

Documented in theme_bee

#' Bee Theme
#'
#' Black and yellow theme for plots
#'
#' @return
#' @export
#'
#' @examples

theme_bee <- function() {
    theme(
      plot.background = element_rect(fill = "black"),
      panel.background = element_rect(fill = ("yellow")),
      axis.title = element_text(color = "yellow"),
      axis.text = element_text(color = "yellow")
  )
}
wyliehampson/lasagnashark documentation built on Dec. 23, 2021, 6:15 p.m.