
Leonardo Colors
- 35 installs
- 2.1k repo stars
- Updated July 8, 2026
- adobe/leonardo
leonardo-colors is a Claude Code skill that generates accessible, contrast-based color themes with the @adobe/leonardo-contrast-colors library.
About
leonardo-colors guides using the @adobe/leonardo-contrast-colors library to generate accessible color themes. It builds background and foreground color scales at target WCAG contrast ratios, supports adaptive light and dark themes, and outputs design tokens or CSS variables. A developer or designer uses it when creating a palette that must meet accessibility requirements.
- Generates accessible, contrast-based color themes with @adobe/leonardo-contrast-colors
- Targets specific WCAG contrast ratios (e.g. 3:1 large text, 4.5:1 normal text) and supports WCAG3/APCA
- Builds adaptive light/dark themes and emits design tokens or CSS variables from theme output
Leonardo Colors by the numbers
- 35 all-time installs (skills.sh)
- Ranked #1,300 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
leonardo-colors capabilities & compatibility
- Capabilities
- color palette generation · wcag contrast check · design tokens · theme generation
- Use cases
- ui design · web design
What leonardo-colors says it does
Generate accessible color themes using @adobe/leonardo-contrast-colors. Use when the user needs help building contrast-based color palettes, checking WCAG accessibility, creating adaptive themes, or u
One per theme. Defines the background and the scale of grays (or other neutrals) at target ratios.
ratios: [3, 4.5] // e.g. large text (3:1), normal text (4.5:1)
npx skills add https://github.com/adobe/leonardo --skill leonardo-colorsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 35 |
|---|---|
| repo stars | ★ 2.1k |
| Last updated | July 8, 2026 |
| Repository | adobe/leonardo ↗ |
What it does
Generate accessible, contrast-based color palettes and adaptive themes that meet WCAG ratios using Adobe Leonardo.
Who is it for?
Developers and designers building WCAG-compliant color palettes and adaptive light/dark themes
Skip if: General image or asset generation; it produces color scales, not graphics
When should I use this skill?
You need contrast-based color palettes, WCAG accessibility checks, or adaptive themes via the Leonardo API
What you get
Accessible color scales at target contrast ratios, output as design tokens or CSS variables
- Contrast-based color scales at target ratios
- Design tokens or CSS variables for light and dark themes
By the numbers
- Supports 10 interpolation colorspaces (LCH, LAB, RGB, HSL, HSV, HSLuv, CAM02, CAM02p, OKLAB, OKLCH)
- Three theme output getters (contrastColors, contrastColorPairs, contrastColorValues)
Files
Leonardo Contrast Colors — Agent Skill
When helping users with @adobe/leonardo-contrast-colors, follow these steps. For full API details (parameters, types, setters), load references/api.md on demand.
1. Installation
npm i @adobe/leonardo-contrast-colorsESM (recommended):
import { Theme, Color, BackgroundColor, contrast, convertColorValue, luminance, createScale } from '@adobe/leonardo-contrast-colors';2. Creating Color and BackgroundColor
BackgroundColor
One per theme. Defines the background and the scale of grays (or other neutrals) at target ratios.
const gray = new BackgroundColor({
name: 'gray',
colorKeys: ['#cacaca'], // one or more keys to interpolate
ratios: [2, 3, 4.5, 8] // target contrast ratios (positive = darker than background)
});Color (foreground)
Defines a semantic color (e.g. blue, red) at specific contrast ratios.
const blue = new Color({
name: 'blue',
colorKeys: ['#5CDBFF', '#0000FF'], // interpolated in colorspace
colorspace: 'LCH', // optional; default 'RGB'
ratios: [3, 4.5] // e.g. large text (3:1), normal text (4.5:1)
});Parameters:
- name — Used to prefix output names (e.g.
blue100,blue200). - colorKeys — Array of CSS color strings; the scale is interpolated between them.
- colorspace (or colorSpace) — Interpolation space:
'LCH','LAB','RGB','HSL','HSV','HSLuv','CAM02','CAM02p','OKLAB','OKLCH'. Default'RGB'. - ratios — Either an array of numbers (e.g.
[3, 4.5, 7]) or an object mapping custom names to ratios (e.g.{ 'blue--largeText': 3, 'blue--normalText': 4.5 }). - smooth — Optional boolean; bezier smoothing for interpolation (default
false). - output — Optional output format (default
'HEX'); usually overridden by Theme.
Negative ratios — Use negative values (e.g. -1.5, -3) for colors lighter than the background (e.g. text on dark mode). Naming for negatives uses fractional increments (e.g. gray25, gray50).
3. Creating a Theme
Combine one BackgroundColor and one or more Colors with a lightness and optional contrast/saturation.
const theme = new Theme({
colors: [gray, blue, red], // gray is BackgroundColor; blue, red are Color
backgroundColor: gray, // required; must be the BackgroundColor instance
lightness: 97, // 0–100; background lightness (e.g. 97 = light, 8 = dark)
contrast: 1, // optional; multiplier for all ratios (default 1)
saturation: 100, // optional; 0–100 (default 100)
output: 'HEX', // optional; default 'HEX'
formula: 'wcag2' // optional; 'wcag2' (default) or 'wcag3' (APCA)
});Note: colors should include the same BackgroundColor as the first element (or at least include it in the list) plus all foreground Colors. The Theme requires backgroundColor to be set to that BackgroundColor instance.
4. Reading theme output
Three getters:
- theme.contrastColors — Array: first element
{ background: '#...' }, then one object per color withnameandvalues: [{ name, contrast, value }]. Use for design tokens or CSS variable generation. - theme.contrastColorPairs — Flat object:
{ gray100: '#e0e0e0', blue100: '#b18cff', ... }. Use for quick lookups. - theme.contrastColorValues — Flat array of color strings only.
Example iteration for CSS variables:
for (const item of theme.contrastColors) {
if (item.background) {
document.documentElement.style.setProperty('--background', item.background);
} else {
for (const v of item.values) {
document.documentElement.style.setProperty(`--${v.name}`, v.value);
}
}
}5. Mutating a theme at runtime
After construction you can change:
- theme.lightness = 8 — e.g. switch to dark background.
- theme.contrast = 1.2 — increase contrast globally.
- theme.saturation = 80 — reduce saturation.
- theme.output = 'RGB' — change output format.
- theme.backgroundColor = otherBackgroundColor — swap background (pass BackgroundColor instance).
- theme.colors = [gray, blue, red, green] — replace color list.
Adding/removing/updating colors:
- theme.addColor = newColor — Add a Color instance.
- theme.removeColor = { name: 'red' } or theme.removeColor = redColorInstance — Remove by name or by instance.
- theme.updateColor = { name: 'red', ratios: [3, 4.5, 7] } — Update a color’s ratios (or colorKeys, name, etc.) by name.
After any setter, re-read theme.contrastColors (or pairs/values); they are computed on access.
6. Utility functions
- contrast(foregroundRgbArray, backgroundRgbArray, baseV?, method?) — Returns contrast ratio.
method:'wcag2'(default) or'wcag3'. RGB arrays are[r, g, b](0–255). Use to check two colors without building a full theme. - convertColorValue(colorString, format, object?) — Convert any supported color string to
format(e.g.'HEX','RGB','LCH'). Ifobject === true, returns channel object instead of string. - luminance(r, g, b) — Relative luminance (0–1) for sRGB.
- createScale({ swatches, colorKeys, colorSpace?, shift?, fullScale?, smooth?, distributeLightness?, sortColor?, asFun? }) — Build an interpolated scale (no contrast targeting). Returns array of color strings unless
asFun: true(returns scale function). Useful for non-accessible palettes or stepping between keys.
7. Common accessibility recipes
- WCAG 2 AA (normal text) — Minimum 4.5:1. Use
ratios: [4.5]or include 4.5 in ratios. - WCAG 2 AAA (normal text) — Minimum 7:1. Use
ratios: [7]or include 7. - WCAG 2 large text — Minimum 3:1. Use
ratios: [3]or include 3 for large text tokens. - WCAG 2 AA + large text — Use
ratios: [3, 4.5]and name via object if desired:{ 'brand--large': 3, 'brand--normal': 4.5 }. - WCAG 3 / APCA — Set
formula: 'wcag3'on Theme. Interpret APCA Lc values per WCAG 3 guidance; the library returns Lc for contrast when method is'wcag3'.
Recommendation: Prefer LCH or LAB for interpolation (colorspace: 'LCH') for perceptually even scales.
8. Supported colorspaces and output formats
Interpolation colorspaces (Color/BackgroundColor colorSpace, createScale): LCH, LAB, RGB, HSL, HSV, HSLuv, CAM02, CAM02p, OKLAB, OKLCH.
Output formats (Theme output, Color output, convertColorValue): HEX, RGB, HSL, HSV, HSLuv, LAB, LCH, CAM02, CAM02p, OKLAB, OKLCH.
Values follow W3C CSS Color Module Level 4 (e.g. lch(100% 0 360deg), rgb(255 255 255)).
---
For full parameter tables, setter lists, and type details, see references/api.md.
@adobe/leonardo-contrast-colors — Full API Reference
This document is the detailed API reference for the Leonardo Contrast Colors library. Use it when you need parameter types, setters, or output shapes.
---
Theme
Class that generates adaptive contrast-based colors from a background and a list of colors with target ratios.
Constructor
new Theme({ colors, backgroundColor, lightness, contrast?, saturation?, output?, formula? })
| Parameter | Type | Required | Description |
|---|---|---|---|
colors | Color[] | Yes | List of Color instances (typically includes one BackgroundColor plus foreground Colors). |
backgroundColor | BackgroundColor | Yes | The theme background; must be a BackgroundColor instance. |
lightness | number | Yes | 0–100; lightness of the generated background. |
contrast | number | No | Multiplier for all contrast ratios (default 1). |
saturation | number | No | 0–100; saturation of generated colors (default 100). |
output | Colorspace | No | Output format (default 'HEX'). |
formula | `'wcag2' \ | 'wcag3'` | No |
Getters (read-only)
| Getter | Return type | Description |
|---|---|---|
theme.contrastColors | Array | First element { background: CssColor }; rest { name: string, values: Array<{ name, contrast, value }> }. |
theme.contrastColorPairs | Record<string, CssColor> | Key = token name, value = color string. |
theme.contrastColorValues | CssColor[] | Flat array of all color strings. |
theme.backgroundColorValue | number | Internal background value (for advanced use). |
Setters
| Setter | Description |
|---|---|
theme.lightness = n | Set background lightness (0–100). |
theme.contrast = n | Set contrast multiplier. |
theme.saturation = n | Set saturation (0–100). |
theme.output = format | Set output Colorspace. |
theme.backgroundColor = bg | Set background (BackgroundColor instance). |
theme.colors = arr | Set full color list (Color[]). |
theme.addColor = color | Add one Color instance. |
theme.removeColor = { name: string } or Color | Remove by name or by Color instance. |
theme.updateColor = { name: string, ...props } | Update existing color by name; props can be ratios, colorKeys, name, etc. |
Theme.updateColor options
Pass an object with:
- name (or color) — Current name of the color to update.
- ratios — New ratios (array or object).
- colorKeys — New color key array.
- name (as target) — New name for the color (rename).
Multiple updates: pass an array of such objects to theme.updateColor.
---
Color
Class that defines a single color scale with target contrast ratios (foreground or background).
Constructor
new Color({ name, colorKeys, colorspace?, colorSpace?, ratios, smooth?, output?, saturation? })
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Prefix for output names (e.g. blue → blue100, blue200). |
colorKeys | CssColor[] | Yes | Array of color strings to interpolate between. |
colorspace / colorSpace | InterpolationColorspace | No | Interpolation space (default 'RGB'). |
ratios | number[] or Record<string, number> | Yes | Target contrast ratios, or named ratio map. |
smooth | boolean | No | Bezier smoothing (default false). |
output | Colorspace | No | Output format (default 'HEX'); often overridden by Theme. |
saturation | number | No | Saturation (default 100). |
Setters
| Setter | Description |
|---|---|
color.name = s | Set color name. |
color.colorKeys = arr | Set color keys. |
color.colorspace / color.colorSpace = space | Set interpolation colorspace. |
color.ratios = r | Set ratios (array or object). |
color.smooth = b | Set smooth. |
color.output = format | Set output format. |
Read-only
color.colorScale— Internal chroma scale (advanced use).
---
BackgroundColor
Extends Color. Used as the theme background. Same constructor and options as Color. Has an additional read-only backgroundColorScale (internal). Use one BackgroundColor per Theme and pass it as theme.backgroundColor.
---
createScale(options)
Builds an interpolated color scale (no contrast targeting).
Options
| Option | Type | Default | Description |
|---|---|---|---|
swatches | number | — | Number of steps in the scale. |
colorKeys | CssColor[] | — | Colors to interpolate between. |
colorSpace / colorspace | InterpolationColorspace | 'LAB' | Interpolation space. |
shift | number | 1 | Shift factor. |
fullScale | boolean | true | Use full scale. |
smooth | boolean | false | Bezier smoothing. |
distributeLightness | `'linear' \ | 'polynomial'` | 'linear' |
sortColor | boolean | true | Sort by lightness. |
asFun | boolean | false | If true, return scale function instead of array. |
Returns
- If
asFunis false (default): array of CSS color strings. - If
asFunis true: chroma scale function.
---
contrast(foregroundRgbArray, baseRgbArray, baseV?, method?)
Computes contrast between two colors given as RGB arrays [r, g, b] (0–255).
| Parameter | Type | Description |
|---|---|---|
foregroundRgbArray | [number, number, number] | Foreground RGB. |
baseRgbArray | [number, number, number] | Background RGB. |
baseV | number (optional) | Precomputed base value (internal). |
method | `'wcag2' \ | 'wcag3'` |
Returns: number — Contrast ratio (WCAG 2) or APCA Lc value (WCAG 3).
---
convertColorValue(color, format, object?)
Converts a color from any supported input to a target format.
| Parameter | Type | Description |
|---|---|---|
color | string | Any valid CSS color string (hex, rgb, hsl, etc.). |
format | Colorspace | Target format. |
object | boolean | If true, returns { r, g, b } (or equivalent) instead of string. Default false. |
Returns: string or channel object when object === true.
---
luminance(r, g, b)
Relative luminance of sRGB channels (0–255 each).
Returns: number in 0–1.
---
minPositive(ratioArray, formula)
Returns the minimum positive value in a ratio array for the given formula.
- ratioArray:
number[] - formula:
'wcag2' \| 'wcag3'
Returns: number
---
ratioName(ratioArray, formula)
Maps ratio array to named values for the given formula.
- ratioArray:
number[] - formula:
'wcag2' \| 'wcag3'
Returns: number[]
---
Types
Colorspace
Output / format names: 'HEX' | 'RGB' | 'HSL' | 'HSV' | 'HSLuv' | 'LAB' | 'LCH' | 'OKLAB' | 'OKLCH' | 'CAM02' | 'CAM02p'
InterpolationColorspace
All except 'HEX': 'RGB' | 'HSL' | 'HSV' | 'HSLuv' | 'LAB' | 'LCH' | 'OKLAB' | 'OKLCH' | 'CAM02' | 'CAM02p'
ContrastFormula
'wcag2' | 'wcag3'
Output format examples (W3C CSS Color Level 4)
| Format | Example |
|---|---|
| HEX | #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) |
| OKLAB | oklab(100% 0 0) |
| OKLCH | oklch(100% 0 360deg) |
| CAM02 | jab(100% 0 0) |
| CAM02p | jch(100% 0 360deg) |
contrastColors shape
[
{ background: string },
{ name: string, values: Array<{ name: string, contrast: number, value: string }> },
...
]contrastColorPairs shape
{ [tokenName: string]: string }e.g. { "gray100": "#e0e0e0", "blue200": "#8d63ff" }.