Skip to contents

Custom ggplot2 theme based on theme_light().

Usage

theme_bene(base_size = 11)

Arguments

base_size

Integer, the text base size

Value

Theme for ggplot2.

Examples

library(ggplot2)

if (FALSE) {
palmer_penguins %>%
ggplot(aes(bill_length_mm, bill_depth_mm, color = species)) +
  geom_point() +
  theme_bene()
}