#537cd8 Color
Color Codes | |
---|---|
Hex Code | #537cd8 |
RGB Code | rgb(83, 124, 216) |
HSL Code | hsl(222, 63%, 59%) |
#537cd8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(83, 124, 216); }
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(222, 63%, 59%); }
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 #537cd8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(83, 124, 216, 10%) | #537cd81a | |
rgb(83, 124, 216, 20%) | #537cd833 | |
rgb(83, 124, 216, 40%) | #537cd84C | |
rgb(83, 124, 216, 60%) | #537cd899 | |
rgb(83, 124, 216, 80%) | #537cd8CC | |
rgb(83, 124, 216, 100%) | #537cd8FF |
Saturated and desaturated colors of #537cd8
HSL Code | Preview |
---|---|
hsl(222, 10%, 59%) | |
hsl(222, 20%, 59%) | |
hsl(222, 40%, 59%) | |
hsl(222, 60%, 59%) | |
hsl(222, 80%, 59%) | |
hsl(222, 100%, 59%) |
#537cd8 Color Usage In CSS
body { color: #537cd8; } p { color: rgb(83, 124, 216); } header { border-bottom:1px solid #537cd8; }