Skip to contents

Barbie Inspired Theme

Usage

theme_barbie(barbie_font = TRUE, ...)

Arguments

barbie_font

should theme_barbie use Google Font's Sansita Swashed? Default is TRUE.

...

additional parameters to pass to ggplot2::theme()

Value

a ggplot2

theme element

Examples

library(ggplot2)

ggplot(data = data.frame(x = rnorm(50, 0, 1), y = rnorm(50,0,1)), aes(x = x, y = y)) +
  geom_smooth(method = 'lm') +
  geom_point() +
  labs(title = 'Barbie Scatter Plot') +
  theme_barbie()
#> `geom_smooth()` using formula = 'y ~ x'