
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@colorblender/converter-ansi
Advanced tools
Convert RGB to Ansi16 / Ansi256 and vice versa.
This package requires the installation of the main package @colorblender/converter.
npm install @colorblender/converter @colorblender/converter-ansi
import {
  rgbToAnsi16,
  rgbToAnsi256,
  ansi16ToRgb,
  ansi256ToRgb,
} from '@colorblender/converter-ansi';
You can convert between any of the supported color models.
// ansi to rgb
ansi16ToRgb(ansi16: Ansi16Color, rounded?: boolean): RgbColor
ansi256ToRgb(ansi256: Ansi256Color, rounded?: boolean): RgbColor
// rgb to ansi
rgbToAnsi16(rgb: RgbColor): Ansi16Color
rgbToAnsi256(rgb: RgbColor): Ansi256Color
import { rgbToAnsi16, ansi16ToRgb } from '@colorblender/converter-ansi';
rgbToAnsi16({
  r: 255,
  g: 255,
  b: 255,
});
// Rounded
ansi16ToRgb(167, true);
You can convert any compatible model to RGB format and vice versa.
To convert two compatible and different RGB models you will have to go through a sub-conversion. For example to convert a HEX value to ANSI16 you will have to do: HEX -> RGB -> ANSI16. This allows you to convert any compatible model to any other.
Keep in mind that large conversions may result in a loss of accuracy.
Please file an issue for bugs, missing documentation, or unexpected behavior.
MIT
FAQs
Convert RGB to Ansi16 / Ansi256 and vice versa.
We found that @colorblender/converter-ansi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.