#dea742 Color
Color Codes | |
---|---|
Hex Code | #dea742 |
RGB Code | rgb(222, 167, 66) |
HSL Code | hsl(39, 70%, 56%) |
#dea742 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(222, 167, 66); }
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(39, 70%, 56%); }
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 #dea742
RGB Code | Hex Code | Preview |
---|---|---|
rgb(222, 167, 66, 10%) | #dea7421a | |
rgb(222, 167, 66, 20%) | #dea74233 | |
rgb(222, 167, 66, 40%) | #dea7424C | |
rgb(222, 167, 66, 60%) | #dea74299 | |
rgb(222, 167, 66, 80%) | #dea742CC | |
rgb(222, 167, 66, 100%) | #dea742FF |
Saturated and desaturated colors of #dea742
HSL Code | Preview |
---|---|
hsl(39, 10%, 56%) | |
hsl(39, 20%, 56%) | |
hsl(39, 40%, 56%) | |
hsl(39, 60%, 56%) | |
hsl(39, 80%, 56%) | |
hsl(39, 100%, 56%) |
#dea742 Color Usage In CSS
body { color: #dea742; } p { color: rgb(222, 167, 66); } header { border-bottom:1px solid #dea742; }