R/farv_rgb_tibble.R

Defines functions farv_rgb_tibble

Documented in farv_rgb_tibble

#' Shows colors
#'
#' Shows a tibble with COEK colors in RGB format
#'
#' You can use the farv_rgb_hex() function to convert to HEX colors.
#'
#' @export
#' @example
#' farv_rgb_tibble()
farv_rgb_tibble <- function(){
   out <-   tibble::tibble(r = c(187, 6, 226, 78, 221, 216),
                   g = c(180, 110, 223, 118, 128, 178),
                   b = c(135, 159, 204, 109, 71, 92))
   out
}
davidbaniadam/farver documentation built on July 12, 2019, 11:51 p.m.