Skip to content

Commit

Permalink
Improve the colors in the example
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Feb 12, 2020
1 parent c577620 commit 5da7c20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions example.js
Expand Up @@ -2,35 +2,35 @@
const chalk = require('chalk');
const boxen = require('.');

console.log('\n\n' + boxen(chalk.blue.bold('unicorn'), {
console.log('\n\n' + boxen(chalk.cyan('unicorn'), {
padding: 1,
margin: 1,
borderColor: 'yellow'
}) + '\n');

console.log('\n\n' + boxen(chalk.blue.bold('unicorn'), {
console.log('\n\n' + boxen(chalk.cyan('unicorn'), {
padding: 1,
margin: 1,
borderColor: 'yellow',
borderStyle: 'double'
}) + '\n');

console.log('\n\n' + boxen(chalk.blue.bold('unicorn'), {
console.log('\n\n' + boxen(chalk.cyan('unicorn'), {
padding: 1,
margin: 1,
borderColor: '#eebbaa',
borderStyle: 'double'
}) + '\n');

console.log('\n\n' + boxen(chalk.blue.bold('unicorn'), {
console.log('\n\n' + boxen(chalk.black('unicorn'), {
padding: 1,
margin: 1,
borderColor: '#ffc0cb',
backgroundColor: '#00ffff',
borderStyle: 'double'
}) + '\n');

console.log('\n\n' + boxen(chalk.blue.bold('unicorn'), {
console.log('\n\n' + boxen(chalk.black('unicorn'), {
padding: 1,
margin: 1,
borderColor: 'yellow',
Expand Down

0 comments on commit 5da7c20

Please sign in to comment.