R ggplot2: change colour of font and background in facet strip?
问题 I am trying to customize a ggplot2 plot containing facets, and would like to change both the colour of the facet strip, as well as the colour of the font. I found some code to change the strip.background colour, but was not able to modify it to change also the font color... any idea? What I got so far: library(ggplot2) library(grid) p <- ggplot(mpg, aes(displ, cty)) + geom_point() + facet_grid(drv ~ cyl) + ggtitle("How to change coloour of font in facet strip?") g <- ggplot_gtable(ggplot