🌳
pt0/serverF/libChalkF.mts
1import { styleText } from 'node:util'
3export const chalkRed = (...args: string[]): string => styleText('red', args.join(' '))
4export const chalkGreen = (...args: string[]): string => styleText('green', args.join(' '))
5export const chalkYellow = (...args: string[]): string => styleText('yellow', args.join(' '))
6export const chalkGray = (...args: string[]): string => styleText('gray', args.join(' '))
7export const chalkOrange = (...args: string[]): string => styleText('yellowBright', args.join(' '))
8export const chalkCyan = (...args: string[]): string => styleText('cyan', args.join(' '))
9export const chalkMagenta = (...args: string[]): string => styleText('magenta', args.join(' '))
10export const chalkBold = (...args: string[]): string => styleText('bold', args.join(' '))
11export const chalkDim = (...args: string[]): string => styleText('dim', args.join(' '))