I am trying to plot data with a classic look and black axis labels. Yet, theme_classic has two different shades of grey for the axis tick labels and the ticks.
Using the mtcars dataset and p1 as listed in ?theme_classic I tried
p1 + theme_classic(axis.text.x = element_text(colour="black"))
but this just works with theme not theme_classic.
Is there a way to get black axis ticks and labels without having to specify a classic theme from scratch?
axis.ticks = element_line(color = "black")
– Gregor Thomasp1 + theme_classic() + theme(axis.text.x = element_text(colour="black"))
– Gallarus