Hello,
Is it possible to change a specific xtick color with Plots.jl. For instance, tick 5 with red, tick 10 with yellow, etc. I tried with xtickfontcolor and all ticks are red.
using Plots
plot(1:20, randn(20); size(400,300), xtickfontcolor=:red)
regards