#d39553 Color
Color Codes | |
---|---|
Hex Code | #d39553 |
RGB Code | rgb(211, 149, 83) |
HSL Code | hsl(31, 59%, 58%) |
#d39553 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 149, 83); }
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, 59%, 58%); }
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 #d39553
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 149, 83, 10%) | #d395531a | |
rgb(211, 149, 83, 20%) | #d3955333 | |
rgb(211, 149, 83, 40%) | #d395534C | |
rgb(211, 149, 83, 60%) | #d3955399 | |
rgb(211, 149, 83, 80%) | #d39553CC | |
rgb(211, 149, 83, 100%) | #d39553FF |
Saturated and desaturated colors of #d39553
HSL Code | Preview |
---|---|
hsl(31, 10%, 58%) | |
hsl(31, 20%, 58%) | |
hsl(31, 40%, 58%) | |
hsl(31, 60%, 58%) | |
hsl(31, 80%, 58%) | |
hsl(31, 100%, 58%) |
#d39553 Color Usage In CSS
body { color: #d39553; } p { color: rgb(211, 149, 83); } header { border-bottom:1px solid #d39553; }