
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
postcss-color-gray
Advanced tools
The postcss-color-gray package is a PostCSS plugin that allows you to use the 'gray()' function in your CSS, which is a part of the CSS Color Module Level 4 specification. This function allows you to specify shades of gray in a more intuitive way.
Convert gray() function to rgb()
This feature converts the 'gray()' function to an equivalent 'rgb()' function. For example, 'gray(50%)' is converted to 'rgb(128, 128, 128)'.
/* Input CSS */
body {
color: gray(50%);
}
/* Output CSS */
body {
color: rgb(128, 128, 128);
}
Support for alpha transparency
This feature allows you to specify alpha transparency in the 'gray()' function. For example, 'gray(50% / 50%)' is converted to 'rgba(128, 128, 128, 0.5)'.
/* Input CSS */
body {
color: gray(50% / 50%);
}
/* Output CSS */
body {
color: rgba(128, 128, 128, 0.5);
}
The postcss-color-function package allows you to use color-modifying functions like 'color()' in your CSS. It provides more general color manipulation capabilities compared to postcss-color-gray, which is focused specifically on the 'gray()' function.
The postcss-preset-env package allows you to use modern CSS features, including color functions, with automatic polyfilling for older browsers. It offers a broader range of features compared to postcss-color-gray, which is specialized for the 'gray()' function.
PostCSS Gray lets you use the gray()
color function in CSS, following the
CSSWG Specification.
body {
background-color: gray(100);
color: gray(0 / 90%);
}
/* becomes */
body {
background-color: rgb(255,255,255);
color: rgba(0,0,0,.9);
}
Add PostCSS Gray to your project:
npm install postcss-color-gray --save-dev
Use PostCSS Gray to process your CSS:
import postcssGray from 'postcss-color-gray';
postcssGray.process(YOUR_CSS /*, processOptions, pluginOptions */);
Or use it as a PostCSS plugin:
import postcss from 'postcss';
import postcssGray from 'postcss-color-gray';
postcss([
postcssGray(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
PostCSS Gray runs in all Node environments, with special instructions for:
Node | Webpack | Create React App | Gulp | Grunt |
---|
The preserve
option determines whether the original gray()
function should
be preserved or replaced. By default, the gray()
function is replaced.
By setting preserve
to true
, the original gray()
function is preserved.
postcssGray({ preserve: true });
body {
background-color: gray(100);
color: gray(0 / 90%);
}
/* becomes */
body {
background-color: gray(100);
background-color: rgb(255,255,255);
color: gray(0 / 90%);
color: rgba(0,0,0,.9);
}
5.0.0 (July 26, 2018)
FAQs
Use the gray() color function in CSS
The npm package postcss-color-gray receives a total of 993,771 weekly downloads. As such, postcss-color-gray popularity was classified as popular.
We found that postcss-color-gray demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.