Created
December 26, 2019 19:10
-
-
Save JosiahParry/ebca710e3dd490b6e331f685b5566b1f to your computer and use it in GitHub Desktop.
ggplot2 theme based on BARI website.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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