#dd8d62 Color
Color Codes | |
---|---|
Hex Code | #dd8d62 |
RGB Code | rgb(221, 141, 98) |
HSL Code | hsl(21, 64%, 63%) |
#dd8d62 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(221, 141, 98); }
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(21, 64%, 63%); }
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 #dd8d62
RGB Code | Hex Code | Preview |
---|---|---|
rgb(221, 141, 98, 10%) | #dd8d621a | |
rgb(221, 141, 98, 20%) | #dd8d6233 | |
rgb(221, 141, 98, 40%) | #dd8d624C | |
rgb(221, 141, 98, 60%) | #dd8d6299 | |
rgb(221, 141, 98, 80%) | #dd8d62CC | |
rgb(221, 141, 98, 100%) | #dd8d62FF |
Saturated and desaturated colors of #dd8d62
HSL Code | Preview |
---|---|
hsl(21, 10%, 63%) | |
hsl(21, 20%, 63%) | |
hsl(21, 40%, 63%) | |
hsl(21, 60%, 63%) | |
hsl(21, 80%, 63%) | |
hsl(21, 100%, 63%) |
#dd8d62 Color Usage In CSS
body { color: #dd8d62; } p { color: rgb(221, 141, 98); } header { border-bottom:1px solid #dd8d62; }