#93e9f8 Color
Color Codes | |
---|---|
Hex Code | #93e9f8 |
RGB Code | rgb(147, 233, 248) |
HSL Code | hsl(189, 88%, 77%) |
#93e9f8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 233, 248); }
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(189, 88%, 77%); }
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 #93e9f8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 233, 248, 10%) | #93e9f81a | |
rgb(147, 233, 248, 20%) | #93e9f833 | |
rgb(147, 233, 248, 40%) | #93e9f84C | |
rgb(147, 233, 248, 60%) | #93e9f899 | |
rgb(147, 233, 248, 80%) | #93e9f8CC | |
rgb(147, 233, 248, 100%) | #93e9f8FF |
Saturated and desaturated colors of #93e9f8
HSL Code | Preview |
---|---|
hsl(189, 10%, 77%) | |
hsl(189, 20%, 77%) | |
hsl(189, 40%, 77%) | |
hsl(189, 60%, 77%) | |
hsl(189, 80%, 77%) | |
hsl(189, 100%, 77%) |
#93e9f8 Color Usage In CSS
body { color: #93e9f8; } p { color: rgb(147, 233, 248); } header { border-bottom:1px solid #93e9f8; }