App-GitGot
    
    
  
  
  
view release on metacpan or search on metacpan
lib/App/GitGot/Outputter/dark.pm view on Meta::CPAN
use App::GitGot::Types;
use Moo;
extends 'App::GitGot::Outputter';
use namespace::autoclean;
has color_error => (
  is      => 'ro' ,
  isa     => Str ,
  default => 'bold white on_red'
);
has color_major_change => (
  is      => 'ro' ,
  isa     => Str ,
  default => 'bold black on_green'
);
has color_minor_change => (
  is      => 'ro' ,
  isa     => Str ,
  default => 'green'
);
has color_warning => (
  is      => 'ro' ,
  isa     => Str ,
  default => 'bold black on_yellow'
);
1;
__END__
=pod
=encoding UTF-8
lib/App/GitGot/Outputter/light.pm view on Meta::CPAN
use App::GitGot::Types;
use Moo;
extends 'App::GitGot::Outputter';
use namespace::autoclean;
has color_error => (
  is      => 'ro' ,
  isa     => Str ,
  default => 'bold red'
);
# Color choices by drdrang based on a conversation that started with
# <http://www.leancrew.com/all-this/2010/12/batch-comparison-of-git-repositories/>
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
( run in 0.402 second using v1.01-cache-2.11-cpan-c333fce770f )