Skip to content

Commit

Permalink
Adjust for dark terminal themes
Browse files Browse the repository at this point in the history
Fixes #19
  • Loading branch information
leo committed Jun 10, 2016
1 parent c37390e commit 9c75e80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class Args {
usage += ' '.repeat(difference)

// Add some space around it as well
parts.push(' ' + chalk.blue(usage) + ' ' + chalk.gray(item.description))
parts.push(' ' + chalk.yellow(usage) + ' ' + chalk.dim(item.description))
}

return parts
Expand Down Expand Up @@ -400,7 +400,7 @@ class Args {

parts.push([
'',
chalk.black('Usage: ') + chalk.blue(binary) + chalk.gray(optionHandle + cmdHandle + value),
'Usage: ' + chalk.yellow(binary) + chalk.dim(optionHandle + cmdHandle + value),
''
])

Expand Down

0 comments on commit 9c75e80

Please sign in to comment.