can someone help me learn the color codes?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

can someone help me learn the color codes??

#rrggbb

21st Mar 2017, 8:38 PM
Escobar
Escobar - avatar
10 Answers
+ 8
This is a link that should help you out, without leaving this app.....👍 https://code.sololearn.com/WJly9ZuywWBU/?ref=app
21st Mar 2017, 10:27 PM
Cory Gutierrez🔹
Cory Gutierrez🔹 - avatar
+ 7
Here's a tip. (RGB model) 255 0 0 : Red 0 255 0 : Green 0 0 255 : Blue 0 0 0 : Black 255 255 255 : White 0 255 255 : Cyan 255 0 255 : Magenta 255 255 0 : Yellow (CMY model)
22nd Mar 2017, 3:41 AM
Krishna Teja Yeluripati
Krishna Teja Yeluripati - avatar
21st Mar 2017, 9:48 PM
Mario L.
Mario L. - avatar
+ 5
there are 16777216 (256^3) combinations. do you want to learn them all? equal values for red, green and blue result in different shades of grey. the closer to 0, the darker the shade (black). and vice versa: the closer to 255, the lighter the shade (white). red and green result in yellow. red and blue result in pink/purple. green and blue result in turquoise. the best way to learn color codes is to play with them. use gimp for example. or take a look at websites offering color combination generators.
21st Mar 2017, 9:32 PM
Mario L.
Mario L. - avatar
21st Mar 2017, 9:35 PM
Mario L.
Mario L. - avatar
+ 2
I'll try to explain it simply. #RRGGBB The color code consists of 3 hexadecimal values that represent how many of what color (red, green, blue) is in a color. The hexadecimal system consists of 16 digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F). A = 10 , B = 11, C = 12, D = 13, E = 14, F = 15. 0 = 0, FF = 255. White is #FFFFFF, because the white light consists of all the colors. Decreasing an equal amount from each color (red, green, blue) will make the white darker, aka gray/grey. #000000 is black, because all the colors are 00 so there are no R G B colors, so no light = darkness aka black. This is all I can explain right now, but now I have to go sleep, it's late.
21st Mar 2017, 10:45 PM
Karlo
Karlo - avatar
+ 1
what websites offer color combination generators? wait ill google it
21st Mar 2017, 9:33 PM
Escobar
Escobar - avatar
+ 1
thankz
21st Mar 2017, 9:37 PM
Escobar
Escobar - avatar
0
these arent random combinations is there no way that i can learn it so that i can create the combination i need, say for instance i want to make yellow i could just combine blue and green and the combination would give me the result so long as i know the color codes of each color?
21st Mar 2017, 9:42 PM
Escobar
Escobar - avatar
0
blue and green don't make yellow. blue and yellow make green. blue and green make a light bluish color. if your on PC, I made a program to play with colors.. free. take and play with it. I use it all the time when I need a new color to use in a program I am making http://leakyegg.website.tk/RGB.zip
22nd Mar 2017, 3:40 AM
LordHill
LordHill - avatar