postcss-color-hwb
PostCSS plugin to transform W3C CSS hwb() color to more compatible CSS (rgb() (or rgba()))
Last updated 8 years ago by semigradsky .
MIT · Repository · Bugs · Original npm
$ cnpm install postcss-color-hwb 
SYNC missed versions from official npm registry.

postcss-color-hwb Build Status

PostCSS plugin to transform W3C CSS hwb() color to more compatible CSS (rgb() (or rgba())).

Installation

$ npm install postcss-color-hwb

Usage

// dependencies
var fs = require("fs")
var postcss = require("postcss")
var colorHwb = require("postcss-color-hwb")

// css to be processed
var css = fs.readFileSync("input.css", "utf8")

// process css
var output = postcss()
  .use(colorHwb())
  .process(css)
  .css

Using this input.css:

body {
  color: hwb(90, 0%, 0%, 0.5);
}

you will get:

body {
  color: rgba(128, 255, 0, 0.5);
}

Checkout tests for more examples.


Contributing

Work on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature.

$ git clone https://github.com/postcss/postcss-color-hwb.git
$ git checkout -b patch-1
$ npm install
$ npm test

Changelog

License

Current Tags

  • 3.0.0                                ...           latest (8 years ago)

2 Versions

  • 3.0.0                                ...           8 years ago
  • 2.0.1                                ...           9 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (4)
Dev Dependencies (3)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org