Skip to contents

Creates a base theme for ggplot objects.

Usage

theme_bsol(base_family = "Arial")

Arguments

base_family

The font to use in this theme

Examples

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