Basics
Console_Color provides methods
to convert complete strings tagged with special markers
into ANSI-compatible color code representations, and
methods that directly return those codes for certain colors.
The method used most often is convert().
It takes a string, e.g.
or
3 out of 4 people make up about %r75%% %n |
and returns the ANSI representation. The characters following
a percentage sign (%) do have special meanings. See
color codes
to get an overview.
To reset the colors to normal, use %n.
Further, there is an escape() method that prevents
special chars from being treated as markers.
Methods bgcolor(),
color(), fgcolor()
and style() directly return
ANSI control codes for the given color or style value.