+ 5
How Do I Learn To Recognize Hex And RGB Colors Without Guessing?
I Often Guess A Color On HTML challenges like #0FACE0 rgb(150, 150, 150).... How Do I Learn Hex And RGB Colors without guessing?
6 Antworten
+ 3
At certain points you are going to have to guess certain colours but for example, for RGB it is as follows:
RGB - The R is red, the G is green and the B is blue.
So if the number for red is higher, the colour is most likely going to be some shade of red. This principle follows for green and blue.
Hope this helps!
+ 5
thanks Guys😎
+ 4
rgb(x,x,x) is white if x=255, is black if x=0 else its gray.
the hexadecimal form is r,g,b too just write it in hexadecimal groups.
Try change to decimal, and guess the color bythe value.
#0FACE0 , r=0F = 15 , g=AC = 160+12 = 172 , b=E0 = 224 . So its rgb(15,172,224) it would be some blue shade.
there are some good sites search some with google: Html hexa code .
If you use them it will be easier guess the color
+ 3
https://code.sololearn.com/cvFKsQ3f2825/?ref=app
Well, you could try out a few hex codes here till you get the hang of the RGB values.
0
You can check this converter, too:
https://code.sololearn.com/c8d5zZoovKwo/#rb
0
play around with this web document.
https://code.sololearn.com/W0pxyrfeT8BT/?ref=app