Schwarzer RGB-Farbcode = # 000000 = 0 * 65536 + 0 * 256 + 0 = (0,0,0)
ROT = 0, GRÜN = 0, BLAU = 0
Farbe | HTML / CSS- Farbname |
Hex-Code #RRGGBB |
Dezimalcode (R, G, B) |
---|---|---|---|
schwarz | # 000000 | rgb (0,0,0) | |
dimgray / dimgray | # 696969 | RGB (105, 105, 105) | |
grau / grau | # 808080 | RGB (128, 128, 128) | |
dunkelgrau / dunkelgrau | # A9A9A9 | RGB (169, 169, 169) | |
Silber- | # C0C0C0 | rgb (192, 192, 192) |
Code:
<p style="color:black;"/These fonts are black!</p/
Ergebnis:
Diese Schriftarten sind schwarz!
ODER
<p style="color:#000000; background:black"/These fonts are black too!</p/
Ergebnis:
Diese Schriften sind auch schwarz!
ODER
<p style="color:rgb(255,255,0); background:black"/These fonts are black too!</p/
Ergebnis:
Diese Schriften sind auch schwarz!
Code:
<p style="color:white; background:black"/Background color is black</p/
Ergebnis:
Hintergrundfarbe ist schwarz
Advertising