Skip to content

Commit

Permalink
fix: don't get so fancy with the font color scheme (twilio#198)
Browse files Browse the repository at this point in the history
We should not use specific colors for coloring text because it could conflict with the terminal's background color.
  • Loading branch information
childish-sambino committed Jul 2, 2020
1 parent f69d2bd commit a640c6a
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 49 deletions.
80 changes: 33 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/phone-numbers/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class NumberUpdate extends TwilioClientCommand {
this.output(results);

if (hasLocalHostProp) {
this.logger.info('ngrok is running. Open ' + chalk.blueBright(this.ngrok.getUrl()) + ' to view tunnel activity.');
this.logger.info('ngrok is running. Open ' + chalk.bold(this.ngrok.getUrl()) + ' to view tunnel activity.');
this.logger.info('Press CTRL-C to exit.');
this.logger.debug('Tunnels:');
this.logger.debug(this.tunnels);
Expand Down
2 changes: 1 addition & 1 deletion src/commands/profiles/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ProfilesList extends BaseCommand {
});
this.output(this.userConfig.profiles);
} else {
this.logger.warn('No profiles have been configured. Run ' + chalk.whiteBright('twilio profiles:create') + ' to create one!');
this.logger.warn('No profiles have been configured. Run ' + chalk.bold('twilio profiles:create') + ' to create one!');
}
}
}
Expand Down

0 comments on commit a640c6a

Please sign in to comment.