reference:status_bar_codes:text_styles_and_colors

The following status bar codes are used to style text, display miscellaneous information about the current drive or Lister, or work with variables and if-conditions.

Text Styles, Colors and Comments

Code Description

<b>…</b> 
<i>…</i> 
<u>…</u> 

Bold text
Italic text
Underlined text

Use HTML-style tags to make text on the status bar bold, italic, or underlined.

<b>This Will Be Bold Text</b>
<i>This Will Be Italic Text</i>
<u>This Will Be Underlined Text</u>

<#RRGGBB>…</#> 

Text color

Use tags with RGB hex values around text to make it a different color.

<#FF0000>This Will Be Red Text</#>

<#RRGGBB #RRGGBB>…</#> 

Text and background color

The first RGB hex value sets the text color, as above, while the second sets the background color.

<#ffffff #aa0000>This will be white text on a red background.</#>

Add the fill keyword to completely fill the status bar part with the specified background color. Otherwise, the background color will only be displayed behind rendered text and will not necessarily fill the entire part.

<#ffffff #aa0000 fill>Filled part</#>