#a4c7e4 Color
Color Codes | |
---|---|
Hex Code | #a4c7e4 |
RGB Code | rgb(164, 199, 228) |
HSL Code | hsl(207, 54%, 77%) |
#a4c7e4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(164, 199, 228); }
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(207, 54%, 77%); }
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 #a4c7e4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(164, 199, 228, 10%) | #a4c7e41a | |
rgb(164, 199, 228, 20%) | #a4c7e433 | |
rgb(164, 199, 228, 40%) | #a4c7e44C | |
rgb(164, 199, 228, 60%) | #a4c7e499 | |
rgb(164, 199, 228, 80%) | #a4c7e4CC | |
rgb(164, 199, 228, 100%) | #a4c7e4FF |
Saturated and desaturated colors of #a4c7e4
HSL Code | Preview |
---|---|
hsl(207, 10%, 77%) | |
hsl(207, 20%, 77%) | |
hsl(207, 40%, 77%) | |
hsl(207, 60%, 77%) | |
hsl(207, 80%, 77%) | |
hsl(207, 100%, 77%) |
#a4c7e4 Color Usage In CSS
body { color: #a4c7e4; } p { color: rgb(164, 199, 228); } header { border-bottom:1px solid #a4c7e4; }