
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@oddbird/blend
Advanced tools
CSS color spaces for Dart Sass…
CSS Color Module Level 4 & Level 5 include several new CSS color formats, new color-adjustment syntax, and a contrast function. Blend provides early access to many of these features, while working with Sass colors.
Note that conversion between color-spaces requires gamut-adjustments and rounding. While we use the same conversion math recommended for browsers, pre-processing can result in slight variations in each step. Converting a color from one format to another and back again, may result in slight differences.
To get started with new CSS color formats (and LCH in particular), check out the wonderful LCH Color Picker by Lea Verou.
We use the same conversion math, originally written in JS by Chris Lilley and Tab Atkins.
Download the files from GitHub, or install the npm package:
npm install @oddbird/blend [--save-dev]
Import with Dart Sass
@use '<path-to>/blend';
(CIE) LCH & Lab color-conversion into (sRGB) sass colors:
$cie-to-sass: (
blend.lch(30% 50 300),
blend.lab(60% -60 60),
blend.lch(60% 75 120, 50%), // as %
blend.lab(60% -60 60, 0.5), // or as fraction
);
Based on the proposed Level 5 color-contrast() function:
$contrast: (
// default black or white for best contrast
blend.contrast($color),
// highest contrast
blend.contrast($color, maroon, rebeccapurple, cyan),
// first color with contrast >= 4.5
blend.contrast($color, maroon, rebeccapurple, 4.5),
);
Inspect LCH & Lab values of Sass colors:
$inspect: (
blend.lightness($color),
blend.a($color),
blend.b($color),
blend.chroma($color),
blend.hue($color),
);
Relative Sass color adjustments using LCH & Lab channels
$adjust: (
// set chroma to 10
blend.set($color, $chroma: 10),
// adjust hue by -10
blend.adjust($color, $hue: -10),
// scale lightness 10% lighter
blend.scale($color, $lightness: 10%),
);
A relative-color shorthand, based on rough interpretation of the Level 5 relative color syntax:
$from: (
// set chroma to 20
blend.from($color, l, 20, h),
// linear adjustments to a channel
blend.from($color, l, c, h -60),
// relative scale, e.g. "half-way to white"
blend.from($color, l 50%, c, h),
// multiply the channel value
blend.from($color, 2l, c, h),
);
The initial version is mostly focused on CIE colors, but Level 4 includes an array of new formats. We're working on it.
See the full list of planned enhancements.
@use 'blend';
$new-formats: (
blend.hwb(120deg 15% 15%),
blend.color(display-p3 0.728 0.2824 0.4581),
blend.color(rec-2020 0.6431 0.2955 0.4324),
...,
);
$from-sass: (
blend.get($color, 'lch'),
blend.get($color, 'lab'),
blend.get($color, 'display-p3'),
...,
);
$output: (
blend.string($color, 'lch'),
blend.string($color, 'lab'),
blend.string($color, 'display-p3'),
...,
);
FAQs
New color formats, adjustments, and conversions in Sass
The npm package @oddbird/blend receives a total of 66 weekly downloads. As such, @oddbird/blend popularity was classified as not popular.
We found that @oddbird/blend demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.