blue rgb code example
Example 1: rgba red color
rgb(255,0,0) /*red*/ Hex #FF0000
Example 2: rgba white color
rgb(255,255,255) /*white*/ Hex #FFFFFF
Example 3: rgb purple color
(128,0,128) Hex #800080
Example 4: rgba blue color
rgb(0,0,255) /*blue*/ Hex #0000FF
Example 5: rgb yellow color
rgb(255,255,0) /* yellow*/ Hex #FFFF00
Example 6: what is the rgb value of blue
color=(0,0,255)