I was wondering can the text object change colours of particular line of text?
This is what I mean.
string is:
"Enter" + NewLine + "Exit"
Then it should be:
<font color=blue>Enter
Exit</font>
If I were to use text object I could change the colour of all text to red. However, I do not know how to change the colour of 1 line or a section of the string to red (or any other colour)
If I could change the colour of particular text it would look something like:
<font color=red>Enter</font>
<font color=green>Exit</font>
Is there actually some kind of tags (like in html/css) that I could add into the string to modify the colours? Or is the text of the text object is just a long line of string?