#05911e Color
Color Codes | |
---|---|
Hex Code | #05911e |
RGB Code | rgb(05, 145, 30) |
HSL Code | hsl(131, 93%, 29%) |
#05911e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 145, 30); }
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(131, 93%, 29%); }
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 #05911e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 145, 30, 10%) | #05911e1a | |
rgb(05, 145, 30, 20%) | #05911e33 | |
rgb(05, 145, 30, 40%) | #05911e4C | |
rgb(05, 145, 30, 60%) | #05911e99 | |
rgb(05, 145, 30, 80%) | #05911eCC | |
rgb(05, 145, 30, 100%) | #05911eFF |
Saturated and desaturated colors of #05911e
HSL Code | Preview |
---|---|
hsl(131, 10%, 29%) | |
hsl(131, 20%, 29%) | |
hsl(131, 40%, 29%) | |
hsl(131, 60%, 29%) | |
hsl(131, 80%, 29%) | |
hsl(131, 100%, 29%) |
#05911e Color Usage In CSS
body { color: #05911e; } p { color: rgb(05, 145, 30); } header { border-bottom:1px solid #05911e; }