1.0.3 • Published 24 days ago

chalk-styler v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
24 days ago

🌈 chalk-styler

chalk-styler is a simple, chainable terminal string styling library for adding colors and text styles (bold, underline, italic, background colors, and more) to console output using ANSI escape codes — inspired by Chalk.js.

🚀 Installation

npm install chalk-styler

or

yarn add chalk-styler

✨ Features

  • Chainable API for styling text.
  • Supports:
    • Standard colors and background colors.
    • Bright colors.
    • Text modifiers (bold, underline, italic, etc.).
    • RGB, HEX, and ANSI256 colors.

📦 Usage

import chalk from 'chalk-styler';

// Simple color
console.log(chalk.green('This is green text'));

// Color + Bold
console.log(chalk.red.bold('Bold Red Text'));

// Combined styles (inverse + bold + white)
console.log(chalk.white.bold.inverse('White text with inverse and bold'));

// HEX color + underline
console.log(chalk.hex('#FF5733').underline('Hex color underline'));

// RGB color + italic
console.log(chalk.rgb(255, 255, 0).italic('Yellowish italic text'));

🎨 Available Styles

✅ Modifiers

ModifierDescription
boldBold text
dimDimmed color
italicItalic text
underlineUnderlined text
overlineOverlined text
inverseInverse background/text
hiddenHidden text
strikethroughStrikethrough text
resetReset styles

✅ Colors

Standard ColorsBright Variants
blackblackBright, gray
redredBright
greengreenBright
yellowyellowBright
blueblueBright
magentamagentaBright
cyancyanBright
whitewhiteBright

✅ Background Colors

Standard BackgroundsBright Backgrounds
bgBlackbgBlackBright, bgGray
bgRedbgRedBright
bgGreenbgGreenBright
bgYellowbgYellowBright
bgBluebgBlueBright
bgMagentabgMagentaBright
bgCyanbgCyanBright
bgWhitebgWhiteBright

✅ RGB, HEX, ANSI256

chalk.rgb(255, 0, 0)('Red color using RGB');
chalk.hex('#00FF00')('Green color using HEX');
chalk.ansi256(200)('Color using ANSI256');

⚙️ API

  • chalk.color('text'): Apply color.
  • chalk.modifier('text'): Apply modifier (bold, italic, etc.).
  • chalk.bgColor('text'): Apply background color.
  • chalk.hex('#RRGGBB')('text'): HEX color.
  • chalk.rgb(r, g, b)('text'): RGB color.
  • chalk.ansi256(n)('text'): ANSI256 color.
  • Chain any of the above for combined styles.

📝 Example

console.log(
 chalk.bgBlue.white.bold.italic('Bold, italic white text on blue background')
);

✅ License

MIT License