Essentially, this is ggplot2::theme_bw() with a few modifications

theme_paleo(...)

Arguments

...

Passed to ggplot2::theme_bw()

Value

A complete ggplot2::theme()

Examples

library(ggplot2)

ggplot(mpg, aes(cty, hwy)) +
  geom_point() +
  theme_paleo()