Is there any easiest way to remember colour value? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is there any easiest way to remember colour value?

I think it's not possible to remember all color values but is there any tricks to remember at list common colors. please suggest!

15th Mar 2017, 6:32 AM
Mohammad Abul Hasnat
Mohammad Abul Hasnat - avatar
7 Answers
+ 1
just use color palettes
15th Mar 2017, 8:27 AM
Yaroslav Pieskov
Yaroslav Pieskov - avatar
+ 1
I'm talking about remember!
15th Mar 2017, 8:28 AM
Mohammad Abul Hasnat
Mohammad Abul Hasnat - avatar
0
look it up in google
15th Mar 2017, 7:49 AM
Bente Sas
Bente Sas - avatar
0
Maybe this simple tool will help. <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <input id="input" type="color" oninput="view()"> <div id="output"></div> <script> function view() { getColor = document.getElementById("input"); colorInfo = document.getElementById("output"); colorInfo.innerHTML = getColor.value; } </script> </body> </html>
15th Mar 2017, 8:53 AM
Kazbahari
0
I think you guys do not understand my question. Say, I'm asking you what is the color code for yellow? And you have to answer me instantly without using any tools or color picker. I know there are 16,777,216 possible color values in RGB and it's quite impossible to remember this. But for work, sometimes instantly need to put some color values. So, here is my question. Is there any easy way or tricks to "REMEMBER" some common color code/values?
15th Mar 2017, 9:27 AM
Mohammad Abul Hasnat
Mohammad Abul Hasnat - avatar
0
Just remember colors name if don't want to use any tools, apps, ide or whatever! CSS: body { background-color: yellow; color: white; } I hope this will satified your 'arrogant' question or maybe not because you will downvote me lol. Actually your question is kindergarten level.
15th Mar 2017, 9:35 AM
Kazbahari
0
@kazbahari This is not the subject of kindergarten level! Maybe you didn't try the challenge in this apps. Here some question comes like What is the color name of this value RGB(0,0,255)? Then How you will answer it if you don't know the value? You should read the question carefully before you answer it. Because here I don't ask for remember color name. I want to remember color "Value".
15th Mar 2017, 10:41 AM
Mohammad Abul Hasnat
Mohammad Abul Hasnat - avatar