#cd9b73 Color
Color Codes | |
---|---|
Hex Code | #cd9b73 |
RGB Code | rgb(205, 155, 115) |
HSL Code | hsl(27, 47%, 63%) |
#cd9b73 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 155, 115); }
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(27, 47%, 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 #cd9b73
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 155, 115, 10%) | #cd9b731a | |
rgb(205, 155, 115, 20%) | #cd9b7333 | |
rgb(205, 155, 115, 40%) | #cd9b734C | |
rgb(205, 155, 115, 60%) | #cd9b7399 | |
rgb(205, 155, 115, 80%) | #cd9b73CC | |
rgb(205, 155, 115, 100%) | #cd9b73FF |
Saturated and desaturated colors of #cd9b73
HSL Code | Preview |
---|---|
hsl(27, 10%, 63%) | |
hsl(27, 20%, 63%) | |
hsl(27, 40%, 63%) | |
hsl(27, 60%, 63%) | |
hsl(27, 80%, 63%) | |
hsl(27, 100%, 63%) |
#cd9b73 Color Usage In CSS
body { color: #cd9b73; } p { color: rgb(205, 155, 115); } header { border-bottom:1px solid #cd9b73; }