#349250 Color
Color Codes | |
---|---|
Hex Code | #349250 |
RGB Code | rgb(52, 146, 80) |
HSL Code | hsl(138, 47%, 39%) |
#349250 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(52, 146, 80); }
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(138, 47%, 39%); }
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 #349250
RGB Code | Hex Code | Preview |
---|---|---|
rgb(52, 146, 80, 10%) | #3492501a | |
rgb(52, 146, 80, 20%) | #34925033 | |
rgb(52, 146, 80, 40%) | #3492504C | |
rgb(52, 146, 80, 60%) | #34925099 | |
rgb(52, 146, 80, 80%) | #349250CC | |
rgb(52, 146, 80, 100%) | #349250FF |
Saturated and desaturated colors of #349250
HSL Code | Preview |
---|---|
hsl(138, 10%, 39%) | |
hsl(138, 20%, 39%) | |
hsl(138, 40%, 39%) | |
hsl(138, 60%, 39%) | |
hsl(138, 80%, 39%) | |
hsl(138, 100%, 39%) |
#349250 Color Usage In CSS
body { color: #349250; } p { color: rgb(52, 146, 80); } header { border-bottom:1px solid #349250; }