Method code for $cml_color.fmt_colors()

[Turn on line numbering]
var c, out;

out = ["COLOR        RGB     ANSI"];
for c in (colors)
    out += [strfmt("%12s #%6l %3l", c[1], @c[2])];
return out;

// Created 13-May-1997 as a part of ColdCore, see: @help Credit

Tlon