The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Template::Plugin::Color - Template plugin for colour manipulation

SYNOPSIS

    [% USE col = Colour.HSV(50, 255, 128) %]

    [% col.hue %]                          # 50
    [% col.sat %] / [% col.saturation %]   # 255
    [% col.val %] / [% col.value %]        # 128

DESCRIPTION

The Template::Plugin::Color::HSV plugin module creates an object that represents a colour in the HSV (hue, saturation, value) colour space.

It is implemented as a subclass of Template::Plugin::Colour::HSV (note the spelling difference) and is provided as a convenience for Americans and other international users who spell 'Colour' as 'Color'.

Please see the documentation for Template::Plugin::Colour::HSV for further details. Wherever you see 'Colour', you can safely write it as 'Color'.

AUTHOR

Andy Wardley <abw@cpan.org>

VERSION

$Revision: 6 $

COPYRIGHT

Copyright (C) 2006 Andy Wardley. All Rights Reserved.

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

SEE ALSO

Template::Plugin::Colour::HSV