#cd8b92 Color
Color Codes | |
---|---|
Hex Code | #cd8b92 |
RGB Code | rgb(205, 139, 146) |
HSL Code | hsl(354, 40%, 67%) |
#cd8b92 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(205, 139, 146); }
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(354, 40%, 67%); }
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 #cd8b92
RGB Code | Hex Code | Preview |
---|---|---|
rgb(205, 139, 146, 10%) | #cd8b921a | |
rgb(205, 139, 146, 20%) | #cd8b9233 | |
rgb(205, 139, 146, 40%) | #cd8b924C | |
rgb(205, 139, 146, 60%) | #cd8b9299 | |
rgb(205, 139, 146, 80%) | #cd8b92CC | |
rgb(205, 139, 146, 100%) | #cd8b92FF |
Saturated and desaturated colors of #cd8b92
HSL Code | Preview |
---|---|
hsl(354, 10%, 67%) | |
hsl(354, 20%, 67%) | |
hsl(354, 40%, 67%) | |
hsl(354, 60%, 67%) | |
hsl(354, 80%, 67%) | |
hsl(354, 100%, 67%) |
#cd8b92 Color Usage In CSS
body { color: #cd8b92; } p { color: rgb(205, 139, 146); } header { border-bottom:1px solid #cd8b92; }