[New feature] Lets add other than default, not for all output once but how many user want. Output can look like this: <txt>Default Color text<color=BeDead>LigthGreenText</color>And now default again</txt> Color will be hexadecimal value, maybe with some predefined options.
I forgot to mention this in the forum response, but this is already possible using pango markup (see: https://developer.gnome.org/pango/stable/PangoMarkupFormat.html). For your example, you would use: <txt>Default Color text<span fgcolor="#BeDead">LightGreenText</span>And now default again</txt> If you are echo-ing this out, make sure you escape the quotes: echo "<txt>Default Color text<span fgcolor=\"#BeDead\">LightGreenText</span>And now default again</txt>" ...or use single quotes: echo "<txt>Default Color text<span fgcolor='#BeDead'>LightGreenText</span>And now default again</txt>"