Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
material-palette
Advanced tools
Generates material palettes for your colors
Given an input color it calculates its palette approaching the logic of Google Material Design Color Palettes.
Since the algorithm behind their generation is not (yet) known this module approximates the colors values.
It works everywhere: browsers, node, and so on.
With npm do:
npm install material-palette
This module exports a single function, the material palette generator.
materialpalette({ h: number, s: number, l: number })
It takes an object containing the h, s, and l fields
The field h must be a numeric into [0, 360].
The fields s and l must be numerics into [0, 100].
It returns an object containing all the 14 palette variants (e.g., 50, 100, 200, ..., A700)
As always, more details reading the tests ...
Suppose you want to generate a material palette for hsl(87, 100%, 22%) color (i.e. #3E7000).
First of all import the generator.
var materialpalette = require('materialpalette') // node
import materialpalette from 'materialpalette' // ES2015
window.materialpalette // browsers
Then use it.
var ciao = materialpalette({ h: 87, s: 100, l: 22 })
Which results in the following object ...
{
'50': { h: 87, s: 100, l: 74 },
'100': { h: 87, s: 100, l: 59 },
'200': { h: 87, s: 100, l: 48 },
'300': { h: 87, s: 100, l: 34 },
'400': { h: 87, s: 100, l: 28 },
'500': { h: 87, s: 100, l: 22 },
'600': { h: 87, s: 100, l: 16 },
'700': { h: 87, s: 100, l: 10 },
'800': { h: 87, s: 100, l: 4 },
'900': { h: 87, s: 100, l: 0 },
'A100': { h: 92, s: 100, l: 46 },
'A200': { h: 92, s: 100, l: 38 },
'A400': { h: 92, s: 100, l: 21 },
'A700': { h: 92, s: 100, l: 10 }
}
Matching, visually ...
It's cool, isn't it?
MIT © Leonardo Di Donato
FAQs
Generate material palettes for your colors
The npm package material-palette receives a total of 266 weekly downloads. As such, material-palette popularity was classified as not popular.
We found that material-palette 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.