Skip to content

Instantly share code, notes, and snippets.

@JosiahParry
Created December 26, 2019 19:10
Show Gist options
  • Save JosiahParry/ebca710e3dd490b6e331f685b5566b1f to your computer and use it in GitHub Desktop.
Save JosiahParry/ebca710e3dd490b6e331f685b5566b1f to your computer and use it in GitHub Desktop.
ggplot2 theme based on BARI website.
theme_bari <- function() {
theme_minimal() +
theme(
panel.grid.major.y = element_line(
size = .75
),
panel.grid = element_line(),
panel.border = element_rect(size = .5, fill = NA, color = "#524d4d"),
text = element_text(family = "HelveticaNeue-CondensedBold"),
plot.title = element_text(color = "#8d0909", size = 24),
plot.subtitle = element_text(color = "#2e2828", size = 18),
plot.caption = element_text(
color = "#524d4d", size = 8,
hjust = 1,
margin = margin(t = 10),
family = "Avenir Next Condensed Medium"
)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment