#eca535 Color
Color Codes | |
---|---|
Hex Code | #eca535 |
RGB Code | rgb(236, 165, 53) |
HSL Code | hsl(37, 83%, 57%) |
#eca535 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(236, 165, 53); }
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, 83%, 57%); }
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 #eca535
RGB Code | Hex Code | Preview |
---|---|---|
rgb(236, 165, 53, 10%) | #eca5351a | |
rgb(236, 165, 53, 20%) | #eca53533 | |
rgb(236, 165, 53, 40%) | #eca5354C | |
rgb(236, 165, 53, 60%) | #eca53599 | |
rgb(236, 165, 53, 80%) | #eca535CC | |
rgb(236, 165, 53, 100%) | #eca535FF |
Saturated and desaturated colors of #eca535
HSL Code | Preview |
---|---|
hsl(37, 10%, 57%) | |
hsl(37, 20%, 57%) | |
hsl(37, 40%, 57%) | |
hsl(37, 60%, 57%) | |
hsl(37, 80%, 57%) | |
hsl(37, 100%, 57%) |
#eca535 Color Usage In CSS
body { color: #eca535; } p { color: rgb(236, 165, 53); } header { border-bottom:1px solid #eca535; }