R/cat_colors.R

#' List of cat color palettes
#' @export

cat_colors <- list(
  Chestnut = rbind(c(
      "#2d2926", "#4e463c", "#7d6343",
      "#9d856a", "#bca995", "#dccfc2", "#f8f7f2"),
      c(3, 5, 1, 7, 4, 6, 2)),
  SnowLion = rbind(c(
      "#a17652", "#ad835f", "#b9916a", "#c79e71",
      "#d4ac78", "#debb8a", "#e7ca9d", "#f0d9b1", "#f7e9c6"),
        1:9),
  Pumpkin = rbind(c('#440600', '#5c2100', '#763800',
                     '#8e4e25', '#a66540', '#bf7d52', '#d38e5e',
                     "#e2b68d", "#e8c9aa", "#eddcca", "#f1f0ec"
                     ),11:1),
  Nicholas = rbind(c(
      "#2d2926", "#3f3f3e", "#525558",
      "#666d72", "#c3aab1", "#facbe9"),
      c(3,5,1,4,2,6))
)
empalmer/catlette documentation built on Nov. 18, 2019, 12:03 a.m.