#ad99a8 Color
Color Codes | |
---|---|
Hex Code | #ad99a8 |
RGB Code | rgb(173, 153, 168) |
HSL Code | hsl(315, 11%, 64%) |
#ad99a8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(173, 153, 168); }
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(315, 11%, 64%); }
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 #ad99a8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(173, 153, 168, 10%) | #ad99a81a | |
rgb(173, 153, 168, 20%) | #ad99a833 | |
rgb(173, 153, 168, 40%) | #ad99a84C | |
rgb(173, 153, 168, 60%) | #ad99a899 | |
rgb(173, 153, 168, 80%) | #ad99a8CC | |
rgb(173, 153, 168, 100%) | #ad99a8FF |
Saturated and desaturated colors of #ad99a8
HSL Code | Preview |
---|---|
hsl(315, 10%, 64%) | |
hsl(315, 20%, 64%) | |
hsl(315, 40%, 64%) | |
hsl(315, 60%, 64%) | |
hsl(315, 80%, 64%) | |
hsl(315, 100%, 64%) |
#ad99a8 Color Usage In CSS
body { color: #ad99a8; } p { color: rgb(173, 153, 168); } header { border-bottom:1px solid #ad99a8; }