🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

color-octree

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-octree

Get closest hex color

2.2.1
latest
Source
npm
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Find efficiently the closest hex color

npm version build status

API

  • add(colors /*array of {hex, name}*/): add an array of colors (add calls init if it was not initialized yet)
  • closest(hex): Search for the closest color
  • init(depth: Int = 7): Init the tree at a given depth (default 7), accepted range: [0, 7]
  • remove(hex): Remove a color object by its hex property
import colorNames from 'color-names';
import { add, closest } from 'color-octree';

// we expect an array of {hex, name}
const colors = Object.entries(colorNames).map(([hex, name]) => ({ hex, name }));

add(colors);
console.log(closest('5544df'));

live example

Notice

It uses String.prototype.padStart, it exists on node 8.11 and recent browsers, but you might still want to polyfill it (see polyfill.io or es-shims)

Keywords

color

FAQs

Package last updated on 09 May 2018

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