Correction to color palettes

This commit is contained in:
gnoblet 2022-11-20 18:13:04 -04:00
parent 5998a91891
commit d2ef1fdec4

View file

@ -11,7 +11,6 @@
#' @export #' @export
pal_reach <- function(palette = "main", reverse = FALSE, color_ramp_palette = FALSE, show_palettes = FALSE, ...) { pal_reach <- function(palette = "main", reverse = FALSE, color_ramp_palette = FALSE, show_palettes = FALSE, ...) {
palettes_reach <- list( palettes_reach <- list(
`main` = cols_reach("main_grey", "main_red", "main_lt_grey", "main_beige"), `main` = cols_reach("main_grey", "main_red", "main_lt_grey", "main_beige"),
`primary` = cols_reach("main_grey", "main_red"), `primary` = cols_reach("main_grey", "main_red"),
@ -58,7 +57,7 @@ pal_reach <- function(palette = "main", reverse = FALSE, color_ramp_palette = FA
if (reverse) pal <- rev(pal) if (reverse) pal <- rev(pal)
if (color_ramp_palette) { if (color_ramp_palette) {
rlang::check_installed("grDevices", reason = "Package \"grDevices\" needed for `pal_reach()` woth 'color_ramp_palette' set to `TRUE` to work. Please install it.") rlang::check_installed("grDevices", reason = "Package \"grDevices\" needed for `pal_reach()` with 'color_ramp_palette' set to `TRUE` to work. Please install it.")
pal <- grDevices::colorRampPalette(pal, ...) pal <- grDevices::colorRampPalette(pal, ...)
} }