"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.colorizer = void 0; exports.colorizer = { build: (text) => { return `\`\`\`ansi\n${text}\n\`\`\``; }, styles: { underline: (text) => { return `__${text}__`; }, italic: (text) => { return `_${text}_`; }, strikeThrough: (text) => { return `~~${text}~~`; }, }, gray: (text) => { return `${text}`; }, red: (text) => { return `${text}`; }, green: (text) => { return `${text}`; }, yellow: (text) => { return `${text}`; }, blue: (text) => { return `${text}`; }, pink: (text) => { return `${text}`; }, cyan: (text) => { return `${text}`; }, white: (text) => { return `${text}`; }, background: { fireflyDarkBlue: (text) => { return `${text}`; }, orange: (text) => { return `${text}`; }, marbleBlue: (text) => { return `${text}`; }, greyishTurquoise: (text) => { return `${text}`; }, gray: (text) => { return `${text}`; }, indigo: (text) => { return `${text}`; }, lightGray: (text) => { return `${text}`; }, white: (text) => { return `${text}`; }, }, };