#c87997 Color
Color Codes | |
---|---|
Hex Code | #c87997 |
RGB Code | rgb(200, 121, 151) |
HSL Code | hsl(337, 42%, 63%) |
#c87997 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 121, 151); }
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(337, 42%, 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 #c87997
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 121, 151, 10%) | #c879971a | |
rgb(200, 121, 151, 20%) | #c8799733 | |
rgb(200, 121, 151, 40%) | #c879974C | |
rgb(200, 121, 151, 60%) | #c8799799 | |
rgb(200, 121, 151, 80%) | #c87997CC | |
rgb(200, 121, 151, 100%) | #c87997FF |
Saturated and desaturated colors of #c87997
HSL Code | Preview |
---|---|
hsl(337, 10%, 63%) | |
hsl(337, 20%, 63%) | |
hsl(337, 40%, 63%) | |
hsl(337, 60%, 63%) | |
hsl(337, 80%, 63%) | |
hsl(337, 100%, 63%) |
#c87997 Color Usage In CSS
body { color: #c87997; } p { color: rgb(200, 121, 151); } header { border-bottom:1px solid #c87997; }