Specifying SIZE for richTextItem ignores COLOR

I have the following richTextItem with color set to #000000, which outputs as expected:

a!richTextItem(
    text: "Cancel",
    /*size: "LARGE",*/
    link: a!dynamicLink(
            value: false,
            saveInto: local!isEditing
    ),
    linkStyle: "STANDALONE",
    color: "#000000"
)

 

But when I now add the size attribute, it changes to LARGE but no longer shows in black:

a!richTextItem(
    text: "Cancel",
    size: "LARGE",
    link: a!dynamicLink(
            value: false,
            saveInto: local!isEditing
    ),
    linkStyle: "STANDALONE",
    color: "#000000"
)

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data