#ae7960 Color
Color Codes | |
---|---|
Hex Code | #ae7960 |
RGB Code | rgb(174, 121, 96) |
HSL Code | hsl(19, 33%, 53%) |
#ae7960 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 121, 96); }
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(19, 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 #ae7960
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 121, 96, 10%) | #ae79601a | |
rgb(174, 121, 96, 20%) | #ae796033 | |
rgb(174, 121, 96, 40%) | #ae79604C | |
rgb(174, 121, 96, 60%) | #ae796099 | |
rgb(174, 121, 96, 80%) | #ae7960CC | |
rgb(174, 121, 96, 100%) | #ae7960FF |
Saturated and desaturated colors of #ae7960
HSL Code | Preview |
---|---|
hsl(19, 10%, 53%) | |
hsl(19, 20%, 53%) | |
hsl(19, 40%, 53%) | |
hsl(19, 60%, 53%) | |
hsl(19, 80%, 53%) | |
hsl(19, 100%, 53%) |
#ae7960 Color Usage In CSS
body { color: #ae7960; } p { color: rgb(174, 121, 96); } header { border-bottom:1px solid #ae7960; }