R/theme_rainbow.R

Defines functions theme_rainbow

Documented in theme_rainbow

#' theme_rainbow()
#'
#' a colorful ggpolot customized theme
#'
#' @return
#' @export
#'
#' @examples
#'
theme_rainbow <- function() {
theme(plot.background = element_rect(fill = NA),
      axis.text.x = element_text(color = "blue"),
      axis.text.y = element_text(color = "purple"),
      axis.title = element_text(color = "red", size = 8))
}
alexvand24/noodleturtle documentation built on Dec. 19, 2021, 1:27 a.m.