Terminal color library. Less portable than chalk since it doesn't use supports-color but simpler source code and supports Typescript.
pnpm add egonSchiele/termcolorsimport { color } from 'termcolors';
console.log(color.red.bold('This is bold red text'));
console.log(color.green.bgYellow('Multiple', 'arguments', 'are', 'supported'));