#420001 Color
Color Codes | |
---|---|
Hex Code | #420001 |
RGB Code | rgb(66, 00, 01) |
HSL Code | hsl(359, 100%, 13%) |
#420001 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(66, 00, 01); }
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(359, 100%, 13%); }
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 #420001
RGB Code | Hex Code | Preview |
---|---|---|
rgb(66, 00, 01, 10%) | #4200011a | |
rgb(66, 00, 01, 20%) | #42000133 | |
rgb(66, 00, 01, 40%) | #4200014C | |
rgb(66, 00, 01, 60%) | #42000199 | |
rgb(66, 00, 01, 80%) | #420001CC | |
rgb(66, 00, 01, 100%) | #420001FF |
Saturated and desaturated colors of #420001
HSL Code | Preview |
---|---|
hsl(359, 10%, 13%) | |
hsl(359, 20%, 13%) | |
hsl(359, 40%, 13%) | |
hsl(359, 60%, 13%) | |
hsl(359, 80%, 13%) | |
hsl(359, 100%, 13%) |
#420001 Color Usage In CSS
body { color: #420001; } p { color: rgb(66, 00, 01); } header { border-bottom:1px solid #420001; }