lightfold
Version:
lightweight scaffolding and archiving utility CLI.
109 lines (83 loc) • 3.52 kB
Markdown
[![NPM Version][npm-img]][npm-url]
[![CSS Standard Status][css-img]][css-url]
[![Build Status][cli-img]][cli-url]
[![Support Chat][git-img]][git-url]
[] lets you use space and slash separated
color notation in CSS, following the [CSS Color] specification.
```pcss
:root {
--firebrick: rgb(178 34 34);
--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);
--firebrick-hsl: hsla(0 68% 42%);
--firebrick-hsl-a50: hsl(0 68% 42% / 50%);
}
/* becomes */
:root {
--firebrick: rgb(178, 34, 34);
--firebrick-a50: rgba(178, 34, 34, .5);
--firebrick-hsl: hsl(0, 68%, 42%);
--firebrick-hsl-a50: hsla(0, 68%, 42%, .5);
}
```
Add [PostCSS Color Functional Notation] to your project:
```bash
npm install postcss-color-functional-notation --save-dev
```
Use [PostCSS Color Functional Notation] to process your CSS:
```js
const postcssColorFunctionalNotation = require('postcss-color-functional-notation');
postcssColorFunctionalNotation.process(YOUR_CSS /*, processOptions, pluginOptions */);
```
Or use it as a [PostCSS] plugin:
```js
const postcss = require('postcss');
const postcssColorFunctionalNotation = require('postcss-color-functional-notation');
postcss([
postcssColorFunctionalNotation(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
```
[] runs in all Node environments, with special instructions for:
| [Node](INSTALL.md
| --- | --- | --- | --- | --- | --- |
The `preserve` option determines whether the original functional color notation
is preserved. By default, it is not preserved.
```js
postcssImageSetFunction({ preserve: true })
```
```pcss
:root {
--firebrick: rgb(178 34 34);
--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);
--firebrick-hsl: hsla(0 68% 42%);
--firebrick-hsl-a50: hsl(0 68% 42% / 50%);
}
/* becomes */
:root {
--firebrick: rgb(178, 34, 34);
--firebrick: rgb(178 34 34);
--firebrick-a50: rgba(178, 34, 34, .5);
--firebrick-a50: rgb(70% 13.5% 13.5% / 50%);
--firebrick-hsl: hsl(0, 68%, 42%);
--firebrick-hsl: hsla(0 68% 42%);
--firebrick-hsl-a50: hsla(0, 68%, 42%, .5);
--firebrick-hsl-a50: hsl(0 68% 42% / 50%);
}
```
[]: https://img.shields.io/travis/jonathantneal/postcss-color-functional-notation.svg
[]: https://travis-ci.org/jonathantneal/postcss-color-functional-notation
[]: https://cssdb.org/badge/color-functional-notation.svg
[]: https://cssdb.org/#color-functional-notation
[]: https://img.shields.io/badge/support-chat-blue.svg
[]: https://gitter.im/postcss/postcss
[]: https://img.shields.io/npm/v/postcss-color-functional-notation.svg
[]: https://www.npmjs.com/package/postcss-color-functional-notation
[]: https://drafts.csswg.org/css-color/#ref-for-funcdef-rgb%E2%91%A1%E2%91%A0
[]: https://github.com/postcss/gulp-postcss
[]: https://github.com/nDmitry/grunt-postcss
[]: https://github.com/postcss/postcss
[]: https://github.com/postcss/postcss-loader
[]: https://github.com/jonathantneal/postcss-color-functional-notation