JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 36038
  • Score
    100M100P100Q189797F
  • License MIT

Find the nearest color

Package Exports

  • nearest-color

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nearest-color) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

nearest-color

Find the nearest color given a predefined list of colors.

Usage:

var colors = {
  red: '#f00',
  yellow: '#ff0',
  blue: '#00f'
};

var nearestColor = require('nearest-color').from(colors);

nearestColor('#800'); // => { name: 'red', value: '#f00' }
nearestColor('#ffe'); // => { name: 'yellow', value: '#ff0' }