#005e3d Color
Color Codes | |
---|---|
Hex Code | #005e3d |
RGB Code | rgb(00, 94, 61) |
HSL Code | hsl(159, 100%, 18%) |
#005e3d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(00, 94, 61); }
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(159, 100%, 18%); }
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 #005e3d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(00, 94, 61, 10%) | #005e3d1a | |
rgb(00, 94, 61, 20%) | #005e3d33 | |
rgb(00, 94, 61, 40%) | #005e3d4C | |
rgb(00, 94, 61, 60%) | #005e3d99 | |
rgb(00, 94, 61, 80%) | #005e3dCC | |
rgb(00, 94, 61, 100%) | #005e3dFF |
Saturated and desaturated colors of #005e3d
HSL Code | Preview |
---|---|
hsl(159, 10%, 18%) | |
hsl(159, 20%, 18%) | |
hsl(159, 40%, 18%) | |
hsl(159, 60%, 18%) | |
hsl(159, 80%, 18%) | |
hsl(159, 100%, 18%) |
#005e3d Color Usage In CSS
body { color: #005e3d; } p { color: rgb(00, 94, 61); } header { border-bottom:1px solid #005e3d; }