A theme that uses Lato as the base font family (if available) and increases the base font size.
theme_sage(
base_size = 14,
base_family = "Lato",
base_line_size = base_size/22,
base_rect_size = base_size/22
)if (FALSE) { # \dontrun{
library("ggplot2")
ggplot(mpg, aes(displ, hwy, colour = class)) +
geom_point() +
scale_color_sage_d() +
theme_sage()
} # }