UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

100 lines (99 loc) 2.65 kB
import { ansi256 } from "./ansi256.mjs"; import { bgAnsi256 } from "./bgAnsi256.mjs"; import { bgBlack } from "./bgBlack.mjs"; import { bgBlackBright } from "./bgBlackBright.mjs"; import { bgBlue } from "./bgBlue.mjs"; import { bgBlueBright } from "./bgBlueBright.mjs"; import { bgCyan } from "./bgCyan.mjs"; import { bgCyanBright } from "./bgCyanBright.mjs"; import { bgGreen } from "./bgGreen.mjs"; import { bgGreenBright } from "./bgGreenBright.mjs"; import { bgHex } from "./bgHex.mjs"; import { bgMagenta } from "./bgMagenta.mjs"; import { bgMagentaBright } from "./bgMagentaBright.mjs"; import { bgRed } from "./bgRed.mjs"; import { bgRedBright } from "./bgRedBright.mjs"; import { bgRgb } from "./bgRgb.mjs"; import { bgWhite } from "./bgWhite.mjs"; import { bgWhiteBright } from "./bgWhiteBright.mjs"; import { bgYellow } from "./bgYellow.mjs"; import { bgYellowBright } from "./bgYellowBright.mjs"; import { black } from "./black.mjs"; import { blackBright } from "./blackBright.mjs"; import { blue } from "./blue.mjs"; import { blueBright } from "./blueBright.mjs"; import { bold } from "./bold.mjs"; import { cyan } from "./cyan.mjs"; import { cyanBright } from "./cyanBright.mjs"; import { dim } from "./dim.mjs"; import { gray } from "./gray.mjs"; import { green } from "./green.mjs"; import { greenBright } from "./greenBright.mjs"; import { hex } from "./hex.mjs"; import { hidden } from "./hidden.mjs"; import { inverse } from "./inverse.mjs"; import { italic } from "./italic.mjs"; import { magenta } from "./magenta.mjs"; import { magentaBright } from "./magentaBright.mjs"; import { red } from "./red.mjs"; import { redBright } from "./redBright.mjs"; import { reset } from "./reset.mjs"; import { rgb } from "./rgb.mjs"; import { strikethrough } from "./strikethrough.mjs"; import { underline } from "./underline.mjs"; import { white } from "./white.mjs"; import { whiteBright } from "./whiteBright.mjs"; import { yellow } from "./yellow.mjs"; import { yellowBright } from "./yellowBright.mjs"; //#region src/server/colors/index.ts const colors = /* @__PURE__ */ Object.freeze({ reset, bold, dim, italic, underline, inverse, hidden, strikethrough, black, red, green, yellow, blue, magenta, cyan, white, gray, blackBright, redBright, greenBright, yellowBright, blueBright, magentaBright, cyanBright, whiteBright, bgBlack, bgRed, bgGreen, bgYellow, bgBlue, bgMagenta, bgCyan, bgWhite, bgBlackBright, bgRedBright, bgGreenBright, bgYellowBright, bgBlueBright, bgMagentaBright, bgCyanBright, bgWhiteBright, ansi256, bgAnsi256, rgb, bgRgb, hex, bgHex }); //#endregion export { colors };