mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 22:42:21 +00:00
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
const reset = '\x1b[0m';
|
|
|
|
export const escapeCodes = {
|
|
reset,
|
|
clear: '\x1b[g',
|
|
red: '\x1b[1;31m',
|
|
};
|
|
|
|
export const coloredText = {
|
|
red: (text: string) => `${escapeCodes.red}${text}${reset}`,
|
|
};
|