Formatting tokens are defined like HTML tokens.
Foreground colours are handled via the <fg></fg> tokens and background colours via the <bg></bg> tokens.
Within the <fg>/<bg> tokens you specify one of the predefined colours:
WHITE, BLACK, NAVY, GREEN, RED, BROWN, PURPLE, ORANGE, YELLOW, LIME, TEAL, AQUA, BLUE, FUCHIA, GRAY, SILVER
For example: <fg red>This is red text</fg>
You can also use RGB values by specifying the hexidecimal codes in either C or VB syntax, e.g.: <fg 0xFFFFFF>This text appears white</fg>
Or: <fg &HFFFFFF>This text appears white</fg>
To bold some text use
, e.g.:
This is boldTo underline some text use
, e.g.:
This is underlineTo italic some text use
, e.g.:
ItalicsTo right align text use <r>/</r>, e.g.: <r>This text will appear on the right</r>
To centre text use <c>/</c>, e.g.: <c>This text will appear centred</c>
Note that you can mix, match and use the existing tokens with formatting, so the following is acceptable:
<Album> - <Year><r><fg silver><Artist>
(<Bitrate> kbps <Type>)
Finally don't try anything too complex as it will probably not work