La couleur jaune est générée en ajoutant des couleurs rouges et vertes.
Code RVB jaune = 255 * 65536 + 255 * 256 + 0 = # FFFF00
ROUGE = 255, VEKyLabs = 255, BLEU = 0
Couleur | Nom de couleur HTML / CSS |
Code hexadécimal #RRGGBB |
Code décimal (R, G, B) |
---|---|---|---|
jaune clair | # FFFFE0 | RVB (255,255,224) | |
citronchiffon | #FFFACD | RVB (255, 250, 205) | |
or clair | # FAFAD2 | RVB (250, 250, 210) | |
papaye | # FFEFD5 | RVB (255 239 213) | |
mocassin | # FFE4B5 | RVB (255,228,181) | |
peachpuff | # FFDAB9 | RVB (255218185) | |
verge d'or | # EEE8AA | RVB (238,232,170) | |
kaki | # F0E68C | RVB (240230140) | |
kaki foncé | # BDB76B | RVB (189.183.107) | |
Jaune | # FFFF00 | RVB (255,255,0) | |
olive | # 808000 | RVB (128,128,0) | |
vert jaune | # ADFF2F | RVB (173,255,47) | |
vert jaunâtre | # 9ACD32 | RVB (154.205,50) |
Couleur | Nom de couleur non HTML |
Code hexadécimal #RRGGBB |
Code décimal R, G, B |
---|---|---|---|
Jaune clair1 | #FFFFCC | RVB (255,255,204) | |
Jaune clair2 | # FFFF99 | RVB (255,255,153) | |
Jaune clair3 | # FFFF66 | RVB (255,255,102) | |
Jaune clair4 | # FFFF33 | RVB (255,255,51) | |
Jaune | # FFFF00 | RVB (255,255,0) | |
Jaune foncé1 | # CCCC00 | RVB (204,204,0) | |
Jaune foncé2 | # 999900 | RVB (153,153,0) | |
Jaune foncé3 | # 666600 | RVB (102,102,0) | |
Jaune foncé4 | # 333300 | RVB (51,51,0) |
Code:
<p style="color:yellow; background:black"/These fonts are yellow!</p/
Résultat:
Ces polices sont jaunes!
OU
<p style="color:#FFFF00; background:black"/These fonts are yellow, too!</p/
Résultat:
Ces polices sont également jaunes!
OU
<p style="color:rgb(255,255,0); background:black"/These fonts are yellow, too!</p/
Résultat:
Ces polices sont également jaunes!
Code:
<p style="color:black; background:yellow"/Background color is yellow</p>
Résultat:
La couleur de fond est jaune