Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

closest_websafe

krabat18ISC1.0.1

find the closest websafe color by hex value

websafe, color, hex, hexadecimal

readme

closest_websafe

Description:

The Node.js package finds the closest websafe color based on a hexadecimal value.

Install:

npm install closest_websafe

Usage:

The module expects a string containing a hexadecimal color and returns the nearest websafe hex string to the input as a string.

const hex2websafe = require('closest_websafe');
let notWebsafeColor = "#DECADE";
let websafeColor = hex2websafe(notWebsafeColor);
// websafeColor now contains '#884444'

Notes:

  • Invalid input will throw an error message
  • Library uses a linear searching algorithm.
  • Self-contained, needs no dependencies.

License:

ISC