Skip to content

Commit

Permalink
Merge pull request travis-ci#193 from vito/master
Browse files Browse the repository at this point in the history
deansi: handle "bright" ansi color escape sequences
  • Loading branch information
beawesomeinstead committed Aug 6, 2011
2 parents 0e2b013 + 0e7c4fd commit a5de2f0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/stylesheets/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ caption {
.white {
color: white;
}
.grey {
.black.bright {
color: #999;
}
.bg-black {
Expand Down
9 changes: 8 additions & 1 deletion public/javascripts/lib/deansi.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ var Deansi = {
'35': 'magenta',
'36': 'cyan',
'37': 'white',
'90': 'grey',
'90': 'black bright',
'91': 'red bright',
'92': 'green bright',
'93': 'yellow bright',
'94': 'blue bright',
'95': 'magenta bright',
'96': 'cyan bright',
'97': 'white bright',
'40': 'bg-black',
'41': 'bg-red',
'42': 'bg-green',
Expand Down

0 comments on commit a5de2f0

Please sign in to comment.