+ 1
How can i know how to create color in rgb form
It this earlier
1 Respuesta
+ 1
There is no RGD color, did you mean RGB??
if so, in css it is used as:
color: rgb(red, green, blue)
Here the color name specifies the intensity of the respective colors. The intensity ranges from 0 - 255.
Eg: rgb(0, 0, 255) is blue,
rgb(0
240, 255, 0) is cyan, etc.