#ae786f Color
Color Codes | |
---|---|
Hex Code | #ae786f |
RGB Code | rgb(174, 120, 111) |
HSL Code | hsl(9, 28%, 56%) |
#ae786f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 120, 111); }
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(9, 28%, 56%); }
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 #ae786f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 120, 111, 10%) | #ae786f1a | |
rgb(174, 120, 111, 20%) | #ae786f33 | |
rgb(174, 120, 111, 40%) | #ae786f4C | |
rgb(174, 120, 111, 60%) | #ae786f99 | |
rgb(174, 120, 111, 80%) | #ae786fCC | |
rgb(174, 120, 111, 100%) | #ae786fFF |
Saturated and desaturated colors of #ae786f
HSL Code | Preview |
---|---|
hsl(9, 10%, 56%) | |
hsl(9, 20%, 56%) | |
hsl(9, 40%, 56%) | |
hsl(9, 60%, 56%) | |
hsl(9, 80%, 56%) | |
hsl(9, 100%, 56%) |
#ae786f Color Usage In CSS
body { color: #ae786f; } p { color: rgb(174, 120, 111); } header { border-bottom:1px solid #ae786f; }