CSS color | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

CSS color

How am I supposed to use hex colour in css styling? For example, color: red; gives a correct output but color: #595959; does not provide any change in output.

19th Jul 2022, 1:26 PM
Okudero Olamilekan
Okudero Olamilekan - avatar
3 Answers
+ 4
it is working but color is very light .
19th Jul 2022, 1:31 PM
Abhay
Abhay - avatar
+ 4
Okudero Olamilekan it's something Greyish-red colour
19th Jul 2022, 2:11 PM
Suparna Das
Suparna Das - avatar
+ 2
Use internet or some color picker to find perfect color, than copy/paste code, if you code on vs code you have build in color picker. And remember basics: Hex need to have # and it is followed with combination of number and letters (0-9 and a-f) First pair is red shade, second is green and last is blue, f is lightest and 0 is darkest, so: #ff0000 - is red color #00ff00 - green #0000ff - blue When you repeat same symbols you can type it shorter like #f00 #ffffff - white #000000 - dark Any other combination of same letters/numbers like #eee,#333,#272727 #c2c2c2 will give you some gray color
19th Jul 2022, 4:17 PM
PanicS
PanicS - avatar