#ad8682 Color
Color Codes | |
---|---|
Hex Code | #ad8682 |
RGB Code | rgb(173, 134, 130) |
HSL Code | hsl(6, 21%, 59%) |
#ad8682 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(173, 134, 130); }
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(6, 21%, 59%); }
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 #ad8682
RGB Code | Hex Code | Preview |
---|---|---|
rgb(173, 134, 130, 10%) | #ad86821a | |
rgb(173, 134, 130, 20%) | #ad868233 | |
rgb(173, 134, 130, 40%) | #ad86824C | |
rgb(173, 134, 130, 60%) | #ad868299 | |
rgb(173, 134, 130, 80%) | #ad8682CC | |
rgb(173, 134, 130, 100%) | #ad8682FF |
Saturated and desaturated colors of #ad8682
HSL Code | Preview |
---|---|
hsl(6, 10%, 59%) | |
hsl(6, 20%, 59%) | |
hsl(6, 40%, 59%) | |
hsl(6, 60%, 59%) | |
hsl(6, 80%, 59%) | |
hsl(6, 100%, 59%) |
#ad8682 Color Usage In CSS
body { color: #ad8682; } p { color: rgb(173, 134, 130); } header { border-bottom:1px solid #ad8682; }