Thank you for the excellent work in the theming arena! π Just opening an issue to note that having the 'paper' argument for `theme_void()` might be misleading. It also seems that the ink declaration doesn't seem to propagate to the geoms. ``` r library(ggplot2) p <- ggplot(mtcars, aes(x = factor(cyl), fill = factor(cyl))) + geom_bar() + geom_point(stat = StatCount, size = 7) + geom_tile(aes(y = -2, fill = NULL)) p + theme_void(ink = "plum", paper = "cornsilk", base_size = 18) ``` <!-- --> ``` r last_plot() + theme(geom = element_geom(ink = "plum")) ``` <!-- --> <sup>Created on 2024-12-18 with [reprex v2.1.0](https://reprex.tidyverse.org)</sup>