#85bbeb Color
Color Codes | |
---|---|
Hex Code | #85bbeb |
RGB Code | rgb(133, 187, 235) |
HSL Code | hsl(208, 72%, 72%) |
#85bbeb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 187, 235); }
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(208, 72%, 72%); }
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 #85bbeb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 187, 235, 10%) | #85bbeb1a | |
rgb(133, 187, 235, 20%) | #85bbeb33 | |
rgb(133, 187, 235, 40%) | #85bbeb4C | |
rgb(133, 187, 235, 60%) | #85bbeb99 | |
rgb(133, 187, 235, 80%) | #85bbebCC | |
rgb(133, 187, 235, 100%) | #85bbebFF |
Saturated and desaturated colors of #85bbeb
HSL Code | Preview |
---|---|
hsl(208, 10%, 72%) | |
hsl(208, 20%, 72%) | |
hsl(208, 40%, 72%) | |
hsl(208, 60%, 72%) | |
hsl(208, 80%, 72%) | |
hsl(208, 100%, 72%) |
#85bbeb Color Usage In CSS
body { color: #85bbeb; } p { color: rgb(133, 187, 235); } header { border-bottom:1px solid #85bbeb; }