#e2a175 Color
Color Codes | |
---|---|
Hex Code | #e2a175 |
RGB Code | rgb(226, 161, 117) |
HSL Code | hsl(24, 65%, 67%) |
#e2a175 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 161, 117); }
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(24, 65%, 67%); }
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 #e2a175
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 161, 117, 10%) | #e2a1751a | |
rgb(226, 161, 117, 20%) | #e2a17533 | |
rgb(226, 161, 117, 40%) | #e2a1754C | |
rgb(226, 161, 117, 60%) | #e2a17599 | |
rgb(226, 161, 117, 80%) | #e2a175CC | |
rgb(226, 161, 117, 100%) | #e2a175FF |
Saturated and desaturated colors of #e2a175
HSL Code | Preview |
---|---|
hsl(24, 10%, 67%) | |
hsl(24, 20%, 67%) | |
hsl(24, 40%, 67%) | |
hsl(24, 60%, 67%) | |
hsl(24, 80%, 67%) | |
hsl(24, 100%, 67%) |
#e2a175 Color Usage In CSS
body { color: #e2a175; } p { color: rgb(226, 161, 117); } header { border-bottom:1px solid #e2a175; }