Andrew's Digital Garden

rgba() is just rgb()

As of CSS Color 4, rgba is now just an alias for rgb. Both of them support the alpha syntax.

background: rgba(255 122 127 / 20%); background: rgb(255 122 127 / 20%);

[[css]]

rgba() is just rgb()