#90d6ef Color
Color Codes | |
---|---|
Hex Code | #90d6ef |
RGB Code | rgb(144, 214, 239) |
HSL Code | hsl(196, 75%, 75%) |
#90d6ef Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 214, 239); }
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, 75%, 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 #90d6ef
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 214, 239, 10%) | #90d6ef1a | |
rgb(144, 214, 239, 20%) | #90d6ef33 | |
rgb(144, 214, 239, 40%) | #90d6ef4C | |
rgb(144, 214, 239, 60%) | #90d6ef99 | |
rgb(144, 214, 239, 80%) | #90d6efCC | |
rgb(144, 214, 239, 100%) | #90d6efFF |
Saturated and desaturated colors of #90d6ef
HSL Code | Preview |
---|---|
hsl(196, 10%, 75%) | |
hsl(196, 20%, 75%) | |
hsl(196, 40%, 75%) | |
hsl(196, 60%, 75%) | |
hsl(196, 80%, 75%) | |
hsl(196, 100%, 75%) |
#90d6ef Color Usage In CSS
body { color: #90d6ef; } p { color: rgb(144, 214, 239); } header { border-bottom:1px solid #90d6ef; }