1
0
mirror of https://github.com/garraflavatra/trmclr.git synced 2024-11-22 07:47:34 +01:00
Terminal colors, but easier.
Go to file
2024-08-09 15:01:08 +02:00
.github/workflows Add GitHub Action for CI 2024-08-09 14:30:49 +02:00
.gitignore Initial commit 2022-10-09 10:10:43 +02:00
index.d.ts Add yeslint! 2024-08-09 14:28:46 +02:00
index.js Add yeslint! 2024-08-09 14:28:46 +02:00
LICENSE.md Update readme.md 2024-08-09 13:36:32 +02:00
package-lock.json Version 1.0.1 2024-08-09 14:33:57 +02:00
package.json Version 1.0.1 2024-08-09 14:33:57 +02:00
README.md Add stripColor to readme 2024-08-09 15:01:08 +02:00
tsconfig.json Refactor 2024-08-09 14:03:36 +02:00

trmclr

Easy terminal colors.

  • Supports browsers, Node.js, Deno, Bun, and probably some other environments.
  • Comes with 45 colors and helpers.
  • Respects NO_COLOR.
  • No dependencies.
  • Tree-shakeable.

Colors and helpers

bgBlack, bgBlue, bgBrightBlack, bgBrightBlue, bgBrightCyan, bgBrightGreen, bgBrightMagenta, bgBrightRed, bgBrightWhite, bgBrightYellow, bgCyan, bgGreen, bgMagenta, bgRed, bgRgb24, bgRgb8, bgWhite, bgYellow, black, blue, bold, brightBlack, brightBlue, brightCyan, brightGreen, brightMagenta, brightRed, brightWhite, brightYellow, cyan, dim, getColorEnabled, gray, green, hidden, inverse, italic, magenta, red, reset, strikethrough, stripColor, underline, white, yellow

Usage

import { cyan, bgMagenta } from 'trmclr';

console.log(cyan(bgMagenta('Some text')));

Enable or disable color

import { getColorEnabled, setColorEnabled } from 'trmclr';

setColorEnabled(true);
setColorEnabled(false);

getColorEnabled(); // → false

Remove colors and decorations

import { cyan, stripColor } from 'trmclr';

stripColor(cyan('Hi')); // → uncolored "Hi"

License

(c) 2022-2024 Romein van Buren. Licensed under the MIT license.

For the full copyright and license information, please see the LICENSE.md file that was distributed with this source code.

Original implementation: (c) 2018-2022 the Deno authors.

Smart Yellow