File Coverage

blib/lib/Image/TextMode/Palette/Atari.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 Image::TextMode::Palette::Atari;
2              
3 1     1   4 use Moo;
  1         2  
  1         4  
4              
5             extends 'Image::TextMode::Palette';
6              
7             has '+colors' => (
8             default => sub {
9             [ [ 0x18, 0x70, 0xc0 ], # bg
10             [ 0x88, 0xd8, 0xf8 ], # fg
11             ];
12             }
13             );
14              
15             =head1 NAME
16              
17             Image::TextMode::Palette::Atari - 2-color Atari palette
18              
19             =head1 DESCRIPTION
20              
21             This is the default ATASCII palette.
22              
23             =head1 AUTHOR
24              
25             Brian Cassidy Ebricas@cpan.orgE
26              
27             =head1 COPYRIGHT AND LICENSE
28              
29             Copyright 2008-2014 by Brian Cassidy
30              
31             This library is free software; you can redistribute it and/or modify
32             it under the same terms as Perl itself.
33              
34             =cut
35              
36             1;