Examples for 'ggthemes::theme_solid'


Theme with nothing other than a background color

Aliases: theme_solid

Keywords:

### ** Examples

library("ggplot2")

ggplot(mtcars, aes(wt, mpg)) +
 geom_point() +
 theme_solid(fill = "white")
plot of chunk example-ggthemes-theme_solid-1
ggplot(mtcars, aes(wt, mpg)) +
  geom_point(color = "white") +
  theme_solid(fill = "black")
plot of chunk example-ggthemes-theme_solid-1

[Package ggthemes version 4.2.4 Index]