Tutorial basic theming



using AbstractPlotting

x = range(0, stop = 2pi, length = 40)
y = cos.(x)
scene = lines(x, y, color = :blue)

axis = scene[Axis] # get the axis object from the scene
axis.grid.linecolor = ((:red, 0.5), (:blue, 0.5))
axis.names.textcolor = ((:red, 1.0), (:blue, 1.0))
axis.names.axisnames = ("x", "y = cos(x)")
scene