#39913c Color
Color Codes | |
---|---|
Hex Code | #39913c |
RGB Code | rgb(57, 145, 60) |
HSL Code | hsl(122, 44%, 40%) |
#39913c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(57, 145, 60); }
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(122, 44%, 40%); }
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 #39913c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(57, 145, 60, 10%) | #39913c1a | |
rgb(57, 145, 60, 20%) | #39913c33 | |
rgb(57, 145, 60, 40%) | #39913c4C | |
rgb(57, 145, 60, 60%) | #39913c99 | |
rgb(57, 145, 60, 80%) | #39913cCC | |
rgb(57, 145, 60, 100%) | #39913cFF |
Saturated and desaturated colors of #39913c
HSL Code | Preview |
---|---|
hsl(122, 10%, 40%) | |
hsl(122, 20%, 40%) | |
hsl(122, 40%, 40%) | |
hsl(122, 60%, 40%) | |
hsl(122, 80%, 40%) | |
hsl(122, 100%, 40%) |
#39913c Color Usage In CSS
body { color: #39913c; } p { color: rgb(57, 145, 60); } header { border-bottom:1px solid #39913c; }