#5599cc Color
Color Codes | |
---|---|
Hex Code | #5599cc |
RGB Code | rgb(85, 153, 204) |
HSL Code | hsl(206, 54%, 57%) |
#5599cc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 153, 204); }
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(206, 54%, 57%); }
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 #5599cc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 153, 204, 10%) | #5599cc1a | |
rgb(85, 153, 204, 20%) | #5599cc33 | |
rgb(85, 153, 204, 40%) | #5599cc4C | |
rgb(85, 153, 204, 60%) | #5599cc99 | |
rgb(85, 153, 204, 80%) | #5599ccCC | |
rgb(85, 153, 204, 100%) | #5599ccFF |
Saturated and desaturated colors of #5599cc
HSL Code | Preview |
---|---|
hsl(206, 10%, 57%) | |
hsl(206, 20%, 57%) | |
hsl(206, 40%, 57%) | |
hsl(206, 60%, 57%) | |
hsl(206, 80%, 57%) | |
hsl(206, 100%, 57%) |
#5599cc Color Usage In CSS
body { color: #5599cc; } p { color: rgb(85, 153, 204); } header { border-bottom:1px solid #5599cc; }