Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ansi-8-bit

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ansi-8-bit

8-bit xterm color codes

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ansi-8-bit Build Status

256 ansi color codes for styling terminal output

You probably want the higher-level chalk module for styling your strings.

screenshot

Install

$ npm install --save ansi-8-bit

Usage

var a8b = require('ansi-8-bit'), fg = a8b.fg, bg = a8b.bg;

console.log(fg.getRgb(2,3,4) + bg.getRgb(4,4,4) + 'Hello world!' + a8b.reset);

API

The module exposes a fg and bg object, and a reset code. Both the foreground and background objects contain:

  • 256 color codes
  • standard containing the 8 default colors
  • bright containing the 8 bright/bold default colors
  • rgb containing 216 different red-green-blue values
  • grayscale containing 24 tints ranging from white to black
  • getRgb(int, int, int) return a colour in the rbg ranges 0 to 6

License

MIT © Jbnicolai

Keywords

FAQs

Package last updated on 13 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc