This file is indexed.

/usr/share/perl5/Graphics/ColorNames/CSS.pm is in libgraphics-colornames-www-perl 1.13-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package Graphics::ColorNames::CSS;

require 5.006;

use strict;
use warnings;

use Graphics::ColorNames::WWW();

our $VERSION = '1.13';

*NamesRgbTable = \&Graphics::ColorNames::WWW::NamesRgbTable;

1;

=head1 NAME

Graphics::ColorNames::CSS - CSS color names and equivalent RGB values

=head1 SYNOPSIS

  require Graphics::ColorNames::CSS;

  $NameTable = Graphics::ColorNames::CSS->NamesRgbTable();
  $RgbBlack  = $NameTable->{black};

=head1 DESCRIPTION

This module defines color names and their associated RGB values from the CSS
Color Module Level 3 W3C Working Draft of 2008-07-21.

It is currently an alias for L<Graphic::ColorNames::WWW>. This may change in
the future. It is recommended to use the WWW module, which will always
implement a superset of this module.

See the documentation of L<Graphics::ColorNames> for information how to use
this module.

=head1 SEE ALSO

L<Graphics::ColorNames::WWW>, 
CSS Color Module Level 3 (L<http://w3.org/TR/CSS3-color>)

=head1 AUTHOR

Claus FE<auml>rber <CFAERBER@cpan.org>

=head1 LICENSE

Copyright 2005-2009 Claus FE<auml>rber.

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

=cut