#dc9e61 Color
Color Codes | |
---|---|
Hex Code | #dc9e61 |
RGB Code | rgb(220, 158, 97) |
HSL Code | hsl(30, 64%, 62%) |
#dc9e61 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(220, 158, 97); }
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(30, 64%, 62%); }
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 #dc9e61
RGB Code | Hex Code | Preview |
---|---|---|
rgb(220, 158, 97, 10%) | #dc9e611a | |
rgb(220, 158, 97, 20%) | #dc9e6133 | |
rgb(220, 158, 97, 40%) | #dc9e614C | |
rgb(220, 158, 97, 60%) | #dc9e6199 | |
rgb(220, 158, 97, 80%) | #dc9e61CC | |
rgb(220, 158, 97, 100%) | #dc9e61FF |
Saturated and desaturated colors of #dc9e61
HSL Code | Preview |
---|---|
hsl(30, 10%, 62%) | |
hsl(30, 20%, 62%) | |
hsl(30, 40%, 62%) | |
hsl(30, 60%, 62%) | |
hsl(30, 80%, 62%) | |
hsl(30, 100%, 62%) |
#dc9e61 Color Usage In CSS
body { color: #dc9e61; } p { color: rgb(220, 158, 97); } header { border-bottom:1px solid #dc9e61; }