Simple, minimal theme, with easy customization
Examples
library(dplyr)
library(ggplot2)
mtcars |>
mutate(cyl = factor(cyl)) |>
ggplot(aes(mpg, cyl, fill = cyl)) +
geom_boxplot(key_glyph = "dubois") +
theme_mini() +
scale_fill_dubois()
mtcars |>
mutate(cyl = factor(cyl)) |>
ggplot(aes(cyl, mpg, fill = cyl)) +
geom_point(shape = 21, size = 4) +
theme_mini(bg = "#ddddff")