Skip to contents

Elf Inspired Theme

Usage

theme_elf(elf_font = TRUE, ...)

Arguments

elf_font

should theme_elf use custom font? 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 = 'elf Scatter Plot') +
  theme_elf()
#> `geom_smooth()` using formula = 'y ~ x'


ggplot(mpg, aes(cty)) +
geom_density(aes(fill=factor(cyl)), alpha=0.8, color = NA) +
  labs(title="Density plot",
       subtitle="City Mileage Grouped by Number of cylinders",
       caption="Source: mpg",
       x="City Mileage",
       fill="# Cylinders") +
  theme_elf() +
  scale_fill_elf_d()