1package Graphics::ColorNames::SVG;
2
3require 5.006;
4
5use strict;
6use warnings;
7
8use Graphics::ColorNames::WWW();
9
10our $VERSION = '1.13';
11
12*NamesRgbTable = \&Graphics::ColorNames::WWW::NamesRgbTable;
13
141;
15
16=head1 NAME
17
18Graphics::ColorNames::SVG - SVG color names and equivalent RGB values
19
20=head1 SYNOPSIS
21
22  require Graphics::ColorNames::SVG;
23
24  $NameTable = Graphics::ColorNames::SVG->NamesRgbTable();
25  $RgbBlack  = $NameTable->{black};
26
27=head1 DESCRIPTION
28
29This module defines color names and their associated RGB values
30from the SVG 1.2 Specification.
31
32It is currently an alias for L<Graphic::ColorNames::WWW>. This may change in
33the future.  It is recommended to use the WWW module, which will always
34implement a superset of this module.
35
36See the documentation of L<Graphics::ColorNames> for information how to use
37this module.
38
39=head1 SEE ALSO
40
41L<Graphics::ColorNames::WWW>,
42Scalable Vector Graphics (SVG) 1.1 Specification, Section 4.2 (L<http://www.w3.org/TR/SVG/types.html#ColorKeywords>)
43
44=head1 AUTHOR
45
46Claus FE<auml>rber <CFAERBER@cpan.org>
47
48=head1 LICENSE
49
50Copyright 2008-2009 Claus FE<auml>rber.
51
52All rights reserved.  This program is free software; you can
53redistribute it and/or modify it under the same terms as Perl
54itself.
55
56=cut
57