Gathering detailed insights and metrics for postcss-color-invert
Gathering detailed insights and metrics for postcss-color-invert
Gathering detailed insights and metrics for postcss-color-invert
Gathering detailed insights and metrics for postcss-color-invert
npm install postcss-color-invert
Typescript
Module System
Node Version
NPM Version
JavaScript (99.19%)
CSS (0.81%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
6 Commits
3 Branches
1 Contributors
Updated on Jan 30, 2021
Latest Version
0.0.1
Package Id
postcss-color-invert@0.0.1
Unpacked Size
4.28 kB
Size
1.98 kB
File Count
4
NPM Version
6.9.0
Node Version
12.3.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
5
A PostCSS plugin to invert colors
1const fs = require('fs') 2const path = require('path') 3const postcss = require('postcss') 4const postcssColorInvert = require('postcss-color-invert') 5 6const inputFile = path.join(__dirname, 'input.css') 7const input = fs.readFileSync(inputFile, 'utf8') 8console.log(input) // => 'a { color: #ff0000; }' 9 10postcss([postcssColorInvert()]) 11 .process(input, { from: inputFile }) 12 .then(function (result) { 13 console.log(result.css) // => 'a { color: #00ffff; }' 14 })
1$ yarn add --dev postcss-color-invert
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/6 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
33 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More