Render Flow - RGB and RGBA
Parse CSS rule: background-color: rgb(255, 0, 0)
→Convert RGB values to color
Parse CSS rule: background-color: rgba(255, 0, 0, 0.5)
→Convert RGBA values to color with transparency
The browser reads the CSS color values, converts the RGB or RGBA numbers into colors, then paints the element's background with either a solid or semi-transparent color.