I'm trying to make a query that allows the user to select from a list of colors to tint a token. The "transparent" works well enough to remove the tint, but none of the rgb values will assign as I'd hoped. I'm guessing that the hash is confusing the "tint_color" option, but a pipe doesn't work either. Is there a syntax for this that will save me from having to maintain a separate macro for every single color choice?    !token-mod {{   --set     ?{Color|None,tint_color#transparent       |Red,tint_color#rgb(256,0,0)       |Orange,tint_color#rgb(256,127,0)       |Yellow,tint_color#rgb(256,228,0)       |Green,tint_color#rgb(000,256,0)       |Cyan,tint_color#rgb(000,240,256)       |Teal,tint_color#rgb(0,180,148)       |Blue,tint_color#rgb(0,0,256)       |Purple,tint_color#rgb(140,0,256)       |Pink,tint_color#rgb(222,118,222) } }}