postcss-color-hex-alpha

WebJar for postcss-color-hex-alpha

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

postcss-color-hex-alpha
Last Version

Last Version

3.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

postcss-color-hex-alpha
WebJar for postcss-color-hex-alpha
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/postcss/postcss-color-hex-alpha

Download postcss-color-hex-alpha

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/postcss-color-hex-alpha/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>postcss-color-hex-alpha</artifactId>
    <version>3.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/postcss-color-hex-alpha/
implementation 'org.webjars.npm:postcss-color-hex-alpha:3.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/postcss-color-hex-alpha/
implementation ("org.webjars.npm:postcss-color-hex-alpha:3.0.0")
'org.webjars.npm:postcss-color-hex-alpha:jar:3.0.0'
<dependency org="org.webjars.npm" name="postcss-color-hex-alpha" rev="3.0.0">
  <artifact name="postcss-color-hex-alpha" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='postcss-color-hex-alpha', version='3.0.0')
)
libraryDependencies += "org.webjars.npm" % "postcss-color-hex-alpha" % "3.0.0"
[org.webjars.npm/postcss-color-hex-alpha "3.0.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.webjars.npm : color jar [1.0.3,2)
org.webjars.npm : postcss jar [6.0.1,7)
org.webjars.npm : postcss-message-helpers jar [2.0.0,3)

Project Modules

There are no modules declared in this project.

PostCSS Color Hex Alpha PostCSS

NPM Version CSS Standard Status Build Status Support Chat

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

'Can I use' table

body {
  background: #9d9c;
}

/* becomes */

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

Usage

Add PostCSS Color Hex Alpha to your project:

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

Use PostCSS Color Hex Alpha to process your CSS:

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

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

Or use it as a PostCSS plugin:

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

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

PostCSS Color Hex Alpha runs in all Node environments, with special instructions for:

Node PostCSS CLI Webpack Create React App Gulp Grunt

Options

preserve

The preserve option determines whether 4 & 8 character hex color notation should be preserved in their original form. By default, these are not preserved.

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

/* becomes */

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

PostCSS

PostCSS and plugins based on it

Versions

Version
3.0.0