#76bbbf Color
Color Codes | |
---|---|
Hex Code | #76bbbf |
RGB Code | rgb(118, 187, 191) |
HSL Code | hsl(183, 36%, 61%) |
#76bbbf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 187, 191); }
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(183, 36%, 61%); }
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 #76bbbf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 187, 191, 10%) | #76bbbf1a | |
rgb(118, 187, 191, 20%) | #76bbbf33 | |
rgb(118, 187, 191, 40%) | #76bbbf4C | |
rgb(118, 187, 191, 60%) | #76bbbf99 | |
rgb(118, 187, 191, 80%) | #76bbbfCC | |
rgb(118, 187, 191, 100%) | #76bbbfFF |
Saturated and desaturated colors of #76bbbf
HSL Code | Preview |
---|---|
hsl(183, 10%, 61%) | |
hsl(183, 20%, 61%) | |
hsl(183, 40%, 61%) | |
hsl(183, 60%, 61%) | |
hsl(183, 80%, 61%) | |
hsl(183, 100%, 61%) |
#76bbbf Color Usage In CSS
body { color: #76bbbf; } p { color: rgb(118, 187, 191); } header { border-bottom:1px solid #76bbbf; }