#c86689 Color
Color Codes | |
---|---|
Hex Code | #c86689 |
RGB Code | rgb(200, 102, 137) |
HSL Code | hsl(339, 47%, 59%) |
#c86689 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 102, 137); }
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(339, 47%, 59%); }
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 #c86689
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 102, 137, 10%) | #c866891a | |
rgb(200, 102, 137, 20%) | #c8668933 | |
rgb(200, 102, 137, 40%) | #c866894C | |
rgb(200, 102, 137, 60%) | #c8668999 | |
rgb(200, 102, 137, 80%) | #c86689CC | |
rgb(200, 102, 137, 100%) | #c86689FF |
Saturated and desaturated colors of #c86689
HSL Code | Preview |
---|---|
hsl(339, 10%, 59%) | |
hsl(339, 20%, 59%) | |
hsl(339, 40%, 59%) | |
hsl(339, 60%, 59%) | |
hsl(339, 80%, 59%) | |
hsl(339, 100%, 59%) |
#c86689 Color Usage In CSS
body { color: #c86689; } p { color: rgb(200, 102, 137); } header { border-bottom:1px solid #c86689; }