#acdae7 Color
Color Codes | |
---|---|
Hex Code | #acdae7 |
RGB Code | rgb(172, 218, 231) |
HSL Code | hsl(193, 55%, 79%) |
#acdae7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(172, 218, 231); }
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(193, 55%, 79%); }
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 #acdae7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(172, 218, 231, 10%) | #acdae71a | |
rgb(172, 218, 231, 20%) | #acdae733 | |
rgb(172, 218, 231, 40%) | #acdae74C | |
rgb(172, 218, 231, 60%) | #acdae799 | |
rgb(172, 218, 231, 80%) | #acdae7CC | |
rgb(172, 218, 231, 100%) | #acdae7FF |
Saturated and desaturated colors of #acdae7
HSL Code | Preview |
---|---|
hsl(193, 10%, 79%) | |
hsl(193, 20%, 79%) | |
hsl(193, 40%, 79%) | |
hsl(193, 60%, 79%) | |
hsl(193, 80%, 79%) | |
hsl(193, 100%, 79%) |
#acdae7 Color Usage In CSS
body { color: #acdae7; } p { color: rgb(172, 218, 231); } header { border-bottom:1px solid #acdae7; }