#8bcfcb Color
Color Codes | |
---|---|
Hex Code | #8bcfcb |
RGB Code | rgb(139, 207, 203) |
HSL Code | hsl(176, 41%, 68%) |
#8bcfcb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(139, 207, 203); }
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(176, 41%, 68%); }
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 #8bcfcb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(139, 207, 203, 10%) | #8bcfcb1a | |
rgb(139, 207, 203, 20%) | #8bcfcb33 | |
rgb(139, 207, 203, 40%) | #8bcfcb4C | |
rgb(139, 207, 203, 60%) | #8bcfcb99 | |
rgb(139, 207, 203, 80%) | #8bcfcbCC | |
rgb(139, 207, 203, 100%) | #8bcfcbFF |
Saturated and desaturated colors of #8bcfcb
HSL Code | Preview |
---|---|
hsl(176, 10%, 68%) | |
hsl(176, 20%, 68%) | |
hsl(176, 40%, 68%) | |
hsl(176, 60%, 68%) | |
hsl(176, 80%, 68%) | |
hsl(176, 100%, 68%) |
#8bcfcb Color Usage In CSS
body { color: #8bcfcb; } p { color: rgb(139, 207, 203); } header { border-bottom:1px solid #8bcfcb; }