0
How can i obtain color "yellow" using hexadecimal values.
3 Antworten
+ 3
#FF0
+ 3
#FF0000 is red, #00FF00 is green. In the additive color model, green and red are together yellow: #FFFF00
or in rgb:
rgb (255, 0, 0) --> red
rgb (0, 255, 0) --> green
rgb (255, 255, 0) --> yellow
+ 1
#FFFF00