#ae9266 Color
Color Codes | |
---|---|
Hex Code | #ae9266 |
RGB Code | rgb(174, 146, 102) |
HSL Code | hsl(37, 31%, 54%) |
#ae9266 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 146, 102); }
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(37, 31%, 54%); }
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 #ae9266
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 146, 102, 10%) | #ae92661a | |
rgb(174, 146, 102, 20%) | #ae926633 | |
rgb(174, 146, 102, 40%) | #ae92664C | |
rgb(174, 146, 102, 60%) | #ae926699 | |
rgb(174, 146, 102, 80%) | #ae9266CC | |
rgb(174, 146, 102, 100%) | #ae9266FF |
Saturated and desaturated colors of #ae9266
HSL Code | Preview |
---|---|
hsl(37, 10%, 54%) | |
hsl(37, 20%, 54%) | |
hsl(37, 40%, 54%) | |
hsl(37, 60%, 54%) | |
hsl(37, 80%, 54%) | |
hsl(37, 100%, 54%) |
#ae9266 Color Usage In CSS
body { color: #ae9266; } p { color: rgb(174, 146, 102); } header { border-bottom:1px solid #ae9266; }