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

  • Coven of Wisdom - Herentals - Winter `24 edition

    Worstelen jij en je team met automated testing en performance? Kom naar onze meetup waar ervaren sprekers hun inzichten en ervaringen delen over het bouwen van robuuste en efficiënte 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 – 📢 Talk 1 20:00 – 🍹 Kleine pauze 20:15 – 📢 Talk 2 21:00 – 🙋‍♀️ Drinks 22:00 – 🍻 Tot de volgende keer? Tijdens deze meetup gaan we dieper in op automated testing en performance. Onze sprekers delen heel wat praktische inzichten en ervaringen. Ze vertellen je hoe je effectieve geautomatiseerde tests kunt schrijven en onderhouden, en hoe je de prestaties van je applicatie kunt optimaliseren. Houd onze updates in de gaten voor meer informatie over de sprekers en hun specifieke onderwerpen. 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
  • Mastering Event-Driven Design

    PLEASE RSVP SO THAT WE KNOW HOW MUCH FOOD WE WILL NEED Are you and your team struggling with event-driven microservices? Join us for a meetup with Mehmet Akif Tütüncü, a senior software engineer, who has given multiple great talks so far and Allard Buijze founder of CTO and founder of AxonIQ, who built the fundaments of the Axon Framework. RSVP for an evening of learning, delicious food, and the fusion of creativity and tech! 🚀 18:00 – 🚪 Doors open to the public 18:15 – 🍕 Let’s eat 19:00 – 📢 Getting Your Axe On Event Sourcing with Axon Framework 20:00 – 🍹 Small break 20:15 – 📢 Event-Driven Microservices - Beyond the Fairy Tale 21:00 – 🙋‍♀️ drinks 22:00 – 🍻 See you next time? Details: Getting Your Axe On - Event Sourcing with Axon Framework In this presentation, we will explore the basics of event-driven architecture using Axon Framework. We'll start by explaining key concepts such as Event Sourcing and Command Query Responsibility Segregation (CQRS), and how they can improve the scalability and maintainability of modern applications. You will learn what Axon Framework is, how it simplifies implementing these patterns, and see hands-on examples of setting up a project with Axon Framework and Spring Boot. Whether you are new to these concepts or looking to understand them more, this session will provide practical insights and tools to help you build resilient and efficient applications. Event-Driven Microservices - Beyond the Fairy Tale Our applications need to be faster, better, bigger, smarter, and more enjoyable to meet our demanding end-users needs. In recent years, the way we build, run, and operate our software has changed significantly. We use scalable platforms to deploy and manage our applications. Instead of big monolithic deployment applications, we now deploy small, functionally consistent components as microservices. Problem. Solved. Right? Unfortunately, for most of us, microservices, and especially their event-driven variants, do not deliver on the beautiful, fairy-tale-like promises that surround them.In this session, Allard will share a different take on microservices. We will see that not much has changed in how we build software, which is why so many “microservices projects” fail nowadays. What lessons can we learn from concepts like DDD, CQRS, and Event Sourcing to help manage the complexity of our systems? He will also show how message-driven communication allows us to focus on finding the boundaries of functionally cohesive components, which we can evolve into microservices should the need arise.

    | Coven of Wisdom - Utrecht

    Go to page for Mastering Event-Driven Design
  • The Leadership Meetup

    PLEASE RSVP SO THAT WE KNOW HOW MUCH FOOD WE WILL NEED What distinguishes a software developer from a software team lead? As a team leader, you are responsible for people, their performance, and motivation. Your output is the output of your team. Whether you are a front-end or back-end developer, or any other discipline that wants to grow into the role of a tech lead, RSVP for an evening of learning, delicious food, and the fusion of leadership and tech! 🚀 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: Pixel Perfect and Perfectly Insane: About That Time My Brain Just Switched Off Remy Parzinski, Design System Lead at Logius Learn from Remy how you can care for yourself because we all need to. Second Round of Talks: Becoming a LeadDev at your client; How to Fail at Large (or How to Do Slightly Better) Arno Koehler Engineering Manager @ iO What are the things that will help you become a lead engineer? Building Team Culture (Tales of trust and positivity) Michel Blankenstein Engineering Manager @ iO & Head of Technology @ Zorggenoot How do you create a culture at your company or team? RSVP now to secure your spot, and let's explore the fascinating world of design systems together!

    | Coven of Wisdom - Amsterdam

    Go to page for The Leadership Meetup

Share