Skip to content

Commit

Permalink
Add missing colors from shields.io
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Jul 28, 2020
1 parent 92fd508 commit d01e506
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions src/Badge.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,21 @@ class Badge
public const DEFAULT_FORMAT = 'svg';

private static array $colorScheme = [
'brightgreen' => '44cc11',
'green' => '97CA00',
'yellow' => 'dfb317',
'yellowgreen' => 'a4a61d',
'orange' => 'fe7d37',
'red' => 'e05d44',
'blue' => '007ec6',
'grey' => '555555',
'lightgray' => '9f9f9f',
'brightgreen' => '44cc11',
'green' => '97CA00',
'yellowgreen' => 'a4a61d',
'yellow' => 'dfb317',
'orange' => 'fe7d37',
'red' => 'e05d44',
'blue' => '007ec6',
'lightgray' => '9f9f9f',
'grey' => '555555',
'blueviolet' => '8a2be2',
'success' => '97CA00',
'important' => 'fe7d37',
'critical' => 'e05d44',
'informational' => '007ec6',
'inactive' => '9f9f9f',
];

private string $subject;
Expand Down

0 comments on commit d01e506

Please sign in to comment.