#059622 Color
Color Codes | |
---|---|
Hex Code | #059622 |
RGB Code | rgb(05, 150, 34) |
HSL Code | hsl(132, 94%, 30%) |
#059622 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 150, 34); }
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, 94%, 30%); }
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 #059622
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 150, 34, 10%) | #0596221a | |
rgb(05, 150, 34, 20%) | #05962233 | |
rgb(05, 150, 34, 40%) | #0596224C | |
rgb(05, 150, 34, 60%) | #05962299 | |
rgb(05, 150, 34, 80%) | #059622CC | |
rgb(05, 150, 34, 100%) | #059622FF |
Saturated and desaturated colors of #059622
HSL Code | Preview |
---|---|
hsl(132, 10%, 30%) | |
hsl(132, 20%, 30%) | |
hsl(132, 40%, 30%) | |
hsl(132, 60%, 30%) | |
hsl(132, 80%, 30%) | |
hsl(132, 100%, 30%) |
#059622 Color Usage In CSS
body { color: #059622; } p { color: rgb(05, 150, 34); } header { border-bottom:1px solid #059622; }