File Coverage

blib/lib/Graphics/ColorNamesCMYK/BannersCom.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Graphics::ColorNamesCMYK::BannersCom;
2              
3 1     1   326003 use strict;
  1         2  
  1         130  
4              
5             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
6             our $DATE = '2024-05-06'; # DATE
7             our $DIST = 'Graphics-ColorNamesCMYK-BannersCom'; # DIST
8             our $VERSION = '0.001'; # VERSION
9              
10             our $NAMES_CMYK_TABLE = {
11             'navy blue' => 0x64320041, # 100,50,0,65
12             'dark blue' => 0x644b0000, # 100,75,0,0
13             'light blue' => 0x46250d00, # 70,37,13,0
14             'dark gray' => 0x0000004b, # 0,0,0,75
15             'medium gray' => 0x0000003c, # 0,0,0,60
16             'light gray' => 0x0000002d, # 0,0,0,45
17             'dark green' => 0x64196419, # 100,25,100,25
18             'green' => 0x4b006419, # 75,0,100,25
19             'orange' => 0x0048bc00, # 0,70,700,0
20             'red' => 0x00645a05, # 0,100,90,5
21             'deep red' => 0x19646419, # 25,100,100,25
22             'magenta' => 0x00640000, # 0,100,0,0
23             'purple' => 0x55640000, # 85,100,0,0
24             'violet' => 0x2a320000, # 42,50,0,0
25             'pink' => 0x00320000, # 0,50,0,0
26             'teal' => 0x64193219, # 100,25,50,25
27             'brown' => 0x1d4e614b, # 29,78,97,75
28             'white' => 0x00000000, # 0,0,0,0
29             };
30              
31             1;
32             # ABSTRACT: Basic CMYK colors from banners.com
33              
34             __END__