I’d like to use something like :batlow
to choose 3 categorical colors, each to use in a color gradient against black, but some are too dark for enough contrast. How can I simply lighten the first two?
using Plots, Images
pal = palette(:batlow,3)
g1 = cgrad([:black,pal[1]])
g2 = cgrad([:black,pal[2]])
g3 = cgrad([:black,pal[3]])