Specifying font type and color in a shell script

Hi,

I am new to shell script. Can you please tell me, whether can we specify font type and color in a shell script? If so, how to do this?

Thanks in advance.

Following can be used:

###################
## "style sheet" ##

my $ss_header = $mw -> fontCreate( -family => "Courier", -size => "14", -weight => "bold" );
my $ss_results_body = $mw->fontCreate(
-family => "screen",
-size => 12,
-weight => "normal"
);

Hope this is helpful!
Thanks!
nua7

nua7,

 Can you please explain the usage please?

Please refer to the link below.

font - Create and inspect fonts.

Thanks!
nua7

Great ! thanks nau7