#ae685f Color
Color Codes | |
---|---|
Hex Code | #ae685f |
RGB Code | rgb(174, 104, 95) |
HSL Code | hsl(7, 33%, 53%) |
#ae685f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 104, 95); }
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(7, 33%, 53%); }
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 #ae685f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 104, 95, 10%) | #ae685f1a | |
rgb(174, 104, 95, 20%) | #ae685f33 | |
rgb(174, 104, 95, 40%) | #ae685f4C | |
rgb(174, 104, 95, 60%) | #ae685f99 | |
rgb(174, 104, 95, 80%) | #ae685fCC | |
rgb(174, 104, 95, 100%) | #ae685fFF |
Saturated and desaturated colors of #ae685f
HSL Code | Preview |
---|---|
hsl(7, 10%, 53%) | |
hsl(7, 20%, 53%) | |
hsl(7, 40%, 53%) | |
hsl(7, 60%, 53%) | |
hsl(7, 80%, 53%) | |
hsl(7, 100%, 53%) |
#ae685f Color Usage In CSS
body { color: #ae685f; } p { color: rgb(174, 104, 95); } header { border-bottom:1px solid #ae685f; }