Examples
1import { chalk } from 'hbh-terminal';34console.log(chalk.red.bold('🔥 Bold Red'));5console.log(chalk.blue.underline('💧 Underlined Blue'));6console.log(chalk.magenta.italic('💖 Italic Magenta'));89console.log(chalk.rgb(100, 200, 50)('🌿 Custom RGB'));10console.log(chalk.hex('#ff00ff')('💜 HEX Text'));11console.log(chalk.hsl(200, 100, 50)('💧 HSL Text'));1314console.log(chalk.rainbow('🌈 Rainbow Text'));15console.log(chalk.bgRainbow('🌈 Background Rainbow'));16console.log(chalk.gradientText('Gradient Text', 'red', 'blue'));