
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
colornorm
PostCSS plugin for normalizing colors
Convert different syntaxes to a single one.
Useful for de-duplicating colors, and standardizing a stylesheet on one color syntax.
You may assume that the same input color will map the same output color, regardless of input syntax.
Invalid color syntax returns null. Global values ("inherit", "initial", "unset") also return null.
const colornorm = require('colornorm')
// Any crazy valid CSS color you can think of
const inputs = [
'red',
'RED',
'#f00',
'#ff0000',
'#ff0000ff',
'rgb(255,0,0)',
'rgb(255 0 0)',
'rgba(255, 0, 0, 1)',
'rgb(255 0 0 / 1)',
'hsl(0, 100%, 50%)',
'hsla(0, 100%, 50%, 1)'
// hwb, cmyk, lab, lch inputs also supported
]
const outputs = inputs.map((input) => colornorm(input))
// all are 'hsl(0 100% 50%)'
// output styles: 'hsl' (default as most human friendly widely adopted format), 'hwb', 'lab', 'lch', 'cmyk', 'rgb', 'hex'
const outputs = inputs.map((input) => colornorm(input, 'hex'))
// all are '#f00'
npm install colornorm --save
# yarn add colornorm
Alternatively, there are also client web builds available:
<!-- Dependencies -->
<!-- window.ColorNorm -->
<script src="https://unpkg.com/colornorm/dist/colornorm.umd.js"></script>
MIT
FAQs
Normalize CSS colors in a spec compliant way
The npm package colornorm receives a total of 46 weekly downloads. As such, colornorm popularity was classified as not popular.
We found that colornorm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.