color-parser

CSS color string parser

2 个版本
安装
npm install color-parser
yarn add color-parser
pnpm add color-parser
bun add color-parser
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

版本列表
0.1.0 2012-12-11
0.0.1 2012-09-12