import chalk from "chalk"; export function yellow(text: string): string { return chalk.yellow(text); } export function red(text: string): string { return chalk.red(text); }