NAME
Convert::Color::HUSL - a color value in the HUSL color space
SYNOPSIS
use Convert::Color::HUSL;
my $red = Convert::Color::HUSL->new(12.17705, 100, 53.23712);
my $green = Convert::Color::HUSL->new('127.71501,100,87.73552');
use Convert::Color;
my $blue = Convert::Color->new('husl:265.87432,100,32.30087');
say $red->H; # 12.17705
say $red->S; # 100
say $red->L; # 53.23712
say join ',', $blue->hsl; # 265.87432,100,32.30087
DESCRIPTION
Objects of this class represent colors in the HUSL color space, revision 4.
Methods:
- Convert::Color::HUSL->new($h, $s, $l)
-
Construct a color from its components.
- Convert::Color::HUSL->new("$h,$s,$l")
-
Construct a color from a string. The string should contain the three components, separated by commas.
- $husl->H
- $husl->S
- $husl->L
-
Accessors for the three components of the color.
- $husl->hsl
-
Returns the three components as a list.
SEE ALSO
Convert::Color, http://www.husl-colors.org/
AUTHOR
Marius Gavrilescu, <marius@ieval.ro>
COPYRIGHT AND LICENSE
Copyright (C) 2015 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.20.2 or, at your option, any later version of Perl 5 you may have available.