postcss-color-function icon indicating copy to clipboard operation
postcss-color-function copied to clipboard

PostCSS plugin to transform W3C CSS color function to more compatible CSS

Results 14 postcss-color-function issues
Sort by recently updated
recently updated
newest added

If a developer wants to use Custom Properties with this plugin, could this plugin lookup the variables for them? Even if it’s just on `:root`? Currently, [this plugin relies on...

Hello, This PR makes the following changes * Update this module to PostCSS 8 using the migration guide : https://evilmartians.com/chronicles/postcss-8-plugin-migration * Update the node version to use 10 at the...

More on vulnerability https://nvd.nist.gov/vuln/detail/CVE-2021-29060

I am using postcss-advanced-variables and if i try to put variables into my color values I get the following error: > Unable to parse color from string "$primary-color" this is...

awaiting feedback

See: https://github.com/jonathantneal/postcss-color-mod-function/issues/37#issue-606237601

Hello, I’m trying to hit a specific rgb result value with my color transformations and finding there’s no support for fractional percentages. **Input** ```CSS fire { color: color(rgba(29, 29, 31,...

Bumps [eslint](https://github.com/eslint/eslint) from 3.19.0 to 6.6.0. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v6.6.0 > * [`39dfe08`](https://github.com/eslint/eslint/commit/39dfe0880fa934e287e8ea1f7b56d5cba8d43765) Update: false positives in function-call-argument-newline (fixes [#12123](https://github-redirect.dependabot.com/eslint/eslint/issues/12123)) ([#12280](https://github-redirect.dependabot.com/eslint/eslint/issues/12280)) (Scott O'Hara) > *...

dependencies

Are there any developers interested in continuing this project, or should we deprecate it in favor of https://www.npmjs.com/package/postcss-color-mod-function ? Note that, regardless of the name, the entire `color-mod()` function concept...

### Problem Css modules variables values not converted by `color` function ### Example ``` // index.css @value transparentBlack: color(#333 a(8%)); ``` ``` //index.js @import { transparentBlack } from './index.css'; console.log(transparentBlack)...

Input CSS using the blackness adjuster: ```css body { background-color: color(#000 b(10%)) } ``` Result CSS after using the blackness adjuster: ```css body { background-color: rgb(230, 0, 0) } ```...

bug