#!/usr/bin/env node
import chalk from 'chalk';

console.log(chalk.blue('Hello')+ chalk.yellowBright(' world ')+chalk.blue('!!!!'));
console.log(chalk.red('Hello red!'));
console.log(chalk.redBright('Hello brigth red!'));
