You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
622 B

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