R/color_blind.R

Defines functions color_blind

Documented in color_blind

#' Provide Colorblind Compliant Colors
#'
#' 8 Hex RGB color defintions suitable for charts for colorblind people.
#'
#' @export
color_blind <- function() {
  c(
    "#000000", "#E69F00", "#56B4E9",
    "#009E73", "#F0E442", "#0072B2",
    "#D55E00", "#CC79A7"
  )
}

Try the tstools package in your browser

Any scripts or data that you put into this service are public.

tstools documentation built on June 7, 2023, 5:13 p.m.