+ 1
What are the hexadecimal values of red,blue, and green in CSS?
2 Respostas
+ 3
#RRBBGG
where R is Red, B is Blue and G is green
0 = dark
F = bright
it should be
Red= #FF0000 = bright of the red and dark(no value) of the other colors
blue = #00FF00
Green = #0000FF
you can try mixing the colors to create a new color
#F1E11E should give u something close to the color YELLOW
Keep messing with the values or u can search online for a specific hexa-decimal value
+ 1
Thanks for the answer isaac Frank!