#86febc Color
Color Codes | |
---|---|
Hex Code | #86febc |
RGB Code | rgb(134, 254, 188) |
HSL Code | hsl(147, 98%, 76%) |
#86febc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(134, 254, 188); }
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(147, 98%, 76%); }
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 #86febc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(134, 254, 188, 10%) | #86febc1a | |
rgb(134, 254, 188, 20%) | #86febc33 | |
rgb(134, 254, 188, 40%) | #86febc4C | |
rgb(134, 254, 188, 60%) | #86febc99 | |
rgb(134, 254, 188, 80%) | #86febcCC | |
rgb(134, 254, 188, 100%) | #86febcFF |
Saturated and desaturated colors of #86febc
HSL Code | Preview |
---|---|
hsl(147, 10%, 76%) | |
hsl(147, 20%, 76%) | |
hsl(147, 40%, 76%) | |
hsl(147, 60%, 76%) | |
hsl(147, 80%, 76%) | |
hsl(147, 100%, 76%) |
#86febc Color Usage In CSS
body { color: #86febc; } p { color: rgb(134, 254, 188); } header { border-bottom:1px solid #86febc; }