Print message using ANSI terminal attributes. See ansi_format/3
for details. Here is an example, printing help messages in blue:
:- multifile user:message_property/2.
user:message_property(help, color([fg(blue)])).
Used for printing messages that are related to a source location.
Currently, Location is a term File:Line.
FirstPrefix is the prefix for the first line and
-ContinuePrefix is the prefix for continuation lines. For
example, the default for errors is
location_prefix(File:Line,
'~NERROR: ~w:~d:'-[File,Line], '~N\t')).