forked from
npmx.dev/npmx.dev
[READ-ONLY]
a fast, modern browser for the npm registry
1export const colors = {
2 red: (text: string) => `\x1b[31m${text}\x1b[0m`,
3 green: (text: string) => `\x1b[32m${text}\x1b[0m`,
4 yellow: (text: string) => `\x1b[33m${text}\x1b[0m`,
5 cyan: (text: string) => `\x1b[36m${text}\x1b[0m`,
6 dim: (text: string) => `\x1b[2m${text}\x1b[0m`,
7 bold: (text: string) => `\x1b[1m${text}\x1b[0m`,
8}