Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dustinspecker/convert-css-color-name-to-hex
Convert CSS color names to hex
https://github.com/dustinspecker/convert-css-color-name-to-hex
Last synced: 2 days ago
JSON representation
Convert CSS color names to hex
- Host: GitHub
- URL: https://github.com/dustinspecker/convert-css-color-name-to-hex
- Owner: dustinspecker
- License: mit
- Created: 2015-09-03T01:19:55.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-31T21:40:29.000Z (over 7 years ago)
- Last Synced: 2024-09-19T15:47:27.937Z (about 2 months ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# convert-css-color-name-to-hex
[![NPM version](https://badge.fury.io/js/convert-css-color-name-to-hex.svg)](https://badge.fury.io/js/convert-css-color-name-to-hex) [![Build Status](https://travis-ci.org/dustinspecker/convert-css-color-name-to-hex.svg)](https://travis-ci.org/dustinspecker/convert-css-color-name-to-hex) [![Coverage Status](https://img.shields.io/coveralls/dustinspecker/convert-css-color-name-to-hex.svg)](https://coveralls.io/r/dustinspecker/convert-css-color-name-to-hex?branch=master)[![Code Climate](https://codeclimate.com/github/dustinspecker/convert-css-color-name-to-hex/badges/gpa.svg)](https://codeclimate.com/github/dustinspecker/convert-css-color-name-to-hex) [![Dependencies](https://david-dm.org/dustinspecker/convert-css-color-name-to-hex.svg)](https://david-dm.org/dustinspecker/convert-css-color-name-to-hex/#info=dependencies&view=table) [![DevDependencies](https://david-dm.org/dustinspecker/convert-css-color-name-to-hex/dev-status.svg)](https://david-dm.org/dustinspecker/convert-css-color-name-to-hex/#info=devDependencies&view=table)
> Convert CSS color names to hex
## Install
```
npm install --save convert-css-color-name-to-hex
```## Usage
### ES2015
```javascript
import convertCssColorNameToHex from 'convert-css-color-name-to-hex';convertCssColorNameToHex('batman');
// => 'batman'convertCssColorNameToHex('aliceblue');
// => '#f0f8ff'
```### ES5
```javascript
var convertCssColorNameToHex = require('convert-css-color-name-to-hex');convertCssColorNameToHex('batman');
// => 'batman'convertCssColorNameToHex('aliceblue');
// => '#f0f8ff'
```## LICENSE
MIT © [Dustin Specker](https://github.com/dustinspecker)