#cf589c Color
Color Codes | |
---|---|
Hex Code | #cf589c |
RGB Code | rgb(207, 88, 156) |
HSL Code | hsl(326, 55%, 58%) |
#cf589c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 88, 156); }
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(326, 55%, 58%); }
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 #cf589c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 88, 156, 10%) | #cf589c1a | |
rgb(207, 88, 156, 20%) | #cf589c33 | |
rgb(207, 88, 156, 40%) | #cf589c4C | |
rgb(207, 88, 156, 60%) | #cf589c99 | |
rgb(207, 88, 156, 80%) | #cf589cCC | |
rgb(207, 88, 156, 100%) | #cf589cFF |
Saturated and desaturated colors of #cf589c
HSL Code | Preview |
---|---|
hsl(326, 10%, 58%) | |
hsl(326, 20%, 58%) | |
hsl(326, 40%, 58%) | |
hsl(326, 60%, 58%) | |
hsl(326, 80%, 58%) | |
hsl(326, 100%, 58%) |
#cf589c Color Usage In CSS
body { color: #cf589c; } p { color: rgb(207, 88, 156); } header { border-bottom:1px solid #cf589c; }