#000000 Color
Color Codes | |
---|---|
Hex Code | #000000 |
RGB Code | rgb(00, 00, 00) |
HSL Code | hsl(0, 0%, 0%) |
#000000 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 00, 00); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(0, 0%, 0%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #000000
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 00, 00, 10%) | #0000001a | |
rgb(00, 00, 00, 20%) | #00000033 | |
rgb(00, 00, 00, 40%) | #0000004C | |
rgb(00, 00, 00, 60%) | #00000099 | |
rgb(00, 00, 00, 80%) | #000000CC | |
rgb(00, 00, 00, 100%) | #000000FF |
Saturated and desaturated colors of #000000
HSL Code | Preview |
---|---|
hsl(0, 10%, 0%) | |
hsl(0, 20%, 0%) | |
hsl(0, 40%, 0%) | |
hsl(0, 60%, 0%) | |
hsl(0, 80%, 0%) | |
hsl(0, 100%, 0%) |
#000000 Color Usage In CSS
body { color: #000000; } p { color: rgb(00, 00, 00); } header { border-bottom:1px solid #000000; }