Godfather Inspired Color Scales
Examples
library(ggplot2)
ggplot(mpg) +
geom_point(aes(y = class, x = hwy, color = cyl)) +
labs(title="MPG by Vehicle Type",
caption="Source: mpg",
x = "City Mileage",
color ="# Cylinders") +
scale_color_godfather() +
theme_godfather(godfather_font = TRUE)