#88f0f7 Color
Color Codes | |
---|---|
Hex Code | #88f0f7 |
RGB Code | rgb(136, 240, 247) |
HSL Code | hsl(184, 87%, 75%) |
#88f0f7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 240, 247); }
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(184, 87%, 75%); }
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 #88f0f7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 240, 247, 10%) | #88f0f71a | |
rgb(136, 240, 247, 20%) | #88f0f733 | |
rgb(136, 240, 247, 40%) | #88f0f74C | |
rgb(136, 240, 247, 60%) | #88f0f799 | |
rgb(136, 240, 247, 80%) | #88f0f7CC | |
rgb(136, 240, 247, 100%) | #88f0f7FF |
Saturated and desaturated colors of #88f0f7
HSL Code | Preview |
---|---|
hsl(184, 10%, 75%) | |
hsl(184, 20%, 75%) | |
hsl(184, 40%, 75%) | |
hsl(184, 60%, 75%) | |
hsl(184, 80%, 75%) | |
hsl(184, 100%, 75%) |
#88f0f7 Color Usage In CSS
body { color: #88f0f7; } p { color: rgb(136, 240, 247); } header { border-bottom:1px solid #88f0f7; }