colornames
Map color names to HEX color values.
Last updated 10 years ago by timoxley .
MIT · Repository · Bugs · Original npm
$ cnpm install colornames 
SYNC missed versions from official npm registry.

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-

Current Tags

  • 1.1.1                                ...           latest (10 years ago)

1 Versions

  • 1.1.1                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (1)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org