Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

postcss-color-hex-alpha

csstools17.7mMIT10.0.0TypeScript support: included

Use 4 & 8 character hex color notation in CSS

4-digit, 8-digit, alpha, color, css, csswg, hex, postcss, postcss-plugin, spec, specification, transparency, transparent, w3c

readme

PostCSS Color Hex Alpha PostCSS Logo

npm install postcss-color-hex-alpha --save-dev

PostCSS Color Hex Alpha lets you use 4 & 8 character hex color notation in CSS, following the CSS Color Module specification.

body {
    background: #9d9c;
}

/* becomes */

body {
    background: rgba(153,221,153,0.8);
}

Usage

Add PostCSS Color Hex Alpha to your project:

npm install postcss postcss-color-hex-alpha --save-dev

Use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssColorHexAlpha = require('postcss-color-hex-alpha');

postcss([
    postcssColorHexAlpha(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);

Options

preserve

The preserve option determines whether the original notation is preserved. By default, it is not preserved.

postcssColorHexAlpha({ preserve: true })
body {
    background: #9d9c;
}

/* becomes */

body {
    background: rgba(153,221,153,0.8);
    background: #9d9c;
}

changelog