Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
css-color-names
Advanced tools
The css-color-names npm package provides a JSON object where the keys are CSS color names and the values are their corresponding hexadecimal color codes. It is a simple utility that can be used to convert CSS color names to hex codes and vice versa, facilitating developers in handling color names within their projects.
Convert CSS color name to hex code
This feature allows you to retrieve the hexadecimal code of a CSS color name by accessing the value associated with the color name key in the css-color-names object.
"const cssColorNames = require('css-color-names');
console.log(cssColorNames['tomato']); // Outputs: '#ff6347'"
Check if a color name is valid
This demonstrates how to check if a given string is a valid CSS color name by checking if it is a key in the css-color-names object.
"const cssColorNames = require('css-color-names');
console.log('rebeccapurple' in cssColorNames); // Outputs: true"
The color-name package provides an array of CSS color names and their RGB values. It is similar to css-color-names but focuses on RGB values instead of hex codes, making it useful for projects that work with RGB color models.
color-convert is a comprehensive color conversion library that supports conversions between various color models (e.g., RGB, HEX, HSL, etc.). While it offers much more than css-color-names in terms of functionality, it can also be used to convert CSS color names to other formats, making it a more versatile but complex alternative.
A JSON Object of css color names mapped to their hex value
var csscolors = require('css-color-names');
console.dir(csscolors);
yields
{
"aqua": "#00ffff",
"aliceblue": "#f0f8ff",
"antiquewhite": "#faebd7",
"black": "#000000",
"blue": "#0000ff",
...
}
In the Makefile you'll see a line like this:
./getcolors.sh | ./stringify.js > $(FILE)
The first command scrapes a site for the list,
and outputs the results separated by newlines. The
second command creates the JSON object and outputs
it to stdout, which then gets redirected into
css-color-names.json
npm install css-color-names
MIT
FAQs
A JSON Object of css color names mapped to their hex value
The npm package css-color-names receives a total of 2,248,537 weekly downloads. As such, css-color-names popularity was classified as popular.
We found that css-color-names 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.