export const red = (str: string) => `\x1b[31m${str}\x1b[0m`; export const green = (str: string) => `\x1b[32m${str}\x1b[0m`; export const yellow = (str: string) => `\x1b[33m${str}\x1b[0m`; export const blue = (str: string) => `\x1b[34m${str}\x1b[0m`; export const bold = (str: string) => `\x1b[1m${str}\x1b[0m`;