Codi de color RGB negre = # 000000 = 0 * 65536 + 0 * 256 + 0 = (0,0,0)
VERMELL = 0, VERD = 0, BLAU = 0
Color | Nom de color HTML / CSS |
Codi hexadecimal #RRGGBB |
Codi decimal (R, G, B) |
---|---|---|---|
negre | # 000000 | rgb (0,0,0) | |
dimgray / dimgray | # 696969 | rgb (105.105.105) | |
gris / gris | # 808080 | rgb (128.128.128) | |
gris fosc / gris fosc | # A9A9A9 | rgb (169.169.169) | |
plata | # C0C0C0 | rgb (192.192.192) |
Codi:
<p style="color:black;"/These fonts are black!</p/
Resultat:
Aquests tipus de lletra són negres.
O
<p style="color:#000000; background:black"/These fonts are black too!</p/
Resultat:
Aquests tipus de lletra també són negres.
O
<p style="color:rgb(255,255,0); background:black"/These fonts are black too!</p/
Resultat:
Aquests tipus de lletra també són negres.
Codi:
<p style="color:white; background:black"/Background color is black</p/
Resultat:
El color de fons és negre