hexa color coding change in Richtext Item Dynamic Link

Hi All,

I am in 18.3 version and i can see that we can add the colors for Rich text field,

 

i have a rich text item like this

  a!richTextItem(
text:"Workflow",
color:"STANDARD",
link: a!dynamicLink(
value:"wflow",
saveInto: ri!tabName
),
style:"PLAIN",
size:"MEDIUM"
),

But i cannot able to apply the hexa color code to the Link which is present there is there a way we can change the color of the link

 

TIA :) 

  Discussion posts and replies are publicly visible

Parents
  • Hello, mate:

    I recently found another way to color the link and still can using as a link, you only have to had a rich text colored on the text atributre of the rich text object, also the link, and here we got the results:

    {
      a!richTextDisplayField(
        value: a!richTextItem(
          text: a!richTextItem(
            text: "Link name",
            color: "#D8C410",
            size: "MEDIUM",
            style: "STRONG"
          ),
          link: a!dynamicLink(
            saveInto: {}
          ),
          linkStyle: "STANDALONE"
        )
      )
    }

     

    Greetings,

     

    Héctor Capdevila

Reply
  • Hello, mate:

    I recently found another way to color the link and still can using as a link, you only have to had a rich text colored on the text atributre of the rich text object, also the link, and here we got the results:

    {
      a!richTextDisplayField(
        value: a!richTextItem(
          text: a!richTextItem(
            text: "Link name",
            color: "#D8C410",
            size: "MEDIUM",
            style: "STRONG"
          ),
          link: a!dynamicLink(
            saveInto: {}
          ),
          linkStyle: "STANDALONE"
        )
      )
    }

     

    Greetings,

     

    Héctor Capdevila

Children