#89a3ce Color
Color Codes | |
---|---|
Hex Code | #89a3ce |
RGB Code | rgb(137, 163, 206) |
HSL Code | hsl(217, 41%, 67%) |
#89a3ce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(137, 163, 206); }
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(217, 41%, 67%); }
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 #89a3ce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(137, 163, 206, 10%) | #89a3ce1a | |
rgb(137, 163, 206, 20%) | #89a3ce33 | |
rgb(137, 163, 206, 40%) | #89a3ce4C | |
rgb(137, 163, 206, 60%) | #89a3ce99 | |
rgb(137, 163, 206, 80%) | #89a3ceCC | |
rgb(137, 163, 206, 100%) | #89a3ceFF |
Saturated and desaturated colors of #89a3ce
HSL Code | Preview |
---|---|
hsl(217, 10%, 67%) | |
hsl(217, 20%, 67%) | |
hsl(217, 40%, 67%) | |
hsl(217, 60%, 67%) | |
hsl(217, 80%, 67%) | |
hsl(217, 100%, 67%) |
#89a3ce Color Usage In CSS
body { color: #89a3ce; } p { color: rgb(137, 163, 206); } header { border-bottom:1px solid #89a3ce; }