Skip to contents

Dark background with light ink, faint grid, and CRT-inspired styling.

Usage

theme_newscast(
  base_size = 11,
  base_family = NULL,
  bg = "#151515",
  page = "#111111",
  grid_col = "#ffffff22"
)

Arguments

base_size

base text size

base_family

font family (optional)

bg

panel background

page

overall background

grid_col

grid color (low alpha)

Examples

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