Skip to contents

Creates a base theme for ggplot objects.

Usage

theme_bsol(base_family = "Open Sans")

Arguments

base_family

The font to use in this theme

Examples

if (FALSE) { # \dontrun{
library(ggplot2)
library(BSOLTheme)
ggplot(iris, aes(Sepal.Width, Sepal.Length, colour = Species)) +
  geom_point() +
  theme_bsol()
} # }