#5489ae Color
Color Codes | |
---|---|
Hex Code | #5489ae |
RGB Code | rgb(84, 137, 174) |
HSL Code | hsl(205, 36%, 51%) |
#5489ae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(84, 137, 174); }
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(205, 36%, 51%); }
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 #5489ae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(84, 137, 174, 10%) | #5489ae1a | |
rgb(84, 137, 174, 20%) | #5489ae33 | |
rgb(84, 137, 174, 40%) | #5489ae4C | |
rgb(84, 137, 174, 60%) | #5489ae99 | |
rgb(84, 137, 174, 80%) | #5489aeCC | |
rgb(84, 137, 174, 100%) | #5489aeFF |
Saturated and desaturated colors of #5489ae
HSL Code | Preview |
---|---|
hsl(205, 10%, 51%) | |
hsl(205, 20%, 51%) | |
hsl(205, 40%, 51%) | |
hsl(205, 60%, 51%) | |
hsl(205, 80%, 51%) | |
hsl(205, 100%, 51%) |
#5489ae Color Usage In CSS
body { color: #5489ae; } p { color: rgb(84, 137, 174); } header { border-bottom:1px solid #5489ae; }