Skip to contents

Off-white page with crisp axes and dashed major grid lines.

Usage

theme_newspaper(
  base_size = 11,
  base_family = NULL,
  bg = "#f7f3e8",
  paper = "#f5f0e6",
  grid_col = "#6b6b6b"
)

Arguments

base_size

base text size

base_family

font family (optional)

bg

panel background color

paper

overall page color

grid_col

major grid line color

Examples

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