#3b984c Color
Color Codes | |
---|---|
Hex Code | #3b984c |
RGB Code | rgb(59, 152, 76) |
HSL Code | hsl(131, 44%, 41%) |
#3b984c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(59, 152, 76); }
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, 44%, 41%); }
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 #3b984c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(59, 152, 76, 10%) | #3b984c1a | |
rgb(59, 152, 76, 20%) | #3b984c33 | |
rgb(59, 152, 76, 40%) | #3b984c4C | |
rgb(59, 152, 76, 60%) | #3b984c99 | |
rgb(59, 152, 76, 80%) | #3b984cCC | |
rgb(59, 152, 76, 100%) | #3b984cFF |
Saturated and desaturated colors of #3b984c
HSL Code | Preview |
---|---|
hsl(131, 10%, 41%) | |
hsl(131, 20%, 41%) | |
hsl(131, 40%, 41%) | |
hsl(131, 60%, 41%) | |
hsl(131, 80%, 41%) | |
hsl(131, 100%, 41%) |
#3b984c Color Usage In CSS
body { color: #3b984c; } p { color: rgb(59, 152, 76); } header { border-bottom:1px solid #3b984c; }