I need to use numbered and alphabetical enums in my document. I am able to change coloring of numbered enums, but not alphabetical. How can I change coloring of both?
In your current code the color of the numbering is overridden by the set rule inside the block. Since this code is generated from markdown my understanding is that you are not able to include the coloring of the markers there?
My proposed solution uses two show-set rules to achieve the coloring of the markers. The first rule will set the text color of the entire enum to blue, and the second rule will set the text color of the enum item body to black again. This only leaves the enum markers in the blue color.
#show enum: set text(blue)
#show enum.item: set text(black)
Thank you very much janekfleper. I really dig your clever out of the box thinking here. With my use case, I can live with the limitation you mentioned. However I will leave this unanswered, in case someone has a solution without the limitation.