From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

$App::GitGot::Outputter::light::VERSION = '1.26'; # TRIAL
# ABSTRACT: Color scheme appropriate for dark terminal backgrounds
use 5.014;
use Types::Standard -types;
use Moo;
has color_error => (
is => 'ro' ,
isa => Str ,
default => 'bold red'
);
# Color choices by drdrang based on a conversation that started with
has color_major_change => (
is => 'ro' ,
isa => Str ,
default => 'blue'
);
has color_minor_change => (
is => 'ro' ,
isa => Str ,
default => 'uncolored'
);
has color_warning => (
is => 'ro' ,
isa => Str ,
default => 'bold magenta'
);
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::GitGot::Outputter::light - Color scheme appropriate for dark terminal backgrounds
=head1 VERSION
version 1.26
=for Pod::Coverage color_error color_major_change color_minor_change color_warning
=head1 AUTHOR
John SJ Anderson <genehack@genehack.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by John SJ Anderson.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut