0
Should we memorize color codes in html or there's a way to deduce the color?
color codes in html
9 Respostas
+ 14
https://code.sololearn.com/Wr6hmnFieP0P/?ref=app
+ 10
Google the keyword "Color Picker".
+ 10
Just memorize one code, #rrggbb.
Where rr is the red color code
gg is green code
bb is blue code.
Each code range from hex number 00 to FF, from 0% to 100% color.
+ 7
its in #rrggbb format
you can also use #rgb
+ 5
All the answers above are good. So, I'll suggest something else instead of repeating the same answer.
You can use rgb(r, g, b) if you're not very familiar with the Hexadecimal values.
'r','g' and 'b' are integers from 0 to 255
Example:
rgb(0, 54, 255)
+ 4
just use #rrggbb format
+ 3
for sure there is a way
you can learn the logic behind them
I would recommend to read this article
https://www.smashingmagazine.com/2012/10/the-code-side-of-color/
0
hi