colormap



using AbstractPlotting

t = range(0, stop=1, length=300)
θ = (6π) .* t
x = t .* cos.(θ)
y = t .* sin.(θ)
lines(x, y, color = t, colormap = :colorwheel, linewidth = 8, scale_plot = false)