#00462f Color
Color Codes | |
---|---|
Hex Code | #00462f |
RGB Code | rgb(00, 70, 47) |
HSL Code | hsl(160, 100%, 14%) |
#00462f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 70, 47); }
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(160, 100%, 14%); }
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 #00462f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 70, 47, 10%) | #00462f1a | |
rgb(00, 70, 47, 20%) | #00462f33 | |
rgb(00, 70, 47, 40%) | #00462f4C | |
rgb(00, 70, 47, 60%) | #00462f99 | |
rgb(00, 70, 47, 80%) | #00462fCC | |
rgb(00, 70, 47, 100%) | #00462fFF |
Saturated and desaturated colors of #00462f
HSL Code | Preview |
---|---|
hsl(160, 10%, 14%) | |
hsl(160, 20%, 14%) | |
hsl(160, 40%, 14%) | |
hsl(160, 60%, 14%) | |
hsl(160, 80%, 14%) | |
hsl(160, 100%, 14%) |
#00462f Color Usage In CSS
body { color: #00462f; } p { color: rgb(00, 70, 47); } header { border-bottom:1px solid #00462f; }