#5563bf Color
Color Codes | |
---|---|
Hex Code | #5563bf |
RGB Code | rgb(85, 99, 191) |
HSL Code | hsl(232, 45%, 54%) |
#5563bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 99, 191); }
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(232, 45%, 54%); }
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 #5563bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 99, 191, 10%) | #5563bf1a | |
rgb(85, 99, 191, 20%) | #5563bf33 | |
rgb(85, 99, 191, 40%) | #5563bf4C | |
rgb(85, 99, 191, 60%) | #5563bf99 | |
rgb(85, 99, 191, 80%) | #5563bfCC | |
rgb(85, 99, 191, 100%) | #5563bfFF |
Saturated and desaturated colors of #5563bf
HSL Code | Preview |
---|---|
hsl(232, 10%, 54%) | |
hsl(232, 20%, 54%) | |
hsl(232, 40%, 54%) | |
hsl(232, 60%, 54%) | |
hsl(232, 80%, 54%) | |
hsl(232, 100%, 54%) |
#5563bf Color Usage In CSS
body { color: #5563bf; } p { color: rgb(85, 99, 191); } header { border-bottom:1px solid #5563bf; }