#e5b56a Color
Color Codes | |
---|---|
Hex Code | #e5b56a |
RGB Code | rgb(229, 181, 106) |
HSL Code | hsl(37, 70%, 66%) |
#e5b56a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 181, 106); }
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, 70%, 66%); }
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 #e5b56a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 181, 106, 10%) | #e5b56a1a | |
rgb(229, 181, 106, 20%) | #e5b56a33 | |
rgb(229, 181, 106, 40%) | #e5b56a4C | |
rgb(229, 181, 106, 60%) | #e5b56a99 | |
rgb(229, 181, 106, 80%) | #e5b56aCC | |
rgb(229, 181, 106, 100%) | #e5b56aFF |
Saturated and desaturated colors of #e5b56a
HSL Code | Preview |
---|---|
hsl(37, 10%, 66%) | |
hsl(37, 20%, 66%) | |
hsl(37, 40%, 66%) | |
hsl(37, 60%, 66%) | |
hsl(37, 80%, 66%) | |
hsl(37, 100%, 66%) |
#e5b56a Color Usage In CSS
body { color: #e5b56a; } p { color: rgb(229, 181, 106); } header { border-bottom:1px solid #e5b56a; }