Zwarte RGB-kleurcode = # 000000 = 0 * 65536 + 0 * 256 + 0 = (0,0,0)
ROOD = 0, GROEN = 0, BLAUW = 0
Kleur | HTML / CSS- kleurnaam |
Hex-code #RRGGBB |
Decimale code (R, G, B) |
---|---|---|---|
zwart | # 000000 | RGB (0,0,0) | |
dimgrijs / dimgrijs | # 696969 | rgb (105,105,105) | |
grijs grijs | # 808080 | rgb (128.128.128) | |
donkergrijs / donkergrijs | # A9A9A9 | rgb (169.169.169) | |
zilver | # C0C0C0 | RGB (192.192.192) |
Code:
<p style="color:black;"/These fonts are black!</p/
Resultaat:
Deze lettertypen zijn zwart!
OF
<p style="color:#000000; background:black"/These fonts are black too!</p/
Resultaat:
Deze lettertypen zijn ook zwart!
OF
<p style="color:rgb(255,255,0); background:black"/These fonts are black too!</p/
Resultaat:
Deze lettertypen zijn ook zwart!
Code:
<p style="color:white; background:black"/Background color is black</p/
Resultaat:
Achtergrondkleur is zwart
Advertising