Acme::Orange - Like Acme::Colour but only for important colours


SYNOPSIS

  $c = Acme::Orange->new();
  $colour = $c->colour; # orange
  $c->add("orange");    # $c->colour still orange
  $c->add("blue");      # $c->colour still orange.
  $c = Acme::Orange->new("pink");
  $colour = $c->colour; # orange.


ABSTRACT

The Acme::Orange module provides the same interface as Acme::Colour, but restricts itself to important colours


DESCRIPTION

Methods are as Acme::Colour


SEE ALSO

Acme::Colour by Leon Brocard


BUGS

Can't do overloaded constants. Yet


AUTHOR

Nicholas Clark, <nick@talking.bollo.cx>


COPYRIGHT AND LICENSE

Copyright 2003 by Nicholas Clark

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

 Acme::Orange - Like Acme::Colour but only for important colours