In the Template directive examples the loop directive is usually used to nicely render Tags.
@jon-dixon has a great blog on this topic as always:
https://blog.cloudnueva.com/apex-template-directives
The tags column in the SQL contains values delimited by a ':' e.g., PLSQL:APEX:ORDS.
{loop ":" TAGS/}
<span class="a-CardView-badge a-CardView-badgeValue">&APEX$ITEM.</span>
{endloop/}
Now my question is:
Did anyone achieve different colors for different tags? If we have only 10 tags to choose from in the system I would like to always show the same tag with the same background color.
My feeling says this is not possible, but maybe you found out some Template hack?