Last active
February 11, 2021 19:48
-
-
Save JosiahParry/f92baa829e71ffb5ef3ea97db7973480 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 = "Arial Bold"), | |
plot.title = element_text(color = "#c00000", 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