Themes that comes from thomas-neitmann / mdthemes
if (!"remotes" %in% installed.packages()) {
install.packages("remotes")
}
remotes::install_github("thomas-neitmann/mdthemes", upgrade = "never")
library(ggplot2)
library(mdthemes)
data(mtcars)
p <- ggplot(mtcars, aes(hp, mpg)) +
geom_point() +
labs(
title = "This is a **bold** title",
subtitle = "And an *italics* subtitle",
x = "**_hp_**",
caption = "<span style = 'color:blue'>A blue caption</span>"
)
p + md_theme_gray() +
labs(
title = "<span style = 'color:blue'> A blue Title </span>",
subtitle = "And an *italics* subtitle",
x = "**_hp_**", # italic and black
caption = "<span style = 'color:red'>A red caption</span>")
p + md_theme_grey()
p + md_theme_bw()
p + md_theme_linedraw()
p + md_theme_light()
p + md_theme_dark()
p + md_theme_minimal()
p + md_theme_classic()
p + md_theme_cowplot()
p + md_theme_half_open()
p + md_theme_map_cow()
p + md_theme_minimal_grid()
p + md_theme_minimal_hgrid()
p + md_theme_minimal_vgrid()
p + md_theme_nothing()
GGTHEMES
p + md_theme_base()
p + md_theme_calc()
p + md_theme_clean()
p + md_theme_economist()
p + md_theme_economist_white()
p + md_theme_excel()
p + md_theme_excel_new()
p + md_theme_few()
p + md_theme_fivethirtyeight()
p + md_theme_foundation()
p + md_theme_gdocs()
p + md_theme_hc()
p + md_theme_igray()
p + md_theme_map_gg()
p + md_theme_pander()
p + md_theme_par()
p + md_theme_solarized()
p + md_theme_solarized_2()
# p + md_theme_solid()
p + md_theme_stata()
p + md_theme_tufte()
p + md_theme_wsj()
#hrbrthemes
p + md_theme_ft_rc()
p + md_theme_ipsum()
p + md_theme_ipsum_ps()
p + md_theme_ipsum_rc()
p + md_theme_ipsum_tw()
p + md_theme_modern_rc()
#tvthemes
p + md_theme_avatar()
p + md_theme_brooklyn99()
p + md_theme_hildaDay()
p + md_theme_hildaDusk()
p + md_theme_hildaNight()
p + md_theme_parksAndRec()
p + md_theme_parksAndRec_light()
p + md_theme_parksAndRecLight()
p + md_theme_rickAndMorty()
p + md_theme_simpsons()
p + md_theme_spongeBob()
p + md_theme_theLastAirbender()