`element_geom` looks like a cool new feature. Was wondering if there is a reason why colour/fill etc are not used - and instead ink/paper etc are? It'd be cool if the arguments could align with the aesthetic names. So currently like this... ``` penguins |> ggplot() + geom_boxplot(aes(x = species, y = flipper_length_mm)) + theme(geom.boxplot = element_geom(ink = "blue", paper = "red")) ``` This would seem much more intuitive... ``` penguins |> ggplot() + geom_boxplot(aes(x = species, y = flipper_length_mm)) + theme(geom.boxplot = element_geom(colour = "blue", fill = "red")) ``` Sorry if I'm missing something