#d85d72 Color
Color Codes | |
---|---|
Hex Code | #d85d72 |
RGB Code | rgb(216, 93, 114) |
HSL Code | hsl(350, 61%, 61%) |
#d85d72 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 93, 114); }
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(350, 61%, 61%); }
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 #d85d72
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 93, 114, 10%) | #d85d721a | |
rgb(216, 93, 114, 20%) | #d85d7233 | |
rgb(216, 93, 114, 40%) | #d85d724C | |
rgb(216, 93, 114, 60%) | #d85d7299 | |
rgb(216, 93, 114, 80%) | #d85d72CC | |
rgb(216, 93, 114, 100%) | #d85d72FF |
Saturated and desaturated colors of #d85d72
HSL Code | Preview |
---|---|
hsl(350, 10%, 61%) | |
hsl(350, 20%, 61%) | |
hsl(350, 40%, 61%) | |
hsl(350, 60%, 61%) | |
hsl(350, 80%, 61%) | |
hsl(350, 100%, 61%) |
#d85d72 Color Usage In CSS
body { color: #d85d72; } p { color: rgb(216, 93, 114); } header { border-bottom:1px solid #d85d72; }