#a86095 Color
Color Codes | |
---|---|
Hex Code | #a86095 |
RGB Code | rgb(168, 96, 149) |
HSL Code | hsl(316, 29%, 52%) |
#a86095 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(168, 96, 149); }
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(316, 29%, 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 #a86095
RGB Code | Hex Code | Preview |
---|---|---|
rgb(168, 96, 149, 10%) | #a860951a | |
rgb(168, 96, 149, 20%) | #a8609533 | |
rgb(168, 96, 149, 40%) | #a860954C | |
rgb(168, 96, 149, 60%) | #a8609599 | |
rgb(168, 96, 149, 80%) | #a86095CC | |
rgb(168, 96, 149, 100%) | #a86095FF |
Saturated and desaturated colors of #a86095
HSL Code | Preview |
---|---|
hsl(316, 10%, 52%) | |
hsl(316, 20%, 52%) | |
hsl(316, 40%, 52%) | |
hsl(316, 60%, 52%) | |
hsl(316, 80%, 52%) | |
hsl(316, 100%, 52%) |
#a86095 Color Usage In CSS
body { color: #a86095; } p { color: rgb(168, 96, 149); } header { border-bottom:1px solid #a86095; }