AK-21/Graphite-Industrial-Intelligence
0
1# picocolors2 3The tiniest and the fastest library for terminal output formatting with ANSI colors.4 5```javascript6import pc from "picocolors"7 8console.log(9 pc.green(`How are ${pc.italic(`you`)} doing?`)10)11```12 13- **No dependencies.**14- **14 times** smaller and **2 times** faster than chalk.15- Used by popular tools like PostCSS, SVGO, Stylelint, and Browserslist.16- Node.js v6+ & browsers support. Support for both CJS and ESM projects.17- TypeScript type declarations included.18- [`NO_COLOR`](https://no-color.org/) friendly.19 20## Docs21Read **[full docs](https://github.com/alexeyraspopov/picocolors#readme)** on GitHub.22 