#e0c7a2 Color
Color Codes | |
---|---|
Hex Code | #e0c7a2 |
RGB Code | rgb(224, 199, 162) |
HSL Code | hsl(36, 50%, 76%) |
#e0c7a2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(224, 199, 162); }
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(36, 50%, 76%); }
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 #e0c7a2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(224, 199, 162, 10%) | #e0c7a21a | |
rgb(224, 199, 162, 20%) | #e0c7a233 | |
rgb(224, 199, 162, 40%) | #e0c7a24C | |
rgb(224, 199, 162, 60%) | #e0c7a299 | |
rgb(224, 199, 162, 80%) | #e0c7a2CC | |
rgb(224, 199, 162, 100%) | #e0c7a2FF |
Saturated and desaturated colors of #e0c7a2
HSL Code | Preview |
---|---|
hsl(36, 10%, 76%) | |
hsl(36, 20%, 76%) | |
hsl(36, 40%, 76%) | |
hsl(36, 60%, 76%) | |
hsl(36, 80%, 76%) | |
hsl(36, 100%, 76%) |
#e0c7a2 Color Usage In CSS
body { color: #e0c7a2; } p { color: rgb(224, 199, 162); } header { border-bottom:1px solid #e0c7a2; }