Conversation

💡 In source code, stop using the old rgb()/hsl() CSS color syntax with commas. Get used to the modern comma-free CSS color syntax, supported in all modern browsers. Why? Upcoming new features such as lab(), lch(), and color() use the same syntax (and don’t work with commas).
Instead of `rgba(0, 128, 255, 0.5)`, use `rgb(0 128 255 / 50%)`.
305