R/negate.R

Defines functions clr_negate

Documented in clr_negate

#' Negates colors in RGB space
#'
#' @inheritParams color
#'
#' @details The negation of color is happening in the red-green-blue colorspace
#' RGB. Meaning that if we take the specification for Orange which is
#' rgb(255, 165, 0), then we negate by taking the oppesite number on the scale
#' from 0 to 255, leaving us with rgb(0, 90, 255) which is a shade of blue.
#'
#' @return a colors object of same length as col.
#' @export
#'
#' @examples
#' terr <- color(terrain.colors(10))
#'
#' terr
#' clr_negate(terr)
#'
#' plot(terr)
#' plot(clr_negate(terr))
clr_negate <- function(col) {
  col <- color(col)
  color(encode_colour(abs(decode_colour(col) - 255)))
}

Try the prismatic package in your browser

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

prismatic documentation built on Aug. 15, 2022, 9:06 a.m.