#389139 Color
Color Codes | |
---|---|
Hex Code | #389139 |
RGB Code | rgb(56, 145, 57) |
HSL Code | hsl(121, 44%, 39%) |
#389139 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(56, 145, 57); }
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(121, 44%, 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 #389139
RGB Code | Hex Code | Preview |
---|---|---|
rgb(56, 145, 57, 10%) | #3891391a | |
rgb(56, 145, 57, 20%) | #38913933 | |
rgb(56, 145, 57, 40%) | #3891394C | |
rgb(56, 145, 57, 60%) | #38913999 | |
rgb(56, 145, 57, 80%) | #389139CC | |
rgb(56, 145, 57, 100%) | #389139FF |
Saturated and desaturated colors of #389139
HSL Code | Preview |
---|---|
hsl(121, 10%, 39%) | |
hsl(121, 20%, 39%) | |
hsl(121, 40%, 39%) | |
hsl(121, 60%, 39%) | |
hsl(121, 80%, 39%) | |
hsl(121, 100%, 39%) |
#389139 Color Usage In CSS
body { color: #389139; } p { color: rgb(56, 145, 57); } header { border-bottom:1px solid #389139; }