#005010 Color
Color Codes | |
---|---|
Hex Code | #005010 |
RGB Code | rgb(00, 80, 16) |
HSL Code | hsl(132, 100%, 16%) |
#005010 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 80, 16); }
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(132, 100%, 16%); }
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 #005010
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 80, 16, 10%) | #0050101a | |
rgb(00, 80, 16, 20%) | #00501033 | |
rgb(00, 80, 16, 40%) | #0050104C | |
rgb(00, 80, 16, 60%) | #00501099 | |
rgb(00, 80, 16, 80%) | #005010CC | |
rgb(00, 80, 16, 100%) | #005010FF |
Saturated and desaturated colors of #005010
HSL Code | Preview |
---|---|
hsl(132, 10%, 16%) | |
hsl(132, 20%, 16%) | |
hsl(132, 40%, 16%) | |
hsl(132, 60%, 16%) | |
hsl(132, 80%, 16%) | |
hsl(132, 100%, 16%) |
#005010 Color Usage In CSS
body { color: #005010; } p { color: rgb(00, 80, 16); } header { border-bottom:1px solid #005010; }