#419cca Color
Color Codes | |
---|---|
Hex Code | #419cca |
RGB Code | rgb(65, 156, 202) |
HSL Code | hsl(200, 56%, 52%) |
#419cca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(65, 156, 202); }
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(200, 56%, 52%); }
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 #419cca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(65, 156, 202, 10%) | #419cca1a | |
rgb(65, 156, 202, 20%) | #419cca33 | |
rgb(65, 156, 202, 40%) | #419cca4C | |
rgb(65, 156, 202, 60%) | #419cca99 | |
rgb(65, 156, 202, 80%) | #419ccaCC | |
rgb(65, 156, 202, 100%) | #419ccaFF |
Saturated and desaturated colors of #419cca
HSL Code | Preview |
---|---|
hsl(200, 10%, 52%) | |
hsl(200, 20%, 52%) | |
hsl(200, 40%, 52%) | |
hsl(200, 60%, 52%) | |
hsl(200, 80%, 52%) | |
hsl(200, 100%, 52%) |
#419cca Color Usage In CSS
body { color: #419cca; } p { color: rgb(65, 156, 202); } header { border-bottom:1px solid #419cca; }