line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::GitGot::Outputter::dark; |
2
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:GENEHACK'; |
3
|
|
|
|
|
|
|
$App::GitGot::Outputter::dark::VERSION = '1.336'; |
4
|
|
|
|
|
|
|
# ABSTRACT: Color scheme appropriate for dark terminal backgrounds |
5
|
5
|
|
|
5
|
|
85
|
use 5.014; |
|
5
|
|
|
|
|
20
|
|
6
|
|
|
|
|
|
|
|
7
|
5
|
|
|
5
|
|
27
|
use Types::Standard -types; |
|
5
|
|
|
|
|
7
|
|
|
5
|
|
|
|
|
49
|
|
8
|
|
|
|
|
|
|
|
9
|
5
|
|
|
5
|
|
18587
|
use App::GitGot::Types; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
107
|
|
10
|
|
|
|
|
|
|
|
11
|
5
|
|
|
5
|
|
1019
|
use Moo; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
52
|
|
12
|
|
|
|
|
|
|
extends 'App::GitGot::Outputter'; |
13
|
5
|
|
|
5
|
|
1944
|
use namespace::autoclean; |
|
5
|
|
|
|
|
16
|
|
|
5
|
|
|
|
|
49
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has color_error => ( |
16
|
|
|
|
|
|
|
is => 'ro' , |
17
|
|
|
|
|
|
|
isa => Str , |
18
|
|
|
|
|
|
|
default => 'bold white on_red' |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
has color_major_change => ( |
22
|
|
|
|
|
|
|
is => 'ro' , |
23
|
|
|
|
|
|
|
isa => Str , |
24
|
|
|
|
|
|
|
default => 'bold black on_green' |
25
|
|
|
|
|
|
|
); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
has color_minor_change => ( |
28
|
|
|
|
|
|
|
is => 'ro' , |
29
|
|
|
|
|
|
|
isa => Str , |
30
|
|
|
|
|
|
|
default => 'green' |
31
|
|
|
|
|
|
|
); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
has color_warning => ( |
34
|
|
|
|
|
|
|
is => 'ro' , |
35
|
|
|
|
|
|
|
isa => Str , |
36
|
|
|
|
|
|
|
default => 'bold black on_yellow' |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
__END__ |