Skip to contents

Navy background with cyan lines and high-contrast text.

Usage

theme_blueprint(
  base_size = 11,
  base_family = NULL,
  page = "#0b1d3a",
  ink = "#e6f2ff",
  grid_col = "#78b2ff33"
)

Arguments

base_size

base text size

base_family

font family (optional)

page

page/navy background

ink

line/text color

grid_col

grid color

Examples

if (FALSE) { # \dontrun{
if (requireNamespace("ggplot2", quietly = TRUE)) {
  ggplot2::ggplot(mtcars, ggplot2::aes(wt, mpg)) +
    ggplot2::geom_point() +
    theme_blueprint()
}
} # }