#eca747 Color
Color Codes | |
---|---|
Hex Code | #eca747 |
RGB Code | rgb(236, 167, 71) |
HSL Code | hsl(35, 81%, 60%) |
#eca747 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(236, 167, 71); }
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(35, 81%, 60%); }
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 #eca747
RGB Code | Hex Code | Preview |
---|---|---|
rgb(236, 167, 71, 10%) | #eca7471a | |
rgb(236, 167, 71, 20%) | #eca74733 | |
rgb(236, 167, 71, 40%) | #eca7474C | |
rgb(236, 167, 71, 60%) | #eca74799 | |
rgb(236, 167, 71, 80%) | #eca747CC | |
rgb(236, 167, 71, 100%) | #eca747FF |
Saturated and desaturated colors of #eca747
HSL Code | Preview |
---|---|
hsl(35, 10%, 60%) | |
hsl(35, 20%, 60%) | |
hsl(35, 40%, 60%) | |
hsl(35, 60%, 60%) | |
hsl(35, 80%, 60%) | |
hsl(35, 100%, 60%) |
#eca747 Color Usage In CSS
body { color: #eca747; } p { color: rgb(236, 167, 71); } header { border-bottom:1px solid #eca747; }