R/colors.R

Defines functions get_sidebyside get_primary get_monochrome

Documented in get_monochrome get_primary get_sidebyside

#' Get Monochomatic Colors
#'
#' This function loads the monochromatic colors in our style guide.
#'
#' @return A vector of monochromatic colors
#' @export

get_monochrome <- function() {
  c('#760000', '#BE1E26', '#D84742', '#FF6B61', '#FF9586')
}

#' Get Primary Colors
#'
#' This function loads the primary colors in our style guide.
#'
#' @return A vector of primary colors
#' @export
get_primary <- function(){
  c('#EE3838', '#FA9E1C', '#78C4D4', '#4B5973', '#E2DDDB')
}

#' Get Side by Side Colors
#'
#' This function loads the Side by Side colors in our style guide.
#'
#' @return A vector of Side by Side colors
#' @export
get_sidebyside <- function(){
  c("#ef3e3e", "#2c3e50")
}
sethbilliau/SethsTheme documentation built on Dec. 23, 2021, 12:20 a.m.