Empowering a brighter world through superior education is our commitment.

Online Calculators & Tools

Black Color Code

Black RGB color code

Black RGB color code = #000000= 0*65536+0*256+0 = (0,0,0)

RED=0, GREEN=0, BLUE=0

Black color codes chart

ColorHTML / CSS
Color Name
Hex Code
#RRGGBB
Decimal Code
(R,G,B)
 black#000000rgb(0,0,0)
 dimgray / dimgray#696969rgb(105,105,105)
 gray / grey#808080rgb(128,128,128)
 darkgray / darkgrey#A9A9A9rgb(169,169,169)
 silver#C0C0C0rgb(192,192,192)

Black HTML color code

HTML paragraph with black fonts

Code:

<p style="color:black;">These fonts are black!</p>

Result:

These fonts are black!

OR

<p style="color:#000000; background:black">These fonts are black too!</p>

Result:

These fonts are black too!

OR

<p style="color:rgb(255,255,0);background:black">These fonts are black too!</p>

Result:

These fonts are black too!

HTML paragraph with black fonts and black background color

Code:

<p style="color:white; background:black">Background color is black</p>

Result:

Background color is black