#' Light theme
#'
#' Add to a ggplot2 plot object to apply.
#'
#' @param base_size base font size
#' @param grid show grid lines
#' @param serif use serif font
#'
#' @return [`ggplot2::theme`] object
#' @export
theme_wl <- function(base_size = 9, grid = TRUE, serif = FALSE) {
update_all_geom_defaults()
family <- if(serif) 'EB Garamond' else 'Lato'
major_grid <- if (grid) {
element_line(colour = grid_colour, linetype = 'dotted', size = 0.4)
} else {
element_blank()
}
theme_bw(base_size = base_size) +
theme(
line = element_line(),
rect = element_rect(fill = 'transparent', linetype = 0, colour = NA),
text = element_text(size = base_size, colour = text_colour, family = family),
axis.title = element_text(),
axis.title.x = element_text(margin = margin(15, 0, 0, 0)),
axis.title.y = element_text(margin = margin(0, 15, 0, 0)),
axis.text = element_text(size = base_size - 1, family = family, colour = tick_colour),
axis.ticks = element_blank(),
legend.key = element_rect(fill = 'transparent'),
panel.grid = element_blank(),
panel.grid.major = major_grid,
panel.background = element_rect(fill = 'transparent'),
plot.title = element_text(hjust = -0.2, vjust = 2, size = rel(1.2), colour = text_colour),
plot.background = element_rect(fill = background_colour),
strip.background = element_rect(fill = 'transparent')
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.