What is the best way of adding a custom color map to a theme in Gadfly.jl? Say if I create a new color map as follows:
n = 12
color_map = distinguishable_colors(n, Color[LCHab(50, 60, 290)],
transform=c -> deuteranopic(c, 1),
lchoices=Float64[65, 30, 50, 50],
cchoices=Float64[0, 50, 60, 70],
hchoices=linspace(0, 50, 24))
(based on https://github.com/dcjones/Gadfly.jl/issues/602). How can I pass this to a Theme object so that my plots use this color map instead of the default one? The default_color
parameter to Theme only takes one value.