theme_light_plex: Light ggplot2 theme using the IBM Plex Sans fonts

View source: R/graphing.R

theme_light_plexR Documentation

Light ggplot2 theme using the IBM Plex Sans fonts

Description

Light ggplot2 theme using the IBM Plex Sans fonts

Usage

theme_light_plex(
  base_size = 11,
  strip_text_size = 12,
  strip_text_margin = 5,
  subtitle_size = 13,
  subtitle_margin = 10,
  plot_title_size = 16,
  plot_title_margin = 10,
  ...
)

Arguments

base_size

base font size

strip_text_size, strip_text_margin

plot strip text size and margin

subtitle_size, subtitle_margin

plot subtitle size and margin

plot_title_size, plot_title_margin

plot title size and margin

...

Other arguments passed to theme_light

Details

The IBM Plex fonts are open source and can be found at https://ibm.github.io/type/. These fonts must be installed locally on your computer for this theme to work.

Examples

## Not run: 
library(ggplot2)

ggplot(mtcars, aes(wt, mpg)) +
    geom_point() +
    labs(title = "A Lovely Plot",
         subtitle = "What can the subtitle tell us?") +
    theme_light_plex()

ggplot(diamonds, aes(carat, price, color = clarity)) +
    geom_point(alpha = 0.7) +
    facet_wrap(~cut) +
    labs(title = "A Lovely Plot",
         subtitle = "What can the subtitle tell us?") +
         theme_light_plex()


## End(Not run)


juliasilge/silgelib documentation built on Oct. 20, 2022, 5:44 a.m.