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

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