SYNOPSIS
Directly:
use Convert::Color::VGA;
my $red = Convert::Color::VGA->new( 'red' );
# Can also use index
my $black = Convert::Color::VGA->new( 0 );
Via Convert::Color:
use Convert::Color; my $cyan = Convert::Color->new( 'vga:cyan' );
DESCRIPTION
This subclass of Convert::Color::RGB provides predefined colors for the 8 basic VGA colors. Their names are
black red green yellow blue magenta cyan white
They may be looked up either by name, or by numerical index within this list.