color-parser

CSS color string parser

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
color-parser
0.1.011 years ago11 years agoMinified + gzip package size for color-parser in KB

Readme

color-parser
CSS color string parser

Installation

$ component install component/color-parser

Example

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