An open API service indexing awesome lists of open source software.

https://github.com/component/color-parser

CSS color string parser
https://github.com/component/color-parser

Last synced: 8 months ago
JSON representation

CSS color string parser

Awesome Lists containing this project

README

          

# color-parser

CSS color string parser

## Installation

$ component install component/color-parser

### Example

```js
var parse = require('color-parser');

parse('#fc0')
// => { r: 255, g: 204, b: 0, a: 1 }

parse('#ffcc00')
// => { r: 255, g: 204, b: 0, a: 1 }

parse('rgb(255, 204, 0)')
// => { r: 255, g: 204, b: 0, a: 1 }

parse('rgba(255, 204, 0, 1)')
// => { r: 255, g: 204, b: 0, a: 1 }
```

# License

MIT