#e9ac49 Color
Color Codes | |
---|---|
Hex Code | #e9ac49 |
RGB Code | rgb(233, 172, 73) |
HSL Code | hsl(37, 78%, 60%) |
#e9ac49 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 172, 73); }
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, 78%, 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 #e9ac49
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 172, 73, 10%) | #e9ac491a | |
rgb(233, 172, 73, 20%) | #e9ac4933 | |
rgb(233, 172, 73, 40%) | #e9ac494C | |
rgb(233, 172, 73, 60%) | #e9ac4999 | |
rgb(233, 172, 73, 80%) | #e9ac49CC | |
rgb(233, 172, 73, 100%) | #e9ac49FF |
Saturated and desaturated colors of #e9ac49
HSL Code | Preview |
---|---|
hsl(37, 10%, 60%) | |
hsl(37, 20%, 60%) | |
hsl(37, 40%, 60%) | |
hsl(37, 60%, 60%) | |
hsl(37, 80%, 60%) | |
hsl(37, 100%, 60%) |
#e9ac49 Color Usage In CSS
body { color: #e9ac49; } p { color: rgb(233, 172, 73); } header { border-bottom:1px solid #e9ac49; }