CSS Relative colors

By Lucien Immink

4 min read

Before the relative color syntax you had to rely on CSS variables or even worse: JavaScript to modify the parameters of a color. Using the from keyword the browser can convert the originating color to different color spaces and change the color properties.

CSS Relative colors
Authors

For a lot of websites and applications, there is a need for an accent color. This accent color is used on links and buttons for example and when the user hovers over the button, or clicks the button to activate it the color should slightly change to reflect the state change.

As an example, I'm going to use iO's primary accent color #0017ee which translates into a lightness of 43.89 a chroma of 0.291 and a hue of 264.18. How did I do that? Head over to oklch.com and paste in the hex variable. oklch is a color space that attempts to mimic how color is perceived by the human eye. Determining relative colors based on oklch yields more natural results.

:root {
  --accent-lightness: 43.89%;
  --accent-chroma: 0.291;
  --accent-hue: 264.18;

  --accent-oklch:
    var(--accent-lightness)
    var(--accent-chroma)
    var(--accent-hue)

  --accent-color: oklch(var(--accent-oklch));
}

With the separate properties set, I can now easily add new colors based on those properties:

--accent-hover: oklch(var(--accent-lightness + 10) var(--accent-chroma) var(--accent-hue));

Quite a lot of work and it's very error prone. Chrome 119 introduced CSS native relative colors which changes this syntax quite drastically.

:root {
  --accent-color: oklch(43.89% 0.291 264.18);
  --accent-hover: oklch(from var(--accent-color) calc(l * 1.1) c h);
}

The keyword here is from which allows for a source color (any color space) which is then converted to the color of the given color space using the parameters and values.

Deeper dive

Using the from keyword the browser can convert the originating color (the one after from) and break it apart into the parts as variables. In the following example, the browser will create an rgb color from the named color green and copy over the r, g and b values. The browser will only convert the named color to the rgb color space but will not change any value, so the result is still the green color, but now in the rgb color space.

Schema of the elements of a URL

and so we can use the from keyword to convert any color space to any color space:

rgb(from rgb(0 23 238) r g b)     /*  r=0       g=23      b=238  */
hsl(from rgb(0 23 238) h s l)     /*  h=234     s=100%    l=93%  */
oklch(from rgb(0 23 238) l c h)   /*  l=43.89%  c=0.291   h=264.18  */

Converting color spaces can open up easier convertions. Changing lightness in rgb is harder than it is in oklch for example, but changing the r value directly is easier in rgb.

Tip: You can even clone, mix and omit properties when calculating a new color based on the originating color:

rgb(from(var(--accent-color)) g g g)  /* r=23 g=23  b=23 */
rgb(from(var(--accent-color)) 0 b 0)  /* r=0  g=238 b=0 */

Some useful examples

Lighten a color

Since our accent color is already defined in oklch it's quite easy to lighten the color by, for example, 10:

.lighten-by-10 {
  background-color: oklch(from var(--accent-color) calc(l * 1.1) c h);
}

View on CodePen

Darken a color

Ah yes, when there is light there is dark!

.darken-by-10 {
  background-color: oklch(from var(--accent-color) calc(l * 0.9) c h);
}

View on CodePen

Invert a color

To invert a color a trick is applied by converting the color to rgb and substract each channel's value from 1:

.invert-accent-color {
  background-color: rgb(from var(--accent-color) calc(1 - r) calc(1 - g) calc(1 - b));
}

View on CodePen

Contrast

Accessible colors are a must and one way to achieve this is to add (if accent-color is dark) or substract (if accent-color is light) at least 40 in lightness if and when the OKLCH or LCH color space is used.

.contrast-accent-color {
  background-color: var(--accent-color);
  color: oklch(from var(--accent-color) calc(l * 0.6) c h);
}

View on CodePen

Palettes

Making a palette can be done based on lightness, which is called a monochromatic palette:

:root {
  --lighter: oklch(from var(--accent-color) calc(l * 1.2) c h);
  --light: oklch(from var(--accent-color) calc(l * 1.1) c h);
  --base: var(--accent-color);
  --dark: oklch(from var(--accent-color) calc(l * 0.9) c h);
  --darker: oklch(from var(--accent-color) calc(l * 0.8) c h);
}

View on CodePen

If the hue is rotated instead an analogous palette is created:

:root {
  --base: var(--accent-color);
  --secondary: oklch(from var(--accent-color) l c calc(h - 45));
  --tertiary: oklch(from var(--accent-color) l c calc(h + 45));
}

View on CodePen

Loads more examples of palettes can be found on the developer.chrome website about relative colors.

Wrapping things up

Instead of defining color properties as variables, or even worse in JavaScript, it's now possible to use the CSS native relative color syntax. Using the from keyword the browser can convert the originating color to different color spaces and change the color properties. Use the conversion to easily change the color's properties.

Relative colors are supported by Chromium and Safari as of writing. See can-i-use.


Upcoming events

  • Drupal CMS Launch Party

    Zoals sommigen misschien weten wordt op 15 Januari een nieuwe distributie van Drupal gelanceerd. Namelijk Drupal CMS (ook wel bekend als Starshot). Om dit te vieren gaan we op onze campus een klein eventje organiseren. We gaan die dag samen de livestream volgen waarbij het product gelanceerd wordt. De agenda is als volgt: 17u – 18u30: Drupal CMS livestream met taart 18u30 – 19u00: Versteld staan van de functionaliteiten 19u – 20u: Pizza eten en verder versteld staan van de functionaliteiten Laat ons zeker weten of je komt of niet door de invite te accepteren! Tot dan!

    | Coven of Wisdom Herentals

    Go to page for Drupal CMS Launch Party
  • Coven of Wisdom - Herentals - Winter `24 edition

    Worstelen jij en je team met het bouwen van schaalbare digitale ecosystemen of zit je vast in een props hell met React of in een ander framework? Kom naar onze meetup waar ervaren sprekers hun inzichten en ervaringen delen over het bouwen van robuuste en flexibele applicaties. Schrijf je in voor een avond vol kennis, heerlijk eten en een mix van creativiteit en technologie! πŸš€ 18:00 – πŸšͺ Deuren open 18:15 – πŸ• Food & drinks 19:00 – πŸ“’ Building a Mature Digital Ecosystem - Maarten Heip 20:00 – 🍹 Kleine pauze 20:15 – πŸ“’ Compound Components: A Better Way to Build React Components - Sead Memic 21:00 – πŸ™‹β€β™€οΈ Drinks 22:00 – 🍻 Tot de volgende keer? Tijdens deze meetup gaan we dieper in op het bouwen van digitale ecosystemen en het creΓ«ren van herbruikbare React componenten. Maarten deelt zijn expertise over het ontwikkelen van een volwassen digitale infrastructuur, terwijl Sead je laat zien hoe je 'From Props Hell to Component Heaven' kunt gaan door het gebruik van Compound Components. Ze delen praktische inzichten die je direct kunt toepassen in je eigen projecten. πŸ“ Waar? Je vindt ons bij iO Herentals - Zavelheide 15, Herentals. Volg bij aankomst de borden 'meetup' vanaf de receptie. 🎫 Schrijf je in! De plaatsen zijn beperkt, dus RSVP is noodzakelijk. Dit helpt ons ook om de juiste hoeveelheid eten en drinken te voorzien - we willen natuurlijk niet dat iemand met een lege maag naar huis gaat! πŸ˜‹ Over iO Wij zijn iO: een groeiend team van experts die end-to-end-diensten aanbieden voor communicatie en digitale transformatie. We denken groot en werken lokaal. Aan strategie, creatie, content, marketing en technologie. In nauwe samenwerking met onze klanten om hun merken te versterken, hun digitale systemen te verbeteren en hun toekomstbestendige groei veilig te stellen. We helpen klanten niet alleen hun zakelijke doelen te bereiken. Samen verkennen en benutten we de eindeloze mogelijkheden die markten in constante verandering bieden. De springplank voor die visie is talent. Onze campus is onze broedplaats voor innovatie, die een omgeving creΓ«ert die talent de ruimte en stimulans geeft die het nodig heeft om te ontkiemen, te ontwikkelen en te floreren. Want werken aan de infinite opportunities van morgen, dat doen we vandaag.

    | Coven of Wisdom Herentals

    Go to page for Coven of Wisdom - Herentals - Winter `24 edition
  • The Test Automation Meetup

    PLEASE RSVP SO THAT WE KNOW HOW MUCH FOOD WE WILL NEED Test automation is a cornerstone of effective software development. It's about creating robust, predictable test suites that enhance quality and reliability. By diving into automation, you're architecting systems that ensure consistency and catch issues early. This expertise not only improves the development process but also broadens your skillset, making you a more versatile team member. Whether you're a developer looking to enhance your testing skills or a QA professional aiming to dive deeper into automation, RSVP for an evening of learning, delicious food, and the fusion of coding and quality assurance! πŸš€πŸš€ 18:00 – πŸšͺ Doors open to the public 18:15 – πŸ• Let’s eat 19:00 – πŸ“’ First round of Talks 19:45 – 🍹 Small break 20:00 – πŸ“’ Second round of Talks 20:45 – 🍻 Drinks 21:00 – πŸ™‹β€β™€οΈ See you next time? First Round of Talks: The Power of Cross-browser Component Testing - Clarke Verdel, SR. Front-end Developer at iO How can you use Component Testing to ensure consistency cross-browser? Overcoming challenges in Visual Regression Testing - Sander van Surksum, Pagespeed | Web Performance Consultant and Sannie Kwakman, Freelance Full-stack Developer How can you overcome the challenges when setting up Visual Regression Testing? Second Round of Talks: Omg who wrote this **** code!? - Erwin Heitzman, SR. Test Automation Engineer at Rabobank How can tests help you and your team? Beyond the Unit Test - Christian WΓΌrthner, SR. Android Developer at iO How can you do advanced automated testing for, for instance, biometrics? RSVP now to secure your spot, and let's explore the fascinating world of test automation together!

    | Coven of Wisdom - Amsterdam

    Go to page for The Test Automation Meetup

Share