Skip to content

Instantly share code, notes, and snippets.

@ryanburge
Created April 28, 2020 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanburge/d16d04bbfff92ca87a5ba0ea455609f7 to your computer and use it in GitHub Desktop.
Save ryanburge/d16d04bbfff92ca87a5ba0ea455609f7 to your computer and use it in GitHub Desktop.
Color Palettes
fill4_1 <- function(){
scale_fill_manual(values = c("#2B5B6C", "#C7CFAC", "#FCFAF1", "#E34F33"))
}
color4_1 <- function(){
scale_color_manual(values = c("#2B5B6C", "#C7CFAC", "#FCFAF1", "#E34F33"))
}
fill4_2 <- function(){
scale_fill_manual(values = c("#337A58", "#383E4E", "#F9F6E5", "#FCCAAC"))
}
color4_2 <- function(){
scale_color_manual(values = c("#337A58", "#383E4E", "#F9F6E5", "#FCCAAC"))
}
fill4_3 <- function(){
scale_fill_manual(values = c("#254A5D", "#C7518F", "#7BCCD4", "#51629E"))
}
color4_3 <- function(){
scale_color_manual(values = c("#254A5D", "#C7518F", "#7BCCD4", "#51629E"))
}
fill5_1 <- function(){
scale_fill_manual(values = c("#612C69", "#459ED5", "#FD823E", "#FCCF61", "#E1EFCE"))
}
color5_1 <- function(){
scale_color_manual(values = c("#612C69", "#459ED5", "#FD823E", "#FCCF61", "#E1EFCE"))
}
fill5_2 <- function(){
scale_fill_manual(values = c("#99dedf", "#e45865", "#fcd06b", "#f7f6ee", "#ffd4c4"))
}
color5_2 <- function(){
scale_color_manual(values = c("#99dedf", "#e45865", "#fcd06b", "#f7f6ee", "#ffd4c4"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment