Could we help you? Please click the banners. We are young and desperately need the money
Using the new color() CSS function, one can modify a given CSS colour's properties. This includes R (red), G (green), B (blue), and even alpha (transparency) values.
Color() is Baseline available since May 2023. According to caniuse.com, as of writing this article, more than 95% of tracked browsers support the feature.
Here's an example using color() to set a colour's (#a24a9d) opacity to 50%:
color(from #a24a9d srgb r g b / 50%)
"srgb" defines that the sRGB colour space (which is standard for the web) is to be used. Notice how "r", "g", and "b" are used as placeholders to signal that those values should remain as they are.
You can even use the color() function to, for example, adjust the opacity (or any property really) of a colour from a CSS variable:
color(from var(--some-color) srgb r g b / 50%)