su_theme.Rd
Creates a base theme for ggplot objects. By default this uses a font that requires the extrafont package to be installed.
su_theme(base_family = "Segoe UI")
The font to use in this theme
if (FALSE) { library(ggplot2) library(StrategyUnitTheme) ggplot(iris, aes(Sepal.Width, Sepal.Length, colour = Species)) + geom_point() + su_theme() }