Code couleur RVB noir = # 000000 = 0 * 65536 + 0 * 256 + 0 = (0,0,0)
ROUGE = 0, VERT = 0, BLEU = 0
Couleur | Nom de couleur HTML / CSS |
Code hexadécimal #RRGGBB |
Code décimal (R, G, B) |
---|---|---|---|
noir | # 000000 | rgb (0,0,0) | |
dimgray / dimgray | # 696969 | RVB (105, 105, 105) | |
gris | # 808080 | RVB (128.128.128) | |
gris foncé / gris foncé | # A9A9A9 | RVB (169.169.169) | |
argent | # C0C0C0 | RVB (192.192.192) |
Code:
<p style="color:black;"/These fonts are black!</p/
Résultat:
Ces polices sont noires!
OU
<p style="color:#000000; background:black"/These fonts are black too!</p/
Résultat:
Ces polices sont également noires!
OU
<p style="color:rgb(255,255,0); background:black"/These fonts are black too!</p/
Résultat:
Ces polices sont également noires!
Code:
<p style="color:white; background:black"/Background color is black</p/
Résultat:
La couleur de fond est noire