
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
nice-color-palettes
Advanced tools
A JSON of the top color palettes on ColourLovers.com, as RGB hex strings.
var colors = require("nice-color-palettes");
console.log(colors.length);
// => 100
console.log(colors[0]);
// => [ "#69d2e7", "#a7dbd8", "#e0e4cc", "#f38630", "#fa6900" ]
Install with npm as a local dependency (for API) or global (for CLI).
npm install nice-color-palettes [-g|--save]
The main entry point exports a nested JSON array with 100 color palettes. Each palette is an array of 5 RGB hex strings.
This also exposes two other sizes for convenience, 200 and 500:
// top 100 palettes
require("nice-color-palettes");
// top 200 palettes
require("nice-color-palettes/200");
// top 500 palettes
require("nice-color-palettes/500");
// top 1000 palettes
require("nice-color-palettes/1000");
Note: Duplicate palettes and palettes with less than 5 colors are filtered out for the sake of consistency, so you may end up with a slightly different number in the JSON, like 495 palettes instead of 500.
As of version 4.0, the CLI is no longer exposed as a primary dependency, but as a dev dependency that can be run locally when cloning the repo.
git clone https://github.com/Experience-Monks/nice-color-palettes.git
cd nice-color-palettes
npm install
node bin/index.js [count] [opts]
Options:
count number of palettes (default 100)
--pretty pretty-print the JSON
Examples:
node bin/index.js 300 --pretty > top-300.json
node bin/index.js > top-100.json
MIT, see LICENSE.md for details.
FAQs
nice colour palettes as JSON
The npm package nice-color-palettes receives a total of 31,284 weekly downloads. As such, nice-color-palettes popularity was classified as popular.
We found that nice-color-palettes demonstrated a healthy version release cadence and project activity because the last version was released less than 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
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.