+ 4
Please my Lords in Programming how do you guyz memorise color Hex codes?
I can't seem to know what code displays what colour
5 Respostas
+ 23
Practice helps to learn how to determine the colors by their codes and vice versa😊
Useful link:
https://coding.smashingmagazine.com/2012/10/the-code-side-of-color/
+ 5
#
00 - red part
00 - green part
00 - blue part
#FF0000 = red
#00FF00 = green
#0000FF = blue
#FFFF00 = red + green = yellow
#00FFFF = green + blue = light blue
#FF00FF = red + blue = magenta
#FFFFFF = red + green + blue = white
then you just set the colors how you need them. if you know which colors to mix to get another color you are good to go
+ 5
I don't. I use something to get me the color.
https://www.w3schools.com/colors/colors_picker.asp
+ 4
I don't really memorize them, but an idea is to get a notebook and write down the hex codes and what colours they are. EG #FFFFFF - White
+ 3
The color or hex is RGB (red, green, blue). Then different colors gets mixed with them to get other colors. Another way to say this, you move the F among the Os. Plain 0s are black, plain Fs are white. then red from left, moves towards green, and then blue. Then the F can jump and be several other places at once then other shades mix with the color(s) which makes a new color to the mix.