#dd892f Color
Color Codes | |
---|---|
Hex Code | #dd892f |
RGB Code | rgb(221, 137, 47) |
HSL Code | hsl(31, 72%, 53%) |
#dd892f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(221, 137, 47); }
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(31, 72%, 53%); }
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 #dd892f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(221, 137, 47, 10%) | #dd892f1a | |
rgb(221, 137, 47, 20%) | #dd892f33 | |
rgb(221, 137, 47, 40%) | #dd892f4C | |
rgb(221, 137, 47, 60%) | #dd892f99 | |
rgb(221, 137, 47, 80%) | #dd892fCC | |
rgb(221, 137, 47, 100%) | #dd892fFF |
Saturated and desaturated colors of #dd892f
HSL Code | Preview |
---|---|
hsl(31, 10%, 53%) | |
hsl(31, 20%, 53%) | |
hsl(31, 40%, 53%) | |
hsl(31, 60%, 53%) | |
hsl(31, 80%, 53%) | |
hsl(31, 100%, 53%) |
#dd892f Color Usage In CSS
body { color: #dd892f; } p { color: rgb(221, 137, 47); } header { border-bottom:1px solid #dd892f; }