This is only used on grob output, which requires the gridExtra package
(install.packages("gridExtra")).
theme_grob(x, ...)data(iris)
if (requireNamespace("gridExtra", quietly = TRUE)) {
cf <- condformat(head(iris)) |>
theme_grob(
rows = NULL,
theme = gridExtra::ttheme_default(base_size = 10, base_colour = "red")
)
condformat2grob(cf)
}