#2f9c05 Color
Color Codes | |
---|---|
Hex Code | #2f9c05 |
RGB Code | rgb(47, 156, 05) |
HSL Code | hsl(103, 94%, 32%) |
#2f9c05 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(47, 156, 05); }
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(103, 94%, 32%); }
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 #2f9c05
RGB Code | Hex Code | Preview |
---|---|---|
rgb(47, 156, 05, 10%) | #2f9c051a | |
rgb(47, 156, 05, 20%) | #2f9c0533 | |
rgb(47, 156, 05, 40%) | #2f9c054C | |
rgb(47, 156, 05, 60%) | #2f9c0599 | |
rgb(47, 156, 05, 80%) | #2f9c05CC | |
rgb(47, 156, 05, 100%) | #2f9c05FF |
Saturated and desaturated colors of #2f9c05
HSL Code | Preview |
---|---|
hsl(103, 10%, 32%) | |
hsl(103, 20%, 32%) | |
hsl(103, 40%, 32%) | |
hsl(103, 60%, 32%) | |
hsl(103, 80%, 32%) | |
hsl(103, 100%, 32%) |
#2f9c05 Color Usage In CSS
body { color: #2f9c05; } p { color: rgb(47, 156, 05); } header { border-bottom:1px solid #2f9c05; }