Archived:
🚚 This content is being maintained elsewhere. Our notes are likely out-of-date.
See the Sass blog post for details.
(Issue)
This proposal adds Sass support for several new CSS color spaces defined in CSS Color Level 4, including access to non-RGB color models and colors outside the sRGB gamut.
Table of Contents ¶
See auto-generated TOC in header.
Background ¶
This section is non-normative.
When working with color on the web, there are a few important terms:
- A color model is a mathematical approach to representing colors and their relationships. Historically, RGB has been the dominant color model for both computer monitors and web browsers. Lately, CIELab and OKLab models have shown significant benefits by providing a more perceptually uniform distribution of colors, so that similar mathematical adjustments achieve visually similar results.
- A color space is the result of projecting a color model into a coordinate
system. In CSS, each color format describes a specific (and often unique)
color space. For example,
rgb()projects the RGB color model into a cubic coordinate system, whilehsl()projects the same model into a cylindrical (polar-angle) space. Different spaces will have different benefits when adjusting or interpolating colors for different purposes. - A color gamut is the full range of colors that can be described in a color space. Historically, all CSS spaces have been limited to the same sRGB gamut. However, modern computer monitors often support wider gamuts like display-p3.
Historically, CSS has only provided authors with color formats using the RGB model, limited to the sRGB gamut. As CSS is used for more applications (such as print) and displays continue to improve, those limitations become more clear. The CSS Color Level 4 specification defines a number of new color spaces, each with its own syntax, representing both new color models and wider RGB gamuts.
Since all CSS colors up until this point have been restricted to RGB math in the sRGB gamut, Sass has treated all color formats as interchangeable. That has allowed authors to inspect and manipulate colors in any space, without careful management or gamut mapping. It has also allowed Sass to output the most browser-compatible CSS format for any given color.
In order to support the color spaces in CSS Sass will need to start tracking the space and gamut associated with any given color, and provide author tools for managing those color spaces. In addition to supporting the new color space functions, we plan to update all functions in the color module, and provide some additional space and gamut management and inspection functions.
Summary ¶
This section is non-normative.
This proposal defines Sassified versions of all the color functions in CSS Color Level 4. Since the CIE color space defines the entire gamut of visible color, much larger than the target sRGB gamut, out-of-range color definitions will be clipped using a relative-colorimetric approach that leaves in-gamut colors unaffected.
There are several rules of thumb for working with color spaces in Sass:
- The
rgb,hsl, andhwbspaces are considered ‘legacy spaces’, and will often get special handling for the sake of backwards compatibility. Colors defined using hex notation or CSS color names are considered part of thergbcolor space. Legacy colors are emitted in the most compatible format. - Otherwise, any color defined in a given space will remain in that space, and be emitted in that space.
- Authors can explicitly convert a color’s space by using
color.to-space(). This can be useful to enforce non-legacy behavior, by converting into a non-legacy space, or to ensure the color output is compatible with older browsers by converting colors into a legacy space before emitting. - The
srgbcolor space is equivalent torgb, except that one is a legacy space, and the other is not. - Color functions that allow specifying a color space for manipulation will
always use the source color space by default. When an explicit space is
provided for manipulation, the resulting color will still be returned in the
same space as the origin color. For
color.mix(), the first color parameter is considered the origin color. - All legacy and RGB spaces represent bounded gamuts of color. When converting (
colors into a bounded gamut space, out-of-gamut channel values are maintained
whenever possible. The only exception is that
hslandhwbcolor spaces are not able to express out-of-gamut color, so converting colors into those spaces will require gamut-mapping. - Mapping colors into a gamut is a lossy process. Whenever possible, it should
be left to the browser, which can map colors based on a given user’s display
capabilities. However, authors can perform explicit gamut mapping with the
color.to-gamut()function. - Legacy browsers require colors in the
srgbgamut. However, most modern displays support the widerdisplay-p3gamut.
The oklab() (cubic) and oklch() (cylindrical) functions provide access to
an unbounded gamut of colors in perceptually uniform space. Authors can use
these functions to define reliably uniform colors. For example, the following
colors are perceptually similar in luminosity and saturation:
$pink: oklch(64% 0.196 353); // hsl(329.8 70.29% 58.75%)
$blue: oklch(64% 0.196 253); // hsl(207.4 99.22% 50.69%)
The oklch() format uses consistent ‘lightness’ and ‘chroma’ values, while the
hsl() format shows dramatic changes in both ‘lightness’ and ‘saturation’.
As such, oklch is often the best space for consistent transforms.
The new color() function provides access to a number of specialty spaces.
Most notably, display-p3 is a common space for wide-gamut monitors, making
it likely one of the more popular options for authors who simply want access to
a wider range of colors. For example, P3 greens are significantly ‘brighter’
and more saturated than the greens available in sRGB:
$fallback-green: rgb(0% 100% 0%);
$brighter-green: color(display-p3 0 1 0);
By default, all Sass color transformations are handled and returned in the
color space of the original color parameter. However, all relevant functions
now allow specifying an explicit color space for transformations. For example,
lightness & darkness adjustments are most reliable in oklch:
$brand: hsl(0 100% 25.1%);
// result: hsl(0 100% 50.1%)
$hsl-lightness: color.adjust($brand, $lightness: 25%);
// result: hsl(6.57 61.7% 57.2%)
$oklch-lightness: color.adjust($brand, $lightness: 25%, $space: oklch);
Note that the returned color is still emitted in the original color space, even when the adjustment is performed in a different space.
Design Decisions ¶
Most of the design decisions involved in the proposal are based on the CSS Color Level 4 specification, which we have tried to emulate as closely as possible, while maintaining support for legacy projects. In some cases, that required major changes to the way Sass handles colors:
- RGB channel values are no longer clamped to the gamut of a color space,
except for the
hslandhwbspaces, which are unable to represent out-of-gamut colors. By default Sass will output CSS with out-of-gamut colors, because browsers can provide better gamut mapping based on the user device capabilities. However, authors can use the providedcolor.to-gamut()function to enforce mapping a color into a specific gamut. - RGB channel values are no longer rounded to the nearest integer, since the spec now requires maintaining precision wherever possible. This is especially important in RGB spaces, where color distribution is inconsistent.
We are not attempting to support all of CSS Color Level 5 at this
point, since it is not yet implemented in browsers. However, we have used it as
a reference while updating color manipulation functions such as color.mix().
Different color spaces often represent different color-gamuts, which can present
a new set of problems for authors. Some color manipulations are best handled
in a wide-gamut space like oklch, but then need to be mapped back to a
narrower gamut like srgb for legacy browsers. We established the following
guidelines for color conversion and mapping in Sass color functions:
- Every color function returns a color in the same space as the original color,
no matter what space was used for transformations. The only exception is
color.to-space(), which can be used for manual space conversion. Functions that accept two colors (e.g.color.mix()) return a color in the same space as the first color argument. - No color function performs gamut-mapping on out-of-gamut channels, except
color.to-gamut(), which can be used for manual gamut-mapping.
Unfortunately, the legacy hsl and hwb color spaces are not able to express
out-of-gamut colors, even with out-of-range channel values, so any conversion
into those spaces (using color.to-gamut() or manipulating colors in those
spaces) must always require gamut-mapping into the srgb gamut. This is
defined as part of the CSS Color Level 4 specification for
converting colors.
Definitions ¶
Color ¶
Note that channel values are stored as specified, maintaining precision where possible, even when the values are out-of-gamut for the known color space.
A color is an object with several parts:
-
A color space that is either a known color space or an unquoted string.
-
An ordered list of numeric channel values.
-
A floating-point number alpha value between
0-1, inclusive.While it’s valid to specify numbers outside this range, they are meaningless, and can be clamped by input functions when generating a color.
Legacy Color ¶
Both Sass and CSS have similar legacy behavior that relies on all colors being interchangeable as part of a shared
srgbcolor space. While the new color formats will opt users into new default behavior, some legacy color formats behave differently for the sake of backwards-compatibility.
Colors in the rgb, hsl, or hwb color spaces are
considered legacy colors. The output of a legacy color is not required to
match the input color space, and several color functions maintain legacy
behavior when manipulating legacy colors.
This includes colors defined using the CSS color names, hex syntax,
rgb(),rgba(),hsl(),hsla(), orhwb()– along with colors that are manually converted into legacy color spaces.
Known Color Space ¶
Sass colors are stored as part of a known color space. Each space has a name and an ordered list of associated channels. Each channel has a name and position index (1-indexed) defined by the space and the order of channels in that space, and a number value with units matching those allowed by the space. Space and channel names match unquoted strings, ignoring case. They are always emitted as unquoted lowercase strings by inspection functions.
Values outside a bounded gamut range are valid, and remain un-clamped, but are considered out of gamut for the given color space. If the channel is bounded, or has a percentage mapping with a lower-boundary of zero, then the channel is considered scalable.
Some color spaces use a polar angle value for the hue channel. Polar-angle
hues represent an angle position around a given hue wheel, using a CSS <angle>
dimension or number (interpreted as a deg value), and are serialized with
deg units.
Colors specified using a CSS color keyword or the hex notation are converted
to rgb and serialized as part of the rgb color space.
The known color spaces and their channels are:
-
rgb(RGB, legacy):red,green,blue:-
gamut: bounded
-
number:
[0,255]Percentages
[0%,100%]map to the[0,255]range.
-
-
hwb(RGB, legacy):hue: polar anglewhiteness,blackness:- gamut: bounded
- percentage:
[0%,100%]
-
hsl(RGB, legacy):hue: polar anglesaturation,lightness:- gamut: bounded
- percentage:
[0%,100%]
-
srgb,srgb-linear,display-p3,a98-rgb,prophoto-rgb,rec2020(RGB):red,green,blue:-
gamut: bounded
-
number:
[0,1]Percentages
[0%,100%]map to the[0,1]range.
-
-
xyz,xyz-d50,xyz-d65:x,y,z:-
gamut: un-bounded, scalable
-
number:
[0,1]Percentages
[0%,100%]map to the[0,1]range.
-
-
lab:-
lightness:-
gamut: un-bounded, scalable
-
number:
[0,100]Percentages
[0%,100%]map to the[0,100]range.
-
-
a,b:-
gamut: un-bounded
-
number:
[-125,125]Percentages
[-100%,100%]map to the[-125,125]range.
-
-
-
lch:-
lightness:-
gamut: un-bounded, scalable
-
number:
[0,100]Percentages
[0%,100%]map to the[0,100]range.
-
-
chroma:-
gamut: un-bounded, scalable
-
number:
[0,150]Percentages
[0%,100%]map to the[0,150]range.
-
-
hue: polar angle
-
-
oklab:-
lightness:-
gamut: un-bounded, scalable
-
number:
[0,1]Percentages
[0%,100%]map to the[0,1]range.
-
-
a,b:-
gamut: un-bounded
-
number:
[-0.4,0.4]Percentages
[-100%,100%]map to the[-0.4,0.4]range.
-
-
-
oklch:-
lightness:-
gamut: un-bounded, scalable
-
number:
[0,1]Percentages
[0%,100%]map to the[0,1]range.
-
-
chroma:-
gamut: un-bounded, scalable
-
number:
[0,0.4]Percentages
[0%,100%]map to the[0,0.4]range.
-
-
hue: polar angle
-
Predefined Color Spaces ¶
‘Predefined color spaces’ can be described using the
color()function.
The predefined RGB spaces are:
srgbsrgb-lineardisplay-p3a98-rgbprophoto-rgbrec2020
The predefined XYZ spaces are:
xyzxyz-d50xyz-d65(an alias forxyz)
Missing Components ¶
In some cases, a color can have one or more missing components (channel or
alpha values). Missing components are represented by the keyword none. When
interpolating between colors, the missing component is replaced by the value
of that same component in the other color. In all other cases, the missing
value is treated as 0.
For the sake of interpolating between colors with missing components, the following analogous components are defined by CSS Color Level 4:
| Category | Components | | Reds | r,x | | Greens | g,y | | Blues | b,z | | Lightness | l | | Colorfulness | c,s | | Hue | h |
If any analogous missing components are present, they will be carried forward and re-inserted in the converted color before linear interpolation takes place.
Powerless Components ¶
In some color spaces, it is possible for a channel value to become ‘powerless’
in certain circumstances. If a powerless channel value is produced as the
result of color-space conversion, then that value is considered to be
missing, and is replaced by the keyword none.
-
hsl:-
If the
saturationvalue is0%, then thehuechannel is powerless. -
If the
lightnessvalue is either0%or100%, then both thehueandsaturationvalues are powerless.
-
-
hwb:- If the combined
whitenessandblacknessvalues (after normalization) are equal to100%, then thehuechannel is powerless.
- If the combined
-
lab/oklab:- If the
lightnessvalue is0%, then both theaandbchannels are powerless.
The current spec has an inline issue asking if high values of
lightness(whites) should make theaandbvalues powerless: See: https://drafts.csswg.org/css-color-4/#issue-e05ac5c3 - If the
-
lch/oklch:-
If the
chromavalue is 0%, then thehuechannel is powerless. -
If the
lightnessvalue is0%, then both thehueandchromachannels are powerless.
The current spec has an inline issue asking if high values of
lightness(whites) should make thehueandchromavalues powerless. See: https://drafts.csswg.org/css-color-4/#issue-1813c844 -
Color Interpolation Method ¶
A color interpolation method is a space-separated list of unquoted strings, parsed according to the following syntax definition:
ColorInterpolationMethod ::= ‘in’ (
RectangularColorSpace
| PolarColorSpace HueInterpolationMethod?
)
RectangularColorSpace ::= ‘srgb’
| ‘srgb-linear’
| ‘lab’
| ‘oklab’
| ‘xyz’
| ‘xyz-d50’
| ‘xyz-d65’
PolarColorSpace ::= ‘hsl’
| ‘hwb’
| ‘lch’
| ‘oklch’
HueInterpolationMethod ::= (
‘shorter’
| ‘longer’
| ‘increasing’
| ‘decreasing’
| ‘specified’
) ‘hue’
The resulting interpolation color space is the known color space whose name
is given by either the PolarColorSpace or RectangularColorSpace productions.
Different color interpolation methods provide different advantages. For that reason, individual color procedures and functions can establish their own color interpolation defaults, or provide a syntax for authors to explicitly choose the method that best fits their need. The CSS Color Level 4 specification provides additional guidance for determining appropriate defaults.
Procedures ¶
Converting a Color ¶
Colors can be converted from one known color space to another. Algorithms for
color conversion are defined in the CSS Color Level 4
specification. Each algorithm takes a color origin-color, and a known color
space target-space, and returns a color output-color.
The algorithms are:
For additional details, see the Sample code for color conversions.
Gamut Mapping ¶
Some [known color spaces] describe limited color gamuts. If a color is ‘out of gamut’ for a particular space (most often because of conversion from a larger-gamut color-space), it can be useful to ‘map’ that color to the nearest available ‘in-gamut’ color. Gamut mapping is the process of finding an in-gamut color with the least objectionable change in visual appearance.
Gamut mapping in Sass follows the CSS gamut mapping algorithm.
This procedure accepts a color origin in the color space origin color space,
and a destination color space destination. It returns the result of a
CSS gamut map procedure, which is a color in the destination color
space.
This algorithm implements a relative colorimetric intent, and colors inside the destination gamut are unchanged. Since the process is lossy, authors should be encouraged to let the browser handle gamut mapping when possible.
Parsing Color Components ¶
This procedure accepts an input parameter to parse, along with an optional
known color space space. It throws common parse errors when necessary, and
returns either null or three values: an optional color space, a list of
channel numbers, and a floating-point alpha value.
This supports both the space-specific color formats like
hsl()andrgb(), where the space is determined by the function, as well as the syntax ofcolor(), where the space is included as one of the input arguments (and may be a user-defined space).
The procedure is:
-
If
inputis a special variable string, returnnull. -
Let
include-spacebe true ifspaceis null, and false otherwise. -
If
inputis a bracketed list, or a list with a separator other than ‘slash’ or ‘space’, throw an error. -
If
inputis a slash-separated list:-
If
inputdoesn’t have exactly two elements, throw an error. -
Otherwise, let
componentsbe the first element andalphathe second element ofinput.
-
-
Otherwise:
-
Let
componentsbe an unbracketed space separated list of all except the last element ofinput. -
If the last element of
inputis an unquoted string that contains/:-
Let
split-lastbe the result callingstring.split()with the last element ofinputas the string to split, and/as the separator. -
If there are not two items in
split-last, throw an error. -
If either item in
split-lastcan be coerced to a number, replace the current value of the item with the resulting number value. -
Let
alphabe the second element insplit-last, and append the first element ofsplit-lasttocomponents.
This solves for a legacy handling of
/in Sass that would produce an unquoted string when the alpha value is a CSS function such asvar()or when either value is the keywordnone. -
-
Otherwise, if the last element of
inputhas preserved its status as two slash-separated numbers:- Let
alphabe the number after the slash, and append the number before the slash tocomponents.
- Let
-
Otherwise, append the last element of
inputtocomponents.
-
-
If
componentsis an empty list, throw an error. -
If
componentsis a special variable string:- Let
channelsbe the value ofcomponents.
- Let
-
Otherwise:
-
If
componentsis not an unbracketed space-separated list, throw an error. -
If
spaceis null:-
Let
input-spacebe the first element incomponents. -
If
input-spaceis not either a known color space or an unquoted string, throw an error. -
Let
spacebe the value ofinput-space. -
Let
channelsbe an unbracketed space-separated list with the remaining elements fromcomponents.
-
-
Otherwise, let
channelsbe the value ofcomponents. -
Let
expectedbe the number of channels inspaceifspaceis a known color space, and null otherwise. -
If any element of channels is not either a number, a special variable string, a special number string, or the keyword
none, throw an error.
-
-
If
alphais null, letalphabe1. -
Otherwise, If
alphais not a special number string:-
If
alphais a number, setalphato the result of percent-convertingalphawith a max of 1, and then clamping the value between 0 and 1, inclusive. -
Otherwise, throw an error.
-
-
If
spaceorchannelsis a special variable string, or ifalphais a special number string, returnnull. -
If any element of
channelsis a special number string, returnnull.Doing this late in the process allows us to throw any obvious syntax errors, even for colors that can’t be fully resolved on the server.
-
If
expectedis not null, and the length ofchannelsis not equal toexpected, throw an error.Once special values have been handled, any colors remaining should have exactly the expected number of channels.
-
Set
normalto the result of normalizingchannelsinspace. -
If
include-spaceis true, letparsedbe an unbracketed space-separated list withspaceas the first element, andnormalas the second. -
Otherwise, let
parsedbe the value ofnormal. -
Return an unbracketed slash-separated list with
parsedas the first element, andalphaas the second.This results in valid CSS color-value output, while also grouping space, channels, and alpha as separate elements in nested lists. Alternately, we could allow
parsedto be a single flat list, even when the color-space is included?
Percent-Converting a Number ¶
This algorithm takes a SassScript number number and a number max. It returns
a number relative to the range [0,max] without clamping.
In order to support both out-of-gamut channels and unbounded ranges, this value is no longer clamped between 0 and
max
-
If
numberhas units other than%, throw an error. -
If
numberhas the unit%, setnumbertonumber * max / 100, without units. -
Return
number.
Normalizing Color Channels ¶
This process accepts an ordered list channels to validate, and a known color
space space to normalize against. It throws an error if any channel is
invalid for a known color space, or returns a normalized list of valid channels.
-
If
spaceis not a known color space or an unquoted string, throw an error. -
If
channelsis not an ordered list, throw an error. -
Let
normalbe an empty list. -
For each
channelinchannels:-
If
channelis not a number or the keywordnone, throw an error. -
If
channelis the keywordnone, or ifspaceis not a known color space, appendchannelas the next item innormal.We don’t attempt further channel normalization for unknown color spaces.
-
Otherwise:
-
Let
validbe the corresponding channel defined by the known color spacespace. -
If
validis a polar-anglehue:-
Let
normal-channelbe the result of convertingchanneltodegallowing unitless. -
Append
normal-channelas the next item innormal.
Normalizing the result into a half-open range of
[0,360)would be a lossy transformation, since some forms of hue interpolation require the specified hue values. -
-
Otherwise, if
validrequires a percentage:-
If
channelis a number with units other than%, throw an error. -
Append
channelas the next item innormal.
-
-
Otherwise:
-
Set
channelto the result of percent-convertingchannelwith amaxdefined by thevalidchannel range. -
Append
channelas the next item innormal.
-
-
-
-
Return
normal.
Interpolating Colors ¶
This procedure is based on the color interpolation procedures defined in CSS Color Level 4.
This procedure accepts two color arguments (color1 and color2), a
[color interpolation method] method, and a percentage weight for color1
in the mix. It returns a new color mix that represents the appropriate mix of
input colors.
-
If either
color1orcolor2is not a color, throw an error. -
If
weightis null, setweightto50%. -
Set
weightto the result of percent-convertingweightwith a max of 1, and then clamping the value between 0 and 1, inclusive. -
Otherwise:
-
If
methodis not a color interpolation method, throw an error. -
Let
spacebe the interpolation color space specified inmethod. -
If
spaceis a PolarColorSpace:- Let
hue-arcbe theHueInterpolationMethodspecified inmethod, orshorterif no hue interpolation is specified.
- Let
-
-
For each
colorofcolor1andcolor2:-
Let
origin-spacebecolor’s color space. -
If
origin-spaceis not a known color space, throw an error. -
Let
missingbe a list of channel names incolorthat are missing. -
Set
colorto the results of convertingcolorintospace. -
For each
channelinmissing:- If
spacehas an analogous component tochannel, setchanneltonone.
- If
-
If any
componentofcolorisnone, set thatcomponentto the value of the corresponding component in the other color.If both values are
none, the interpolation result for that component will also benone. -
Set
colorto the result of premultiplyingcolor.
-
-
Let
mixbe a new color in the known color spacespace, withnonefor alpha and all channel values. -
For each
channelofmix:-
Let
channel1andchannel2be the corresponding channel values incolor1andcolor2respectively. -
If
channelrepresents a hue angle, setchannel1andchannel2respectively to the results of hue interpolation withchannel1ashue1,channel2ashue2, using thehue-arcmethod. -
Set
channelto the result of calculating(channel1 * weight) + (channel2 * (1 - weight)).Channel rounding has been removed, since it is a lossy transform.
-
-
Return the result of un-premultiplying
mix.
Premultiply Transparent Colors ¶
When the colors being interpolated are not fully opaque, they are transformed
into premultiplied color values. This process accepts a single color and
updates the channel values if necessary, returning a new color with
premultiplied channels.
-
If the
colorhas analphavalue of 1 ornone, returncolorunchanged.It’s not possible to premultiply channels relative to a missing alpha, and no multiplication is necessary with full opacity.
-
Otherwise, for each
channelincolor:-
If the
channelvalue isnone, or ifchannelrepresents a polar-anglehue, keep the original value ofchannel. -
Otherwise, set
channelto the result of multiplying thechannelvalue by thealphavalue.
-
-
Return the resulting
colorwith premultiplied channels.
The same process can be run in reverse, to un-premultiply the channels of a
given color:
-
If
colorhas analphavalue of 1, 0, ornone, returncolorunchanged. -
Otherwise, for each
channelincolor:-
If the
channelvaluenone, or ifchannelrepresents a polar-anglehue, keep the original value ofchannel. -
Otherwise, set
channelto the result of dividing the premultipliedchannelvalue by thealphavalue.
-
-
Return the resulting
colorwith un-premultiplied channels.
Hue Interpolation ¶
When interpolating between polar-angle hue channels, there are multiple ‘directions’ the interpolation could move, following different logical rules.
This process accepts two hue angles (hue1 and hue2), and returns both hues
adjusted according to the given method. When no hue interpolation method is
specified, the default is shorter.
The process for each hue interpolation method is defined
in CSS Color Level 4. If the method is not the value 'specified',
both hue angles are set to angle % 360deg prior to interpolation.
Deprecated Functions ¶
Individual color-channel functions defined globally or in the color module are
deprecated in favor of the new color.channel() function. That includes:
color.red()/red()color.green()/green()color.blue()/blue()color.hue()/hue()color.saturation()/saturation()color.lightness()/lightness()color.whiteness()color.blackness()
Legacy global color functions are also deprecated:
adjust-hue()saturate()/desaturate()transparentize()/opacify()/fade-in()lighten()/darken()adjust-color()/change-color()/scale-color()mix()/complement()/invert()/grayscale()
While deprecated, if the specified color argument is not a legacy color, throw an error.
New Color Module Functions ¶
These new functions are part of the built-in sass:color module.
color.space() ¶
-
space($color)-
If
$coloris not a color, throw an error. -
Return an unquoted string with the name of
$colors known color space.
-
color.to-space() ¶
-
to-space($color, $space)-
If
$coloris not a color, throw an error. -
Let
origin-spacebe the result of callingcolor.space($color). -
If
origin-space == $space, return$color.This allows unknown spaces, as long as they match the origin space.
-
If either
origin-spaceor$spaceis not a known color space, throw an error. -
Return the result of converting the
origin-color$colorto thetarget-space$space.
-
color.is-legacy() ¶
-
is-legacy($color)-
If
$coloris not a color, throw an error. -
Return
trueif$coloris a legacy color, orfalseotherwise.
-
color.is-powerless() ¶
-
is-powerless($color, $channel, $space: null)-
If
$coloris not a color, throw an error. -
If
$spaceis null:- Let
colorbe$color, and letspacebe the result of callingspace($color).
- Let
-
Otherwise:
- Let
colorbe the result of callingcolor.to-space($color, $space), and letspacebe$space.
- Let
-
If
spaceis not a known color space, throw an error. -
If
$channelis not the name of a channel in the color-spacespace, throw an error. -
Return
trueif the channel$channelis powerless incolor, otherwise returnfalse.
-
color.is-in-gamut() ¶
-
is-in-gamut($color, $space: null)-
If
$coloris not a color, throw an error. -
Let
spacebe the value of$spaceif specified, or the result of callingcolor.space($color)otherwise. -
If
spaceis not a known color space, throw an error. -
Let
colorbe the result of callingcolor.to-space($color, space). -
For all bounded channels in
space, if the associated channel value in$coloris outside the bounded range, returnfalse. -
Otherwise, return
true.
-
color.to-gamut() ¶
-
to-gamut($color, $space: null)-
If
$coloris not a color, throw an error. -
Let
origin-spacebe the result of callingcolor.space($color). -
Let
target-spacebe the value of$spaceif specified, or the value oforigin-spaceotherwise. -
If
target-spaceis not a known color space, throw an error. -
Return the result of gamut mapping with
$coloras the origin color,origin-spaceas the origin color space, andtarget-spaceas the destination color space.
-
color.channel() ¶
Note that channel values are stored as specified, even if those values are out-of-gamut for the known color space used. Similarly, this color-channel inspection function may return out-of-gamut channel values.
-
channel($color, $channel, $space: null)-
If
$spaceis null:- Let
spacebe the result of callingcolor.space($color), and letcolorbe the value of$color.
- Let
-
Otherwise:
- Let
colorbe the result of callingcolor.to-space($color, $space), and letspacebe the value of$space.
- Let
-
Let
channelsbe a map 1-indexed integer channel keys and their corresponding values incolor. -
If
spaceis a known color space:-
Let
named-channelsbe a map of channel names defined byspace, and their corresponding values incolor. -
Set
channelsto the result ofmap.merge(channels, named-channels).
-
-
Let
valuebe the result of callingmap.get(channels, $channel). -
If
valueisnull, throw an error. -
Otherwise, return
value.
-
Modified Color Module Functions ¶
color.hwb() ¶
These functions are now deprecated. Authors should use global hwb() instead.
Channel clamping and scaling have been removed from the global function, since we now allow out-of-gamut color-channels to be stored as specified.
-
hwb($channels)- Return the result of calling the global function
hwb($channels).
- Return the result of calling the global function
-
hwb($hue, $whiteness, $blackness, $alpha: 1)- Return the result of calling the global function
hwb($hue $whiteness $blackness / $alpha).
- Return the result of calling the global function
color.mix() ¶
mix($color1, $color2,
$weight: 50%,
$method: null)
-
If either
$color1or$color2is not a color with a known color space, throw an error. -
If
$methodis null:-
If either
$color1or$color2is not a legacy color, throw an error.Method is required for non-legacy colors. This matches the
color-mix()function defined in Colors Level 5, and allows us to add additional default behavior in the future. -
Let
color1andcolor2be the result of converting$color1and$color2respectively into thergbknown color space. -
Let
weight-scalebe the result of percent-converting$weightwith amaxof 1, and clamping the value between 0 and 1, inclusive. -
Let
normal-weightbeweight-scale * 2 - 1. -
Let
alpha1andalpha2be the alpha values ofcolor1andcolor2, respectively. -
Let
alpha-distancebealpha1 - alpha2. -
Let
weight-by-distancebenormal-weight * alpha-distance. -
If
weight-by-distance == -1, letcombined-weight1benormal-weight. -
Otherwise:
-
Let
weight-distance-sumbenormal-weight + alpha-distance. -
Let
combined-weight1beweight-distance-sum / (1 + weight-by-distance).
-
-
Let
weight1be(combined-weight1 + 1) / 2. -
Let
weight2be1 - weight1. -
Let
red1andred2be the red channels ofcolor1andcolor2respectively. -
Let
redbe the result of roundingred1 * weight1 + red2 * weight2to the nearest integer. -
Let
green1andgreen2be the green channels ofcolor1andcolor2respectively. -
Let
greenbe the result of roundinggreen1 * weight1 + green2 * weight2to the nearest integer. -
Let
blue1andblue2be the blue channels ofcolor1andcolor2respectively. -
Let
bluebe the result of roundingblue1 * weight1 + blue2 * weight2to the nearest integer. -
Let
alphabealpha1 * weight-scale + alpha2 * (1 - weight-scale). -
Return a legacy color in the
rgbspace, with the givenred,green, andbluechannels, andalphavalue.
-
-
Otherwise:
-
If
$methodis not a color interpolation method, throw an error. -
Let
spacebe the known color space specified in$method.
-
-
If
spaceis unquoted andspace == hslorspace == hwb:- Let
color1andcolor2be the result of converting and gamut mapping$color1and$color2respectively intospace.
These color spaces are unable to express colors outside the
srgbgamut. - Let
-
Otherwise, let
color1andcolor2be the result of converting$color1and$color2respectively intospace. -
Return the result of interpolating between
color1andcolor2with the specified$weightand$method.
color.change() ¶
change($color, $args...)
This function is also available as a global function named change-color().
-
If
$coloris not a color, throw an error. -
If any item in
$argsis not a keyword argument, throw an error. -
Let
spacebe$color’s color space. -
If the keyword argument
$spaceis specified in$args:-
If
$spaceis not a known color space, and$space != space, throw an error. -
Set
spaceto the value of$space. -
Let
colorbe the result of converting$colortospace.
-
-
Otherwise, let
colorbe the value of$color. -
Let
legacybetrueif$coloris a legacy color andspaceis a legacy color space, andfalseotherwise. -
Let
alphabecolor’s alpha property. -
If the keyword argument
$alphais specified in$args:- Set
alphato the result of percent-converting$alpha, and clamping it between 0 and 1 (inclusive).
- Set
-
Let
channel-argsbe the remaining keyword arguments in$args, not including$spaceor$alphaarguments. -
Let
channelsbe a list of thecolor’s channels. -
For each keyword
keyand valuenewinchannel-args:-
If
keyis a string in the formatchannel<integer>, setkeyto the value of<integer>.This allows e.g.
color.change($color, $channel1: 0.25)for changing color channels in unknown color spaces. -
If
keyis not the name or index of a channel inchannels, throw an error. -
Set the corresponding
channelinchannelstonew.
-
-
If
spaceis a known color space, setchannelsto the result of normalizingchannelsinspace. -
Return a color in color space
space, withchannelschannels, and an alpha ofalpha.
color.adjust() ¶
adjust($color, $args...)
This function is also available as a global function named adjust-color().
-
If
$coloris not a color, throw an error. -
If any item in
$argsis not a keyword argument, throw an error. -
Let
spacebe$color’s color space. -
If the keyword argument
$spaceis specified in$args:-
If
$spaceis not a known color space, and$space != space, throw an error. -
Set
spaceto the value of$space. -
Let
colorbe the result of converting$colortospace.
-
-
Otherwise, let
colorbe the value of$color. -
Let
legacybetrueif$coloris a legacy color andspaceis a legacy color space, andfalseotherwise. -
Let
alphabecolor’s alpha property. -
If the keyword argument
$alphais specified in$args:-
If
$alphais not a unitless number between-1and1(inclusive), throw an error. -
Set
alphato the value of$alpha + alphaclamped between 0 and 1.
-
-
Let
channel-argsbe the remaining keyword arguments in$args, not including$spaceor$alphaarguments. -
Let
channelsbe a list of thecolor’s channels. -
For each keyword
keyand valueadjustinchannel-args:-
If
keyis a string in the formatchannel<integer>, setkeyto the value of<integer>.This allows e.g.
color.change($color, $channel1: 0.25)for changing color channels in unknown color spaces. -
If
keyis not the name or index of a channel inchannels, throw an error. -
Set the corresponding
channelinchannelstochannel + adjust, treating anynonekeyword as a value of0.
-
-
If
spaceis a known color space, setchannelsto the result of normalizingchannelsinspace. -
Return a color in color space
space, withchannelschannels, and an alpha ofalpha.
color.scale() ¶
scale($color, $args...)
This function is also available as a global function named scale-color().
-
If
$coloris not a color, throw an error. -
If any item in
$argsis not a keyword argument, throw an error. -
Let
spacebe$color’s known color space. -
If the keyword argument
$spaceis specified in$args:-
If
$spaceis not a known color space, throw an error. -
Set
spaceto the value of$space. -
Let
colorbe the result of converting$colortospace.
-
-
Otherwise, let
colorbe the value of$color. -
Let
legacybetrueif$coloris a legacy color andspaceis a legacy color space, andfalseotherwise. -
Let
alphabecolor’s alpha property. -
If the keyword argument
$alphais specified in$args:-
If
$alphais not a unitless number between-1and1(inclusive), throw an error. -
Set
alphato the result of [scaling]alphaby$alphawithmax1, treating anynonekeyword as a value of0.
-
-
Let
channel-argsbe the remaining keyword arguments in$args, not including$spaceor$alphaarguments. -
Let
channelsbe a list of thecolor’s channels. -
For each keyword
scaleinchannel-args:-
If
scaleis not the name of a bounded or percentage-mapped channel inchannels, throw an error. -
Set the corresponding
channelinchannelsto the result of [scaling]channelbyscalewith amaxdefined by the channel boundary.
-
-
Let
normalbe the result of normalizingchannels. -
Return a color in color space
space, withnormalchannels, and an alpha ofalpha.
color.complement() ¶
complement($color, $space: null)
This function is also available as a global function named complement().
-
If
$coloris not a color, throw an error. -
If
$spaceis null:-
If
$coloris a legacy color, letspacebehsl. -
Otherwise, throw an error.
-
-
Otherwise:
-
If
$spaceis not a known color space with a polar-angle hue channel, throw an error.This currently allows
hsl,hwb,lch, andoklch. We may decide to provide additional options in the future. -
Let
spacebe the value of$space.
-
-
Return the result of calling
color.adjust($color, $hue: 180deg, $space: space).
color.invert() ¶
invert($color, $space: null)
This function is also available as a global function named invert().
-
If
$coloris not a color, throw an error. -
If
$spaceis null:-
If
$coloris a legacy color, letspacebergb, and letmix-spacebe null.This allows us to also enforce legacy behavior in the final weighted mix.
-
Otherwise, throw an error.
-
-
Otherwise:
-
If
$spaceis not a known color space, throw an error. -
Let
spacebe$space, and letmix-spacebe$space.
-
-
Let
colorbe the result of converting and gamut mapping$colorinto the color spacespace. -
If
space == hwb:-
Let
hue,whiteness, andblacknessbe the three elements ofcolor’s channels. -
Let
hue-outbe the result of(hue + 180deg) % 360deg. -
Let
graybe the result ofwhiteness + blackness. -
Let
whitebegray - whiteness, and letblackbegray - blackness. -
Let
invertbe the result of callingcolor.change(color, $hue: hue-out, $whiteness: white, $blackness: black).
-
-
Otherwise:
-
Let
invertbe the value ofcolor. -
For each
channelelement incolor’s channels:-
If
channelrepresents a polar-angle hue:- Let
newbe(channel + 180deg) % 360deg.
- Let
-
Otherwise, if
channelrepresents either chroma or saturation:- Let
newbechannel.
- Let
-
Otherwise:
-
Let
minandmaxbe the minimum and maximum values defined forchannelinspace. -
Let
newbemax - channelifmin == 0, andchannel * -1otherwise.
-
-
Set the corresponding channel of
invertto benew.
-
-
-
Return the result of calling
color.mix(invert, color, $weight, mix-space).
color.grayscale() ¶
grayscale($color)
No space argument is provided, since the results should always be in gamut.
This function is also available as a global function named grayscale().
-
If
$coloris not a color, throw an error. -
If
$coloris a legacy color:- Return the result of converting
$colortohsl, and changing the ‘saturation’ channel to 0.
- Return the result of converting
-
Otherwise:
-
Let
originbe$color’s known color space. -
Let
colorbe the result of converting$colortooklch, and setting thechromachannel to 0. -
Return the result of converting
colortoorigin.
-
color.ie-hex-str() ¶
This function is also available as a global function named ie-hex-str(). Both
functions are deprecated.
ie-hex-str($color)
-
If
$coloris not a color, throw an error. -
Let
rgbbe the result of converting$colortorgb. -
Let
hex-listbe an empty list. -
For each
channelinrgba’s channels, as numbers:-
Let
hex-channelbe the hexadecimal representation ofchannel’s value. -
Append
hex-channelas the next item inhex-list.
-
-
Let
alphabergb’s alpha value. -
Let
hex-alphabe the hexadecimal representation ofalpha * 255. -
Append
hex-alphaas the next item inhex-list. -
Return the result of concatenating
hex-listinto a string.
New Global Functions ¶
These new CSS functions are provided globally.
hwb() ¶
-
hwb($channels)-
Let
componentsbe the result of parsing$channelswith anhwbspace. -
If
componentsis null, return a plain CSS function string with the name"hwb"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
hue,whiteness, andblacknessbe the three elements ofchannels.Channel clamping and scaling have been removed, since we now allow out-of-gamut color-channels to be stored as specified.
-
Return a legacy color in the
hwbspace, with the givenhue,whiteness, andblacknesschannels, andalphavalue.
-
lab() ¶
-
lab($channels)-
Let
componentsbe the result of parsing$channelsin anlabspace. -
If
componentsis null, return a plain CSS function string with the name"lab"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
lightness,a, andbbe the three elements ofchannels. -
Return a color in the
labknown color space, with the givenlightness,a, andbchannels, andalphavalue.
-
lch() ¶
-
lch($channels)-
Let
componentsbe the result of parsing$channelsin anlchspace. -
If
componentsis null, return a plain CSS function string with the name"lab"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
lightness,chroma, andhuebe the three elements ofchannels. -
Return a color in the
lchknown color space, with the givenlightness,chroma, andhuechannels, andalphavalue.
-
oklab() ¶
-
oklab($channels)-
Let
componentsbe the result of parsing$channelsin anoklabspace. -
If
componentsis null, return a plain CSS function string with the name"lab"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
lightness,a, andbbe the three elements ofchannels. -
Return a color in the
oklabknown color space, with the givenlightness,a, andbchannels, andalphavalue.
-
oklch() ¶
-
oklch($channels)-
Let
componentsbe the result of parsing$channelsin anoklchspace. -
If
componentsis null, return a plain CSS function string with the name"lab"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
lightness,chroma, andhuebe the three elements ofchannels. -
Return a color in the
oklchknown color space, with the givenlightness,chroma, andhuechannels, andalphavalue.
-
color() ¶
-
color($description)-
Let
componentsbe the result of parsing$descriptionwithout a space. -
If
componentsis null, return a plain CSS function string with the name"color"and the argument$description. -
Let
colorbe the first element andalphathe second element ofcomponents. -
Let
spacebe the first element andchannelsthe second element ofcolor. -
Return a color in
space, with the givenchannelsandalphavalue.
-
Modified Global Functions ¶
Any legacy global functions that are not explicitly updated here should continue to behave as alias functions for their appropriately updated counterparts.
Note that the new logic preserves decimal values in color channels, as well as preserving the initial color-space used in defining a color.
rgb() and rgba() ¶
The rgba() function is identical to rgb(), except that if it would return a
plain CSS function named "rgb" that function is named "rgba" instead.
-
rgb($red, $green, $blue, $alpha: 1)-
If any argument is a [special number], return a plain CSS function string with the name
"rgb"and the arguments$red,$green,$blue, and$alpha. -
If
$alphais not a number, throw an error. -
Let
alphabe the result of percent-convertingalphawith a max of 1, and then clamping the value between 0 and 1, inclusive. -
Let
red,green, andbluebe the three elements returned by normalizing($red, $green, $blue)inrgbcolor space. -
Return a legacy color in the
rgbspace, with the givenred,green, andbluechannels, andalphavalue.
-
-
rgb($red, $green, $blue)-
If any argument is a [special number], return a plain CSS function string with the name
"rgb"and the arguments$red,$green, and$blue. -
Otherwise, return the result of calling
rgb($red, $green, $blue, 1).
-
-
rgb($channels)-
Let
componentsbe the result of parsing$channelswith anrgbspace. -
If
componentsis null, return a plain CSS function string with the name"rgb"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
red,green, andbluebe the three elements ofchannels. -
Return the result of calling
rgb(red, green, blue, alpha).
-
-
rgb($color, $alpha)-
If either argument is a special variable string, return a plain CSS function string with the name
"rgb"and the same arguments. -
If
$coloris not a legacy color, throw an error. -
Return the result of calling
rgb()with$color’s red, green, and blue channels as unitless number arguments, and$alphaas the final argument.
-
hsl() and hsla() ¶
The hsla() function is identical to hsl(), except that if it would return a
plain CSS function named "hsl" that function is named "hsla" instead.
-
hsl($hue, $saturation, $lightness, $alpha: 1)-
If any argument is a [special number], return a plain CSS function string with the name
"hsl"and the arguments$hue,$saturation,$lightness, and$alpha. -
If
$alphais not a number, throw an error. -
Let
alphabe the result of percent-convertingalphawith a max of 1, and then clamping the value between 0 and 1, inclusive. -
Let
hue,saturation, andlightnessbe the three elements returned by normalizing($hue, $saturation, $lightness)inhslcolor space.
Clamping and conversion to rgb have been removed.
- Return a legacy color in the
hslspace, with the givenhue,saturation, andlightnesschannels, andalphavalue.
-
-
hsl($hue, $saturation, $lightness)-
If any argument is a [special number], return a plain CSS function string with the name
"hsl"and the arguments$hue,$saturation, and$lightness. -
Otherwise, return the result of calling
hsl($hue, $saturation, $lightness, 1).
-
-
hsl($hue, $saturation)-
If either argument is a special variable string, return a plain CSS function string with the name
"hsl"and the same arguments. -
Otherwise, throw an error.
-
-
hsl($channels)-
Let
componentsbe the result of parsing$channelswith anhslspace. -
If
componentsis null, return a plain CSS function string with the name"hsl"and the argument$channels. -
Let
channelsbe the first element andalphathe second element ofcomponents. -
Let
hue,saturation, andlightnessbe the three elements ofchannels. -
Return a legacy color in the
hslspace, with the givenhue,saturation, andlightnesschannels, andalphavalue.
-