Unicolour ❯ WXY colour space

WXY is a colour space I put together to enable working with colour in terms of wavelengths and nanometres instead of hues and degrees.

The WXY colour space is composed of:

While the concepts themselves are not new (see Helmholtz coordinates), I’m not aware of them being used in this kind of colour space format.

WXY is fully implemented in Unicolour, allowing it to be converted to and from any other colour space, interpolated, and compared.

For example, it is trivial to take a WXY colour and convert it to RGB, the modern Oklab & Oklch now available in CSS, Google’s HCT colour system, or more obscure and specialised colour spaces like TSL and XYB.

var yellow = new Unicolour(ColourSpace.Wxy, 570, 0.75, 0.9);
Console.WriteLine(yellow.Rgb);   // 0.97 0.99 0.19
Console.WriteLine(yellow.Oklab); // 0.96 -0.07 +0.19

⏪ Background

WXY is based on the CIE xyY colour space but, instead of “colourfulness” being defined by the xy-chromaticity coordinates, it is defined relative to the spectral locus in terms of wavelength and purity.

The spectral locus is the horseshoe-shaped curve on the xy-chromaticity diagram. It is created by plotting the xy-chromaticity of wavelengths across the visible spectrum, and represents pure monochromatic light.

Wavelength and purity are calculated by finding where the line from the white point to a chosen chromaticity intersects the spectral locus.

This example shows a sample chromaticity that intersects the spectral locus at 530 nm (dominant wavelength W) and is 50% along the line from the white point (excitation purity X).

CIE xy chromaticity diagram 
demonstrating a dominant wavelength of 530 nm with 50% excitation purity

Chromaticities in the purple region do not lie between the white point and the spectral locus, and instead intersect the “line of purples”. Colours along this boundary are non-spectral, meaning they cannot be generated by monochromatic light. In this case the opposite intersect, known as the complementary wavelength, is used, but with a negative value.

This example shows a sample chromaticity inside the purple region that intersects the spectral locus at 530 nm (complementary wavelength) so becomes -530 nm (dominant wavelength W) and is 75% along the line from the white point (excitation purity X).

CIE xy chromaticity diagram 
demonstrating a dominant wavelength of -530 nm with 75% excitation purity

Monitors can only display a subset of visible colours. The gamut of colours available is determined by the RGB model, such as sRGB, Display P3, Rec. 2020, etc.

This example demonstrates how sRGB green (0, 1, 0), assuming standard illuminant D65 (2° observer), converts to a wavelength of 549.1 nm and a purity of 73.4%.

CIE xy chromaticity diagram highlighting the sRGB gamut, 
demonstrating how sRGB green has a dominant wavelength of 549.1 nm with 73.4% excitation purity

The full WXY value is (549.1, 0.7344, 0.7152).

var green = new Unicolour(ColourSpace.Rgb, 0, 1, 0);
Console.WriteLine(green.Wxy); // 549.1nm 73.4% 0.7152

🔁 Conversion

The steps to convert between xyY and WXY are deceptively straightforward.

Forward transform from xyY to WXY:

  1. Draw a line through (x, y) and the white point
  2. Find where the line intersects the boundary
  3. If (x, y) is between the white point and the spectral locus, W = spectral locus intersect
  4. If (x, y) is between the white point and the line of purples, W = -(spectral locus intersect)
  5. X = white point to (x, y) distance / white point to boundary distance
  6. Y = Y from xyY

Reverse transform to xyY from WXY:

  1. Find the pure chromaticity of W
  2. Draw a line through W and the white point
  3. (x, y) = the chromaticity that lies X% along the line starting from the white point
  4. Y = Y from WXY

The difficulties here are:

Unicolour constructs the spectral locus as 1 nm segments since that is the granularity of the CIE colour matching functions datasets, ranging from 360 nm to 700 nm because beyond that roundtrip conversions became unreliable.

CIE xy chromaticity diagram with spectral locus plotted at 1 nm intervals

🔀 Interpolation

Dominant wavelength can be considered cyclical like hue - starting at violet, following the spectral locus will lead to red, and following the non-spectral line of purples will lead back to violet.

However, the wavelength range of the line of purples is determined by the white point, so how to interpolate between wavelengths is open to interpretation. Using the standard illuminant D65 (2° observer) white point, the full range of wavelengths is [360 nm, 700 nm] ∪ [-493.3 nm, -566.4 nm].

CIE xy chromaticity diagram 
showing that the spectral locus ranges from 360 nm to 700 nm, 
and the line of purples ranges from -493.3 nm to -566.4 nm

I’ve implemented this in Unicolour in a way that I feel is natural and intuitive, where the spectral locus is mapped to [0°, 180°] and the line of purples is mapped to [180°, 360°]. Degrees can then be interpolated in the same way as hue.

CIE xy chromaticity diagram
showing that the spectral locus ranges from 0° to 180°,
and the line of purples ranges from 180° to 360°

The main downside is that half of the interpolation space is reserved for purples, but WXY is not concerned with hue linearity or perceptual uniformity, only the ability to make working with wavelengths more accessible.

With a notion of interpolation in place, WXY can easily be used in a colour picker as seen in this online demo.

Unicolour picker with a WXY value of 460, 0.5, 0.2

⏏️ Gamut mapping

Note in the image above that some parts of the sliders show a pattern instead of solid colours. This is my way of visualising that those colours cannot be displayed with sRGB because they are out of gamut.

Unicolour picker with a WXY value of 530, 0.5, 0.7,
which is not in the sRGB gamut

WXY provides an instinctive method of mapping an out-of-gamut colour to an in-gamut colour: simply reduce the purity until the colour is in gamut. The result will be a colour of the original wavelength and luminance, with the maximum displayable purity.

Unicolour picker with a WXY value of 530, 0.3, 0.7,
which is in the sRGB gamut

CIE xy chromaticity diagram
demonstrating how reducing purity can be used for gamut mapping

Purity-reduction gamut mapping is not yet implemented in Unicolour, but can be achieved with only a few lines of code.

const double decrement = 0.05; // reduce for greater accuracy

var (w, x, y) = (530, 0.5, 0.7);
var colour = new Unicolour(ColourSpace.Wxy, w, x, y);
while (!colour.IsInDisplayGamut)
{
    x -= decrement;
    colour = new Unicolour(ColourSpace.Wxy, w, x, y);
}

Console.WriteLine(colour.Wxy); // 530.0nm 30.0% 0.7000
Console.WriteLine(colour.Hex); // #0FF993

Here is a quick comparison of how different gamut mapping techniques handle full-purity wavelength at 0.5 luminance. On the left is basic RGB clipping, in the middle the Oklch-based mapping from the CSS specification, and on the right the purity-reduction method described above.

Comparison of 3 gamut mapping techniques
with monochromatic light at 530 nm and -530 nm


Wacton.Unicolour is licensed under the MIT License, copyright © 2022-2024 William Acton.

Also available in American 🇺🇸.