Skip to content

Commit

Permalink
use gray instead of dim for generator descriptions in the discove…
Browse files Browse the repository at this point in the history
…ry view

#352
  • Loading branch information
sindresorhus committed Jul 27, 2015
1 parent 06f98c1 commit 7efa7e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/routes/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ function fetchGeneratorInfo(generator, cb) {

cb(null, {
name: generator.name.replace(/^generator-/, '') +
mustache + ' ' + chalk.dim(pkg.description),
// TODO: `gray` → `dim` when iTerm 2.9 is out
mustache + ' ' + chalk.gray(pkg.description),
value: generator.name,
official: -official
});
Expand Down

0 comments on commit 7efa7e0

Please sign in to comment.