colornames
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/colornames package

1.1.1 • Public • Published

colornames

Convert color names to HEX color values.

NPM

Build Status Dependency Status

Installation

Component

$ component install timoxley/colornames

Node/Browserify

$ npm install colornames

Example

var toHex = require('colornames')

VGA color names

toHex('red') // => "#FF0000"
toHex('blue') // => "#0000FF"

CSS color names

toHex('lightsalmon') // => "#FFA07A"
toHex('mediumvioletred') // => "#C71585"

Get meta data about a color

toHex.get('red')
// =>
{
  name: "red",
  css: true,
  value: "#FF0000",
  vga: true
}

Conversion is case-insensitive

toHex('Blue') // => "#0000FF"
toHex('BLUE') // => "#0000FF"
toHex('BlUe') // => "#0000FF"

API

colornames(name)

Get HEX code for a color name, or undefined if unknown.

.get(name)

All known data about color, including whether valid VGA or CSS color name.

.get.vga(name)

HEX code for a color name, only if the color is a valid VGA color name.

.get.css(name)

HEX code for a color name, only if the color is a valid CSS color name.

.all()

Get all color names data.

License

MIT

Complete Color Map

example-color-table-

Package Sidebar

Install

npm i colornames

Weekly Downloads

1,333,364

Version

1.1.1

License

MIT

Last publish

Collaborators

  • timoxley