#11b96b Color
Color Codes | |
---|---|
Hex Code | #11b96b |
RGB Code | rgb(17, 185, 107) |
HSL Code | hsl(152, 83%, 40%) |
#11b96b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 185, 107); }
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(152, 83%, 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 #11b96b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 185, 107, 10%) | #11b96b1a | |
rgb(17, 185, 107, 20%) | #11b96b33 | |
rgb(17, 185, 107, 40%) | #11b96b4C | |
rgb(17, 185, 107, 60%) | #11b96b99 | |
rgb(17, 185, 107, 80%) | #11b96bCC | |
rgb(17, 185, 107, 100%) | #11b96bFF |
Saturated and desaturated colors of #11b96b
HSL Code | Preview |
---|---|
hsl(152, 10%, 40%) | |
hsl(152, 20%, 40%) | |
hsl(152, 40%, 40%) | |
hsl(152, 60%, 40%) | |
hsl(152, 80%, 40%) | |
hsl(152, 100%, 40%) |
#11b96b Color Usage In CSS
body { color: #11b96b; } p { color: rgb(17, 185, 107); } header { border-bottom:1px solid #11b96b; }