I have a figure with two axis, and I want them to share the same color cycle:
fig = Figure()
ax1 = Axis(fig[1, 1], xscale=log2)
ax2 = Axis(fig[1, 1], yaxisposition = :right)
lines!(ax1, ...)
lines!(ax2, ...)
I would like the two lines
to plot different colors, as if I am cycling the colors on the same palette. Is it possible?