UNPKG

@mountainpass/hooked-cli

Version:
6 lines (5 loc) 277 B
// colour shortcuts for cyan, yellow, red and grey. export const cyan = (text) => `\x1b[36m${text}\x1b[0m`; export const yellow = (text) => `\x1b[33m${text}\x1b[0m`; export const red = (text) => `\x1b[31m${text}\x1b[0m`; export const grey = (text) => `\x1b[90m${text}\x1b[0m`;