#3b8c5d Color
Color Codes | |
---|---|
Hex Code | #3b8c5d |
RGB Code | rgb(59, 140, 93) |
HSL Code | hsl(145, 41%, 39%) |
#3b8c5d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(59, 140, 93); }
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(145, 41%, 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 #3b8c5d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(59, 140, 93, 10%) | #3b8c5d1a | |
rgb(59, 140, 93, 20%) | #3b8c5d33 | |
rgb(59, 140, 93, 40%) | #3b8c5d4C | |
rgb(59, 140, 93, 60%) | #3b8c5d99 | |
rgb(59, 140, 93, 80%) | #3b8c5dCC | |
rgb(59, 140, 93, 100%) | #3b8c5dFF |
Saturated and desaturated colors of #3b8c5d
HSL Code | Preview |
---|---|
hsl(145, 10%, 39%) | |
hsl(145, 20%, 39%) | |
hsl(145, 40%, 39%) | |
hsl(145, 60%, 39%) | |
hsl(145, 80%, 39%) | |
hsl(145, 100%, 39%) |
#3b8c5d Color Usage In CSS
body { color: #3b8c5d; } p { color: rgb(59, 140, 93); } header { border-bottom:1px solid #3b8c5d; }