#88dbfa Color
Color Codes | |
---|---|
Hex Code | #88dbfa |
RGB Code | rgb(136, 219, 250) |
HSL Code | hsl(196, 92%, 76%) |
#88dbfa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 219, 250); }
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(196, 92%, 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 #88dbfa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 219, 250, 10%) | #88dbfa1a | |
rgb(136, 219, 250, 20%) | #88dbfa33 | |
rgb(136, 219, 250, 40%) | #88dbfa4C | |
rgb(136, 219, 250, 60%) | #88dbfa99 | |
rgb(136, 219, 250, 80%) | #88dbfaCC | |
rgb(136, 219, 250, 100%) | #88dbfaFF |
Saturated and desaturated colors of #88dbfa
HSL Code | Preview |
---|---|
hsl(196, 10%, 76%) | |
hsl(196, 20%, 76%) | |
hsl(196, 40%, 76%) | |
hsl(196, 60%, 76%) | |
hsl(196, 80%, 76%) | |
hsl(196, 100%, 76%) |
#88dbfa Color Usage In CSS
body { color: #88dbfa; } p { color: rgb(136, 219, 250); } header { border-bottom:1px solid #88dbfa; }