// checks if Artist tag exists, Displayed in dark blue if the field exists, red else
$if($meta(artist),$rgb(7,17,105),$rgb(255,0,0))Art' '
// checks if title tag exists
$if($meta(title),$rgb(7,17,105),$rgb(255,0,0))Tit' '
// checks if tracknumber tag exists
$if(%tracknumber%,$rgb(7,17,105),$rgb(255,0,0))Trk' '
// checks if comment tag exists
$if(%comment%,$rgb(7,17,105),$rgb(255,0,0))Com' '
// checks if date tag exists
$if(%date%,$rgb(7,17,105),$rgb(255,0,0))Yr' '
// checks if replaygain track gain exists
$if(%__replaygain_track_gain%,$rgb(7,17,105),$rgb(255,0,0))RGT' '
// checks if replaygain talbum gain exists
$if(%__replaygain_album_gain%,$rgb(7,17,105),$rgb(255,0,0))RGA' '
// checks if genre tag exists
$if(%genre%,$rgb(7,17,105),$rgb(255,0,0))Gen' '
// checks if it is known as a Various artist album
$if($or(%track artist%,%various%),$rgb(7,17,105),$rgb(255,0,0))Var' '