Convert::Color::IRC is a Perl module, a subclass of Convert::Color::RG8B which provides predefined colors for the 16 basic IRC colors. Their names are
white
black
blue
green
red
brown
purple
orange
yellow
light green
cyan
light cyan
light blue
pink
gray
light gray
They may be looked up either by name, or by numerical index within this list.
SYNOPSIS
Directly:
use Convert::Color::IRC;
my $red = Convert::Color::IRC->new( 'red' );
# Can also use index
my $black = Convert::Color::IRC->new( 1 );
Via Convert::Color:
use Convert::Color;
my $cyan = Convert::Color->new( 'irc:cyan' );
Product's homepage
Requirements:
· Perl