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 )
base_size | base font size, given in pts. |
---|---|
base_family | base font family |
base_line_size | base size for line elements |
base_rect_size | base size for rect elements |
if (FALSE) { library("ggplot2") ggplot(mpg, aes(displ, hwy, colour = class)) + geom_point() + scale_color_sage_d() + theme_sage() }