Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@adobe/leonardo-contrast-colors
Advanced tools
Generate colors based on a desired contrast ratio
@adobe/leonardo-contrast-colors
This package contains all the functions for generating colors by target contrast ratio.
npm i @adobe/leonardo-contrast-colors
const { generateAdaptiveTheme } = require('@adobe/leonardo-contrast-colors');
import { generateAdaptiveTheme } from '@adobe/leonardo-contrast-colors';
// returns theme colors as JSON
let myTheme = generateAdaptiveTheme({
colorScales: [
{
name: 'gray',
colorKeys: ['#cacaca'],
ratios: {
'GRAY_LOW_CONTRAST': 2,
'GRAY_LARGE_TEXT': 3,
'GRAY_TEXT': 4.5,
'GRAY_HIGH_CONTRAST': 8
}
},
{
name: 'blue',
colorKeys: ['#5CDBFF', '#0000FF'],
ratios: {
'BLUE_LARGE_TEXT': 3,
'BLUE_TEXT': 4.5
}
},
{
name: 'red',
colorKeys: ['#FF9A81', '#FF0000'],
ratios: {
'RED_LARGE_TEXT': 3,
'RED_TEXT': 4.5
}
}
],
baseScale: 'gray',
brightness: 97
});
generateAdaptiveTheme
Function used to create a fully adaptive contrast-based color palette/theme using Leonardo. Parameters are destructured and need to be explicitly called, such as colorKeys: ["#f26322"]
. Parameters can be passed as a config JSON file for modularity and simplicity.
generateAdaptiveTheme({colorScales, baseScale}); // returns function
generateAdaptiveTheme({colorScales, baseScale, brightness}); // returns color objects
Returned function:
myTheme(brightness, contrast);
colorScales
[array of objects]:Each object contains the necessary parameters for generating colors by contrast with the exception of the name
and ratios
parameter. For generateAdaptiveTheme
, ratios can be an array or an object.
Example of colorScales
object with all options:
{
name: 'blue',
colorKeys: ['#5CDBFF', '#0000FF'],
colorSpace: 'LCH',
ratios: {
'blue--largeText': 3,
'blue--normalText': 4.5
}
}
baseScale
string (enum):String value matching the name
of a colorScales
object to be used as a base scale (background color). This creates a scale of values from 0-100 in lightness, which is used for brightness
parameter. Ie. brightness: 90
returns the 90% lightness value of the base scale.
name
string:Unique name for each color scale. This value refers to the entire color group (eg "blue") and will be used for the output color keys, ie blue100: '#5CDBFF'
ratios
array or object:List of numbers to be used as target contrast ratios. If entered as an array, swatch names are incremented in 100
s such as blue100
, blue200
based on the color scale name.
Alternatively, ratios
can be an object with custom keys to name each color, such as ['Blue_Large_Text', 'Blue_Normal_Text']
.
brightness
number:Optional value from 0-100 indicating the brightness of the base / background color. If undefined, generateAdaptiveTheme
will return a function
contrast
integer:Optional value to increase contrast of your generated colors. This value is multiplied against all ratios defined for each color scale.
output
string (enum):String value of the desired color space and output format for the generated colors. Output formats conform to the W3C CSS Color Module Level 4 spec for the supported options.
Output option | Sample value |
---|---|
'HEX' (default) | #RRGGBB |
'RGB' | rgb(255, 255, 255) |
'HSL' | hsl(360deg, 0%, 100%) |
'HSV' | hsv(360deg, 0%, 100%) |
'HSLuv' | hsluv(360, 0, 100) |
'LAB' | lab(100%, 0, 0) |
'LCH' | lch(100%, 0, 360deg) |
'CAM02' | jab(100%, 0, 0) |
'CAM02p' | jch(100%, 0, 360deg) |
The generateAdaptiveTheme
function returns an array of color objects. Each key is named by concatenating the user-defined color name (above) with a numeric value.
Colors with a positive contrast ratio with the base (ie, 2:1) will be named in increments of 100. For example, gray100
, gray200
.
Colors with a negative contrast ratio with the base (ie -2:1) will be named in increments less than 100 and based on the number of negative values declared. For example, if there are 3 negative values [-1.4, -1.3, -1.2, 1, 2, 3]
, the name for those values will be incremented by 100/4 (length plus one to avoid a 0
value), such as gray25
, gray50
, and gray75
.
Here is an example output from a theme:
[
{ background: "#e0e0e0" },
{
name: 'gray',
values: [
{name: "gray100", contrast: 1, value: "#e0e0e0"},
{name: "gray200", contrast: 2, value: "#a0a0a0"},
{name: "gray300", contrast: 3, value: "#808080"},
{name: "gray400", contrast: 4.5, value: "#646464"}
]
},
{
name: 'blue',
values: [
{name: "blue100", contrast: 2, value: "#b18cff"},
{name: "blue200", contrast: 3, value: "#8d63ff"},
{name: "blue300", contrast: 4.5, value: "#623aff"},
{name: "blue400", contrast: 8, value: "#1c0ad1"}
]
}
]
let myPalette = {
colorScales: [
{
name: 'gray',
colorKeys: ['#cacaca'],
colorspace: 'HSL',
ratios: [1, 2, 3, 4.5, 8, 12]
},
{
name: 'blue',
colorKeys: ['#5CDBFF', '#0000FF'],
colorspace: 'HSL',
ratios: [3, 4.5]
},
{
name: 'red',
colorKeys: ['#FF9A81', '#FF0000'],
colorspace: 'HSL',
ratios: [3, 4.5]
}
],
baseScale: 'gray'
}
let myTheme = generateAdaptiveTheme(myPalette);
myTheme(95, 1.2) // outputs colors with background lightness of 95 and ratios increased by 1.2
// theme on light gray
let lightTheme = generateAdaptiveTheme(95);
// theme on dark gray with increased contrast
let darkTheme = generateAdaptiveTheme(20, 1.3);
let varPrefix = '--';
// Iterate each color object
for (let i = 0; i < myTheme.length; i++) {
// Iterate each value object within each color object
for(let j = 0; j < myTheme[i].values.length; j++) {
// output "name" of color and prefix
let key = myTheme[i].values[j].name;
let prop = varPrefix.concat(key);
// output value of color
let value = myTheme[i].values[j].value;
// create CSS property with name and value
document.documentElement.style
.setProperty(prop, value);
}
}
Primary function used to generate colors based on target contrast ratios. Parameters are destructured and need to be explicitly called, such as colorKeys: ["#f26322"]
.
generateContrastColors({colorKeys, base, ratios, colorspace})
colorKeys
[array]:List of colors referenced to generate a lightness scale. Much like key frames, key colors are single points by which additional colors will be interpolated between.
base
string:References the color value that the color is to be generated from.
ratios
[array]:List of numbers to be used as target contrast ratios.
colorspace
string:The colorspace in which the key colors will be interpolated within. Below are the available options:
This function is used to generate a color scale tailored specifically for use as a brightness scale when using Leonardo for brightness and contrast controls. Colors are generated that match HSLuv lightness values from 0
to 100
and are output as hex values.
generateBaseScale({colorKeys, colorspace})
Only accepts colorKeys and colorspace parameters, as defined above for generateContrastColors
You may notice the tool takes an input (target ratio) but most often outputs a contrast ratio slightly higher. This has to do with the available colors in the RGB color space, and the math associated with calculating these ratios.
For example let's look at blue and white. Blue: rgb(0, 0, 255) White: rgb(255, 255, 255) Contrast ratio: 8.59:1
If we change any one value in the RGB channel for either color, the ratio changes: Blue: rgb(0, 1, 255) White: rgb(255, 255, 255) Contrast ratio: 8.57:1
If 8.58 is input as the target ratio with the starting color of blue, the output will not be exact. This is exaggerated by the various colorspace interpolations.
Since the WCAG requirement is defined as a minimum contrast requirement, it should be fine to generate colors that are a little more accessible than the minimum.
This project is currently built using D3 color. Although functionality is comparable to Chroma.js, the choice of D3 color is based on the additional modules available for state-of-the-art color appearance models, such as CIE CAM02.
The createScale()
function is basically a wrapper function for creating a d3 linear scale for colors, with a few enhancements that aid in the generateContrastColors()
function.
The Leonardo web app leverages d3 for additional features such as generating 2d and 3d charts.
Contributions are welcomed! Read the Contributing Guide for more information.
You can run tests and watch for changes with:
yarn dev
This project is licensed under the Apache V2 License. See LICENSE for more information.
FAQs
Generate colors based on a desired contrast ratio
The npm package @adobe/leonardo-contrast-colors receives a total of 3,148 weekly downloads. As such, @adobe/leonardo-contrast-colors popularity was classified as popular.
We found that @adobe/leonardo-contrast-colors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 22 open source maintainers 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
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.